diff --git a/l1-contracts/src/core/Rollup.sol b/l1-contracts/src/core/Rollup.sol index 797c4fd32735..1390e2fdf1d2 100644 --- a/l1-contracts/src/core/Rollup.sol +++ b/l1-contracts/src/core/Rollup.sol @@ -285,7 +285,7 @@ contract Rollup is IStaking, IValidatorSelection, IRollup, RollupCore { * * @param _start - The start of the epoch (inclusive) * @param _end - The end of the epoch (inclusive) - * @param _args - Array of public inputs to the proof (previousArchive, endArchive, previousBlockHash, endBlockHash, endTimestamp, outHash, proverId) + * @param _args - Array of public inputs to the proof (previousArchive, endArchive, endTimestamp, outHash, proverId) * @param _fees - Array of recipient-value pairs with fees to be distributed for the epoch */ function getEpochProofPublicInputs( diff --git a/l1-contracts/src/core/interfaces/IRollup.sol b/l1-contracts/src/core/interfaces/IRollup.sol index 45127e8e32ae..dc1174027e7f 100644 --- a/l1-contracts/src/core/interfaces/IRollup.sol +++ b/l1-contracts/src/core/interfaces/IRollup.sol @@ -19,8 +19,6 @@ import {IERC20} from "@oz/token/ERC20/IERC20.sol"; struct PublicInputArgs { bytes32 previousArchive; bytes32 endArchive; - bytes32 previousBlockHash; // @todo #8829 Not needed as public input, unconstrained on L1 - bytes32 endBlockHash; // @todo #8829 Not needed as public input, unconstrained on L1 Timestamp endTimestamp; bytes32 outHash; address proverId; @@ -37,7 +35,6 @@ struct SubmitEpochRootProofArgs { struct BlockLog { bytes32 archive; - bytes32 blockHash; Slot slotNumber; } @@ -71,7 +68,6 @@ struct GenesisState { bytes32 vkTreeRoot; bytes32 protocolContractTreeRoot; bytes32 genesisArchiveRoot; - bytes32 genesisBlockHash; } struct RollupConfigInput { diff --git a/l1-contracts/src/core/libraries/ConstantsGen.sol b/l1-contracts/src/core/libraries/ConstantsGen.sol index 17610703259b..96728ea9fe8b 100644 --- a/l1-contracts/src/core/libraries/ConstantsGen.sol +++ b/l1-contracts/src/core/libraries/ConstantsGen.sol @@ -96,8 +96,6 @@ library Constants { uint256 internal constant PUBLIC_LOG_SIZE_IN_FIELDS = 14; uint256 internal constant PRIVATE_LOG_SIZE_IN_FIELDS = 18; uint256 internal constant AZTEC_MAX_EPOCH_DURATION = 48; - uint256 internal constant GENESIS_BLOCK_HASH = - 20646204262468251631976884937192820660867507115079672078981654411421834866549; uint256 internal constant GENESIS_ARCHIVE_ROOT = 1002640778211850180189505934749257244705296832326768971348723156503780793518; uint256 internal constant PUBLIC_DISPATCH_SELECTOR = 3578010381; @@ -216,8 +214,8 @@ library Constants { uint256 internal constant PRIVATE_TO_ROLLUP_KERNEL_CIRCUIT_PUBLIC_INPUTS_LENGTH = 782; uint256 internal constant CONSTANT_ROLLUP_DATA_LENGTH = 13; uint256 internal constant BASE_OR_MERGE_PUBLIC_INPUTS_LENGTH = 52; - uint256 internal constant BLOCK_ROOT_OR_BLOCK_MERGE_PUBLIC_INPUTS_LENGTH = 986; - uint256 internal constant ROOT_ROLLUP_PUBLIC_INPUTS_LENGTH = 972; + uint256 internal constant BLOCK_ROOT_OR_BLOCK_MERGE_PUBLIC_INPUTS_LENGTH = 984; + uint256 internal constant ROOT_ROLLUP_PUBLIC_INPUTS_LENGTH = 970; uint256 internal constant GET_NOTES_ORACLE_RETURN_LENGTH = 674; uint256 internal constant NOTE_HASHES_NUM_BYTES_PER_BASE_ROLLUP = 2048; uint256 internal constant NULLIFIERS_NUM_BYTES_PER_BASE_ROLLUP = 2048; diff --git a/l1-contracts/src/core/libraries/Errors.sol b/l1-contracts/src/core/libraries/Errors.sol index 3248621ef91c..7833c2ad0e97 100644 --- a/l1-contracts/src/core/libraries/Errors.sol +++ b/l1-contracts/src/core/libraries/Errors.sol @@ -51,12 +51,10 @@ library Errors { error Rollup__InsufficientBondAmount(uint256 minimum, uint256 provided); // 0xa165f276 error Rollup__InsufficientFundsInEscrow(uint256 required, uint256 available); // 0xa165f276 error Rollup__InvalidArchive(bytes32 expected, bytes32 actual); // 0xb682a40e - error Rollup__InvalidBlockHash(bytes32 expected, bytes32 actual); error Rollup__InvalidBlockNumber(uint256 expected, uint256 actual); // 0xe5edf847 error Rollup__InvalidChainId(uint256 expected, uint256 actual); // 0x37b5bc12 error Rollup__InvalidInHash(bytes32 expected, bytes32 actual); // 0xcd6f4233 error Rollup__InvalidPreviousArchive(bytes32 expected, bytes32 actual); // 0xb682a40e - error Rollup__InvalidPreviousBlockHash(bytes32 expected, bytes32 actual); error Rollup__InvalidProof(); // 0xa5b2ba17 error Rollup__InvalidProposedArchive(bytes32 expected, bytes32 actual); // 0x32532e73 error Rollup__InvalidTimestamp(Timestamp expected, Timestamp actual); // 0x3132e895 diff --git a/l1-contracts/src/core/libraries/rollup/EpochProofLib.sol b/l1-contracts/src/core/libraries/rollup/EpochProofLib.sol index 60646209feb0..f3238a23bb4b 100644 --- a/l1-contracts/src/core/libraries/rollup/EpochProofLib.sol +++ b/l1-contracts/src/core/libraries/rollup/EpochProofLib.sol @@ -68,12 +68,12 @@ library EpochProofLib { * - The archive root of the header does not match the archive root of the proposed block * - The proof is invalid * - * @dev We provide the `_archive` and `_blockHash` even if it could be read from storage itself because it allow for - * better error messages. Without passing it, we would just have a proof verification failure. + * @dev We provide the `_archive` even if it could be read from storage itself because it allow for better error + * messages. Without passing it, we would just have a proof verification failure. * * @param _args - The arguments to submit the epoch root proof: * _epochSize - The size of the epoch (to be promoted to a constant) - * _args - Array of public inputs to the proof (previousArchive, endArchive, previousBlockHash, endBlockHash, endTimestamp, outHash, proverId) + * _args - Array of public inputs to the proof (previousArchive, endArchive, endTimestamp, outHash, proverId) * _fees - Array of recipient-value pairs with fees to be distributed for the epoch * _blobPublicInputs - The blob public inputs for the proof * _proof - The proof to verify @@ -104,7 +104,7 @@ library EpochProofLib { * * @param _start - The start of the epoch (inclusive) * @param _end - The end of the epoch (inclusive) - * @param _args - Array of public inputs to the proof (previousArchive, endArchive, previousBlockHash, endBlockHash, endTimestamp, outHash, proverId) + * @param _args - Array of public inputs to the proof (previousArchive, endArchive, endTimestamp, outHash, proverId) * @param _fees - Array of recipient-value pairs with fees to be distributed for the epoch * @param _blobPublicInputs- The blob public inputs for the proof */ @@ -119,11 +119,9 @@ library EpochProofLib { // Args are defined as an array because Solidity complains with "stack too deep" otherwise // 0 bytes32 _previousArchive, // 1 bytes32 _endArchive, - // 2 bytes32 _previousBlockHash, - // 3 bytes32 _endBlockHash, - // 4 bytes32 _endTimestamp, - // 5 bytes32 _outHash, - // 6 bytes32 _proverId, + // 2 bytes32 _endTimestamp, + // 3 bytes32 _outHash, + // 4 bytes32 _proverId, // TODO(#7373): Public inputs are not fully verified @@ -144,24 +142,6 @@ library EpochProofLib { Errors.Rollup__InvalidArchive(expectedEndArchive, _args.endArchive) ); } - - { - bytes32 expectedPreviousBlockHash = rollupStore.blocks[_start - 1].blockHash; - require( - expectedPreviousBlockHash == _args.previousBlockHash, - Errors.Rollup__InvalidPreviousBlockHash( - expectedPreviousBlockHash, _args.previousBlockHash - ) - ); - } - - { - bytes32 expectedEndBlockHash = rollupStore.blocks[_end].blockHash; - require( - expectedEndBlockHash == _args.endBlockHash, - Errors.Rollup__InvalidBlockHash(expectedEndBlockHash, _args.endBlockHash) - ); - } } bytes32[] memory publicInputs = new bytes32[](Constants.ROOT_ROLLUP_PUBLIC_INPUTS_LENGTH); @@ -171,8 +151,6 @@ library EpochProofLib { // struct RootRollupPublicInputs { // previous_archive: AppendOnlyTreeSnapshot, // end_archive: AppendOnlyTreeSnapshot, - // previous_block_hash: Field, - // end_block_hash: Field, // end_timestamp: u64, // end_block_number: Field, // out_hash: Field, @@ -197,28 +175,22 @@ library EpochProofLib { // end_archive.next_available_leaf_index: the new archive next available index publicInputs[3] = bytes32(_end + 1); - // previous_block_hash: the block hash just preceding this epoch - publicInputs[4] = _args.previousBlockHash; - - // end_block_hash: the last block hash in the epoch - publicInputs[5] = _args.endBlockHash; - // end_timestamp: the timestamp of the last block in the epoch - publicInputs[6] = bytes32(Timestamp.unwrap(_args.endTimestamp)); + publicInputs[4] = bytes32(Timestamp.unwrap(_args.endTimestamp)); // end_block_number: last block number in the epoch - publicInputs[7] = bytes32(_end); + publicInputs[5] = bytes32(_end); // out_hash: root of this epoch's l2 to l1 message tree - publicInputs[8] = _args.outHash; + publicInputs[6] = _args.outHash; } uint256 feesLength = Constants.AZTEC_MAX_EPOCH_DURATION * 2; // fees[9 to (9+feesLength-1)]: array of recipient-value pairs for (uint256 i = 0; i < feesLength; i++) { - publicInputs[9 + i] = _fees[i]; + publicInputs[7 + i] = _fees[i]; } - uint256 offset = 9 + feesLength; + uint256 offset = 7 + feesLength; // vk_tree_root publicInputs[offset] = rollupStore.config.vkTreeRoot; diff --git a/l1-contracts/src/core/libraries/rollup/ProposeLib.sol b/l1-contracts/src/core/libraries/rollup/ProposeLib.sol index e3feb399589a..2ad05a1a704e 100644 --- a/l1-contracts/src/core/libraries/rollup/ProposeLib.sol +++ b/l1-contracts/src/core/libraries/rollup/ProposeLib.sol @@ -23,7 +23,6 @@ import {STFLib} from "./STFLib.sol"; struct ProposeArgs { bytes32 archive; - bytes32 blockHash; OracleInput oracleInput; bytes header; bytes32[] txHashes; @@ -107,11 +106,8 @@ library ProposeLib { RollupStore storage rollupStore = STFLib.getStorage(); uint256 blockNumber = ++rollupStore.tips.pendingBlockNumber; - rollupStore.blocks[blockNumber] = BlockLog({ - archive: _args.archive, - blockHash: _args.blockHash, - slotNumber: header.globalVariables.slotNumber - }); + rollupStore.blocks[blockNumber] = + BlockLog({archive: _args.archive, slotNumber: header.globalVariables.slotNumber}); FeeLib.writeFeeHeader( blockNumber, diff --git a/l1-contracts/src/core/libraries/rollup/STFLib.sol b/l1-contracts/src/core/libraries/rollup/STFLib.sol index 8e0fe5abfc67..92c47761a2ac 100644 --- a/l1-contracts/src/core/libraries/rollup/STFLib.sol +++ b/l1-contracts/src/core/libraries/rollup/STFLib.sol @@ -22,11 +22,8 @@ library STFLib { rollupStore.config.vkTreeRoot = _genesisState.vkTreeRoot; rollupStore.config.protocolContractTreeRoot = _genesisState.protocolContractTreeRoot; - rollupStore.blocks[0] = BlockLog({ - archive: _genesisState.genesisArchiveRoot, - blockHash: _genesisState.genesisBlockHash, - slotNumber: Slot.wrap(0) - }); + rollupStore.blocks[0] = + BlockLog({archive: _genesisState.genesisArchiveRoot, slotNumber: Slot.wrap(0)}); } function prune() internal { diff --git a/l1-contracts/test/Rollup.t.sol b/l1-contracts/test/Rollup.t.sol index 6d8c579fd2ee..8d8baebc594a 100644 --- a/l1-contracts/test/Rollup.t.sol +++ b/l1-contracts/test/Rollup.t.sol @@ -213,7 +213,6 @@ contract RollupTest is RollupBase { ProposeArgs memory args = ProposeArgs({ header: header, archive: data.archive, - blockHash: data.blockHash, oracleInput: OracleInput(0), txHashes: new bytes32[](0) }); @@ -241,7 +240,6 @@ contract RollupTest is RollupBase { ProposeArgs memory args = ProposeArgs({ header: header, archive: data.archive, - blockHash: data.blockHash, oracleInput: OracleInput(0), txHashes: new bytes32[](0) }); @@ -307,7 +305,6 @@ contract RollupTest is RollupBase { ProposeArgs memory args = ProposeArgs({ header: header, archive: data.archive, - blockHash: data.blockHash, oracleInput: OracleInput(0), txHashes: txHashes }); @@ -338,7 +335,6 @@ contract RollupTest is RollupBase { ProposeArgs memory args = ProposeArgs({ header: header, archive: data.archive, - blockHash: data.blockHash, oracleInput: OracleInput(0), txHashes: txHashes }); @@ -417,7 +413,6 @@ contract RollupTest is RollupBase { ProposeArgs memory args = ProposeArgs({ header: header, archive: data.archive, - blockHash: data.blockHash, oracleInput: OracleInput(0), txHashes: new bytes32[](0) }); @@ -449,8 +444,6 @@ contract RollupTest is RollupBase { 1, blockLog.archive, data.archive, - blockLog.blockHash, - data.blockHash, blobPublicInputs, prover, data.decodedHeader.globalVariables.coinbase, @@ -479,8 +472,6 @@ contract RollupTest is RollupBase { 1, blockLog.archive, data.archive, - blockLog.blockHash, - data.blockHash, this.getBlobPublicInputs(data.blobInputs), address(42), data.decodedHeader.globalVariables.coinbase, @@ -586,8 +577,6 @@ contract RollupTest is RollupBase { PublicInputArgs memory args = PublicInputArgs({ previousArchive: blockLog.archive, endArchive: data.archive, - previousBlockHash: blockLog.blockHash, - endBlockHash: data.blockHash, endTimestamp: Timestamp.wrap(0), outHash: bytes32(0), proverId: address(0) @@ -635,16 +624,7 @@ contract RollupTest is RollupBase { this.getBlobPublicInputs(load("mixed_block_1").block.blobInputs), this.getBlobPublicInputs(data.blobInputs) ); - _submitEpochProof( - 1, - 2, - blockLog.archive, - data.archive, - blockLog.blockHash, - data.blockHash, - blobPublicInputs, - address(0) - ); + _submitEpochProof(1, 2, blockLog.archive, data.archive, blobPublicInputs, address(0)); assertEq(rollup.getPendingBlockNumber(), 2, "Invalid pending block number"); assertEq(rollup.getProvenBlockNumber(), 2, "Invalid proven block number"); @@ -707,7 +687,6 @@ contract RollupTest is RollupBase { ProposeArgs memory args = ProposeArgs({ header: header, archive: archive, - blockHash: data.blockHash, oracleInput: OracleInput(0), txHashes: txHashes }); @@ -729,7 +708,6 @@ contract RollupTest is RollupBase { ProposeArgs memory args = ProposeArgs({ header: header, archive: archive, - blockHash: data.blockHash, oracleInput: OracleInput(0), txHashes: txHashes }); @@ -752,7 +730,6 @@ contract RollupTest is RollupBase { ProposeArgs memory args = ProposeArgs({ header: header, archive: archive, - blockHash: data.blockHash, oracleInput: OracleInput(0), txHashes: txHashes }); @@ -779,7 +756,6 @@ contract RollupTest is RollupBase { ProposeArgs memory args = ProposeArgs({ header: header, archive: archive, - blockHash: data.blockHash, oracleInput: OracleInput(0), txHashes: txHashes }); @@ -798,15 +774,7 @@ contract RollupTest is RollupBase { Errors.Rollup__InvalidPreviousArchive.selector, blockLog.archive, wrong ) ); - _submitEpochProof( - 1, 1, wrong, data.archive, blockLog.blockHash, data.blockHash, blobPublicInputs, address(0) - ); - - // TODO: Reenable when we setup proper initial block hash - // vm.expectRevert( - // abi.encodeWithSelector(Errors.Rollup__InvalidPreviousBlockHash.selector, preBlockHash, wrong) - // ); - // _submitEpochProof(rollup, 1, preArchive, data.archive, wrong, data.blockHash, bytes32(0)); + _submitEpochProof(1, 1, wrong, data.archive, blobPublicInputs, address(0)); } function testSubmitProofInvalidArchive() public setUpFor("empty_block_1") { @@ -820,41 +788,7 @@ contract RollupTest is RollupBase { vm.expectRevert( abi.encodeWithSelector(Errors.Rollup__InvalidArchive.selector, data.archive, 0xdeadbeef) ); - _submitEpochProof( - 1, - 1, - blockLog.archive, - wrongArchive, - blockLog.blockHash, - data.blockHash, - blobPublicInputs, - address(0) - ); - } - - function testSubmitProofInvalidBlockHash() public setUpFor("empty_block_1") { - _proposeBlock("empty_block_1", 1); - - DecoderBase.Data memory data = load("empty_block_1").block; - bytes memory blobPublicInputs = this.getBlobPublicInputs(data.blobInputs); - bytes32 wrongBlockHash = bytes32(uint256(0xdeadbeef)); - - BlockLog memory parentBlockLog = rollup.getBlock(0); - vm.expectRevert( - abi.encodeWithSelector( - Errors.Rollup__InvalidBlockHash.selector, data.blockHash, wrongBlockHash - ) - ); - _submitEpochProof( - 1, - 1, - parentBlockLog.archive, - data.archive, - parentBlockLog.blockHash, - wrongBlockHash, - blobPublicInputs, - address(0) - ); + _submitEpochProof(1, 1, blockLog.archive, wrongArchive, blobPublicInputs, address(0)); } function _testSubmitProofInvalidBlobPublicInput() public setUpFor("empty_block_1") { @@ -876,16 +810,7 @@ contract RollupTest is RollupBase { wrongBlobPublicInputsHash ) ); - _submitEpochProof( - 1, - 1, - blockLog.archive, - data.archive, - blockLog.blockHash, - data.blockHash, - blobPublicInputs, - address(0) - ); + _submitEpochProof(1, 1, blockLog.archive, data.archive, blobPublicInputs, address(0)); } function _submitEpochProof( @@ -893,22 +818,11 @@ contract RollupTest is RollupBase { uint256 _end, bytes32 _prevArchive, bytes32 _archive, - bytes32 _prevBlockHash, - bytes32 _blockHash, bytes memory _blobPublicInputs, address _prover ) internal { _submitEpochProofWithFee( - _start, - _end, - _prevArchive, - _archive, - _prevBlockHash, - _blockHash, - _blobPublicInputs, - _prover, - address(0), - 0 + _start, _end, _prevArchive, _archive, _blobPublicInputs, _prover, address(0), 0 ); } @@ -917,8 +831,6 @@ contract RollupTest is RollupBase { uint256 _end, bytes32 _prevArchive, bytes32 _archive, - bytes32 _prevBlockHash, - bytes32 _blockHash, bytes memory _blobPublicInputs, address _prover, address _coinbase, @@ -927,8 +839,6 @@ contract RollupTest is RollupBase { PublicInputArgs memory args = PublicInputArgs({ previousArchive: _prevArchive, endArchive: _archive, - previousBlockHash: _prevBlockHash, - endBlockHash: _blockHash, endTimestamp: Timestamp.wrap(0), outHash: bytes32(0), proverId: _prover diff --git a/l1-contracts/test/base/DecoderBase.sol b/l1-contracts/test/base/DecoderBase.sol index f5792cb97712..840362d591e0 100644 --- a/l1-contracts/test/base/DecoderBase.sol +++ b/l1-contracts/test/base/DecoderBase.sol @@ -35,7 +35,6 @@ contract DecoderBase is TestBase { struct Data { bytes32 archive; bytes blobInputs; - bytes32 blockHash; bytes body; DecodedHeader decodedHeader; bytes header; diff --git a/l1-contracts/test/base/RollupBase.sol b/l1-contracts/test/base/RollupBase.sol index 7dfc14224ee1..eb9875cdabac 100644 --- a/l1-contracts/test/base/RollupBase.sol +++ b/l1-contracts/test/base/RollupBase.sol @@ -71,8 +71,6 @@ contract RollupBase is DecoderBase { PublicInputArgs memory args = PublicInputArgs({ previousArchive: parentBlockLog.archive, endArchive: endFull.block.archive, - previousBlockHash: parentBlockLog.blockHash, - endBlockHash: endFull.block.blockHash, endTimestamp: Timestamp.wrap(0), // WHAT ? outHash: bytes32(0), // WHAT ? proverId: _prover @@ -245,7 +243,6 @@ contract RollupBase is DecoderBase { ProposeArgs memory args = ProposeArgs({ header: header, archive: full.block.archive, - blockHash: full.block.blockHash, oracleInput: OracleInput(0), txHashes: new bytes32[](0) }); diff --git a/l1-contracts/test/benchmark/happy.t.sol b/l1-contracts/test/benchmark/happy.t.sol index 4e1c59858849..98a05160dd5e 100644 --- a/l1-contracts/test/benchmark/happy.t.sol +++ b/l1-contracts/test/benchmark/happy.t.sol @@ -249,7 +249,6 @@ contract BenchmarkRollupTest is FeeModelTestPoints, DecoderBase { ProposeArgs memory proposeArgs = ProposeArgs({ header: header, archive: archiveRoot, - blockHash: bytes32(Constants.GENESIS_BLOCK_HASH), oracleInput: OracleInput({feeAssetPriceModifier: point.oracle_input.fee_asset_price_modifier}), txHashes: txHashes }); @@ -363,8 +362,6 @@ contract BenchmarkRollupTest is FeeModelTestPoints, DecoderBase { PublicInputArgs memory args = PublicInputArgs({ previousArchive: rollup.getBlock(start).archive, endArchive: rollup.getBlock(start + epochSize - 1).archive, - previousBlockHash: rollup.getBlock(start).blockHash, - endBlockHash: rollup.getBlock(start + epochSize - 1).blockHash, endTimestamp: Timestamp.wrap(0), outHash: bytes32(0), proverId: address(0) diff --git a/l1-contracts/test/fees/FeeRollup.t.sol b/l1-contracts/test/fees/FeeRollup.t.sol index 927a6213504d..4c8f4c899667 100644 --- a/l1-contracts/test/fees/FeeRollup.t.sol +++ b/l1-contracts/test/fees/FeeRollup.t.sol @@ -69,7 +69,6 @@ contract FeeRollupTest is FeeModelTestPoints, DecoderBase { struct Block { bytes32 archive; - bytes32 blockHash; bytes header; bytes body; bytes blobInputs; @@ -210,7 +209,6 @@ contract FeeRollupTest is FeeModelTestPoints, DecoderBase { return Block({ archive: archiveRoot, - blockHash: bytes32(Constants.GENESIS_BLOCK_HASH), header: header, body: body, blobInputs: full.block.blobInputs, @@ -237,7 +235,6 @@ contract FeeRollupTest is FeeModelTestPoints, DecoderBase { ProposeArgs({ header: b.header, archive: b.archive, - blockHash: b.blockHash, oracleInput: OracleInput({ feeAssetPriceModifier: point.oracle_input.fee_asset_price_modifier }), @@ -340,7 +337,6 @@ contract FeeRollupTest is FeeModelTestPoints, DecoderBase { ProposeArgs({ header: b.header, archive: b.archive, - blockHash: b.blockHash, oracleInput: OracleInput({ feeAssetPriceModifier: point.oracle_input.fee_asset_price_modifier }), @@ -437,8 +433,6 @@ contract FeeRollupTest is FeeModelTestPoints, DecoderBase { PublicInputArgs memory args = PublicInputArgs({ previousArchive: rollup.getBlock(start).archive, endArchive: rollup.getBlock(start + epochSize - 1).archive, - previousBlockHash: rollup.getBlock(start).blockHash, - endBlockHash: rollup.getBlock(start + epochSize - 1).blockHash, endTimestamp: Timestamp.wrap(0), outHash: bytes32(0), proverId: address(0) diff --git a/l1-contracts/test/fixtures/empty_block_1.json b/l1-contracts/test/fixtures/empty_block_1.json index 3522ecbe5a9e..d92d41437919 100644 --- a/l1-contracts/test/fixtures/empty_block_1.json +++ b/l1-contracts/test/fixtures/empty_block_1.json @@ -25,8 +25,7 @@ "l2ToL1Messages": [] }, "block": { - "archive": "0x19d282bf5387d54a21db424a09ee23196be74da0dfbb4ca28a4939020da2adc4", - "blockHash": "0x0d03dd1cec142b914011e7ebf5375295b8ae9cec88accfb41b6bcbc5cb2e74f1", + "archive": "0x2367b56a44f1cc971a7a48ee0e3fb63854613261bf995e02cf15b80eb7a49e09", "body": "0x00000000", "decodedHeader": { "contentCommitment": { @@ -37,15 +36,15 @@ }, "globalVariables": { "blockNumber": 1, - "slotNumber": "0x000000000000000000000000000000000000000000000000000000000000001b", + "slotNumber": "0x000000000000000000000000000000000000000000000000000000000000001a", "chainId": 31337, - "timestamp": 1736363020, + "timestamp": 1742997649, "version": 1, - "coinbase": "0xb3402d01fb3d2005f49fa063cc2470cd3dcd8cee", - "feeRecipient": "0x1e5f75a4eff0236113040956df38e3ec6b175c9a46e289972a69ffb812506b21", + "coinbase": "0x2d2b1a3e7cece64518bdf12bc2893b3072ded721", + "feeRecipient": "0x24e7c1eb8df59749e6d1005b7dcc23e8c768593e87065c4134a0ce43c94335b3", "gasFees": { "feePerDaGas": 0, - "feePerL2Gas": 54153579570 + "feePerL2Gas": 5425370 } }, "totalFees": "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -75,8 +74,8 @@ } } }, - "header": "0x0237797d6a2c04d20d4fa06b74482bd970ccd51a43d9b05b57e9b91fa1ae1cae000000010000000000000000000000000000000000000000000000000000000000000000001cedbd7ea5309ef9d1d159209835409bf41b6b1802597a52fa70cc82e934d900089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c00000000000000000000000000000000000000000000000000000000000000002e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6000000101fd848aa69e1633722fe249a5b7f53b094f1c9cef9f5c694b073fd1cc5850dfb000000000c499b373a1f0fe1b510a63563546d2d39e206895056a5af0143c5f30d6390730000008023c08a6b1297210c5e24c76b9a936250a1ce2721576c26ea797c7ec35f9e46a9000000800000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001b00000000000000000000000000000000000000000000000000000000677ecc0cb3402d01fb3d2005f49fa063cc2470cd3dcd8cee1e5f75a4eff0236113040956df38e3ec6b175c9a46e289972a69ffb812506b2100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c9bce0c3200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "publicInputsHash": "0x00275dc890b7255d4fa73d97e7ee5711f4bca05e6b8f8240b4c44468ff32f23e", + "header": "0x0237797d6a2c04d20d4fa06b74482bd970ccd51a43d9b05b57e9b91fa1ae1cae000000010000000000000000000000000000000000000000000000000000000000000000001cedbd7ea5309ef9d1d159209835409bf41b6b1802597a52fa70cc82e934d900089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c00000000000000000000000000000000000000000000000000000000000000002e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6000000101fd848aa69e1633722fe249a5b7f53b094f1c9cef9f5c694b073fd1cc5850dfb000000000c499b373a1f0fe1b510a63563546d2d39e206895056a5af0143c5f30d6390730000008023c08a6b1297210c5e24c76b9a936250a1ce2721576c26ea797c7ec35f9e46a9000000800000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000067e408912d2b1a3e7cece64518bdf12bc2893b3072ded72124e7c1eb8df59749e6d1005b7dcc23e8c768593e87065c4134a0ce43c94335b30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000052c8da00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "publicInputsHash": "0x007ba02fdeb67f22a3dd1cfe8baa8d221ad67fbb9fcfafc6e0bc1ebc4d20f100", "blobInputs": "0x01010657f37554c781402a22917dee2f75def7ab966d7b770905398eba3c4440140ac4f3ee53aedc4865073ae7fb664e7401d10eadbe3bbcc266c35059f14826bb0000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "numTxs": 0 } diff --git a/l1-contracts/test/fixtures/empty_block_2.json b/l1-contracts/test/fixtures/empty_block_2.json index d1778687ac8b..aaf0075fd476 100644 --- a/l1-contracts/test/fixtures/empty_block_2.json +++ b/l1-contracts/test/fixtures/empty_block_2.json @@ -25,8 +25,7 @@ "l2ToL1Messages": [] }, "block": { - "archive": "0x11506872116eebb48e80d1ceeddbb9a5f0066e702cdb22f522e19b214c1dfa5e", - "blockHash": "0x22dd9b00e308d54f150daabe9321fa6ee4add23548b34312b6cfa97636938a1d", + "archive": "0x277fad8742d641aa1e99af417d082739dc39bab49298997cab17c501996e6171", "body": "0x00000000", "decodedHeader": { "contentCommitment": { @@ -37,22 +36,22 @@ }, "globalVariables": { "blockNumber": 2, - "slotNumber": "0x0000000000000000000000000000000000000000000000000000000000000024", + "slotNumber": "0x0000000000000000000000000000000000000000000000000000000000000023", "chainId": 31337, - "timestamp": 1736363236, + "timestamp": 1742997865, "version": 1, - "coinbase": "0xb3402d01fb3d2005f49fa063cc2470cd3dcd8cee", - "feeRecipient": "0x1e5f75a4eff0236113040956df38e3ec6b175c9a46e289972a69ffb812506b21", + "coinbase": "0x2d2b1a3e7cece64518bdf12bc2893b3072ded721", + "feeRecipient": "0x24e7c1eb8df59749e6d1005b7dcc23e8c768593e87065c4134a0ce43c94335b3", "gasFees": { "feePerDaGas": 0, - "feePerL2Gas": 54153579570 + "feePerL2Gas": 316120 } }, "totalFees": "0x0000000000000000000000000000000000000000000000000000000000000000", "totalManaUsed": "0x0000000000000000000000000000000000000000000000000000000000000000", "lastArchive": { "nextAvailableLeafIndex": 2, - "root": "0x19d282bf5387d54a21db424a09ee23196be74da0dfbb4ca28a4939020da2adc4" + "root": "0x2367b56a44f1cc971a7a48ee0e3fb63854613261bf995e02cf15b80eb7a49e09" }, "stateReference": { "l1ToL2MessageTree": { @@ -75,8 +74,8 @@ } } }, - "header": "0x19d282bf5387d54a21db424a09ee23196be74da0dfbb4ca28a4939020da2adc4000000020000000000000000000000000000000000000000000000000000000000000000001cedbd7ea5309ef9d1d159209835409bf41b6b1802597a52fa70cc82e934d900e1371045bd7d2c3e1f19cba5f536f0e82042ba4bc257d4ba19c146215e82420000000000000000000000000000000000000000000000000000000000000000026efb6c2a517de2448119d0f1255757265dbec7cdd2952df929ede666e10944000000201fd848aa69e1633722fe249a5b7f53b094f1c9cef9f5c694b073fd1cc5850dfb000000000c499b373a1f0fe1b510a63563546d2d39e206895056a5af0143c5f30d6390730000008023c08a6b1297210c5e24c76b9a936250a1ce2721576c26ea797c7ec35f9e46a9000000800000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000677ecce4b3402d01fb3d2005f49fa063cc2470cd3dcd8cee1e5f75a4eff0236113040956df38e3ec6b175c9a46e289972a69ffb812506b2100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c9bce0c3200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "publicInputsHash": "0x005b1b863296881eae107765d5aa0013f166a3a6c3fac8000f27f1533e34c05f", + "header": "0x2367b56a44f1cc971a7a48ee0e3fb63854613261bf995e02cf15b80eb7a49e09000000020000000000000000000000000000000000000000000000000000000000000000001cedbd7ea5309ef9d1d159209835409bf41b6b1802597a52fa70cc82e934d900e1371045bd7d2c3e1f19cba5f536f0e82042ba4bc257d4ba19c146215e82420000000000000000000000000000000000000000000000000000000000000000026efb6c2a517de2448119d0f1255757265dbec7cdd2952df929ede666e10944000000201fd848aa69e1633722fe249a5b7f53b094f1c9cef9f5c694b073fd1cc5850dfb000000000c499b373a1f0fe1b510a63563546d2d39e206895056a5af0143c5f30d6390730000008023c08a6b1297210c5e24c76b9a936250a1ce2721576c26ea797c7ec35f9e46a9000000800000000000000000000000000000000000000000000000000000000000007a690000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000230000000000000000000000000000000000000000000000000000000067e409692d2b1a3e7cece64518bdf12bc2893b3072ded72124e7c1eb8df59749e6d1005b7dcc23e8c768593e87065c4134a0ce43c94335b30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004d2d800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "publicInputsHash": "0x00b31d2b0d772b021222c4de2484f9f4db0fc33837d14312664f0aae6f51c636", "blobInputs": "0x01010657f37554c781402a22917dee2f75def7ab966d7b770905398eba3c4440140ac4f3ee53aedc4865073ae7fb664e7401d10eadbe3bbcc266c35059f14826bb0000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "numTxs": 0 } diff --git a/l1-contracts/test/fixtures/mixed_block_1.json b/l1-contracts/test/fixtures/mixed_block_1.json index 5575ca073320..b46a22e4465c 100644 --- a/l1-contracts/test/fixtures/mixed_block_1.json +++ b/l1-contracts/test/fixtures/mixed_block_1.json @@ -58,12 +58,11 @@ ] }, "block": { - "archive": "0x180cfc8087a03f6b75c2de9c483d3284caa57bd6c56e2bd88e276ba0b9abe1c7", - "blockHash": "0x2b9d4e3e7726ff7a49dbf468c4e60d43cbc17965efeb5a22cce45f5c46b84252", - "body": "0x00000004000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000041000000000000000000000000000000000000000000000000000000000000004100100000000000000000000000000000000000000000000000000000000000410020000000000000000000000000000000000000000000000000000000000041003000000000000000000000000000000000000000000000000000000000004100400000000000000000000000000000000000000000000000000000000000410050000000000000000000000000000000000000000000000000000000000041006000000000000000000000000000000000000000000000000000000000004100700000000000000000000000000000000000000000000000000000000000410080000000000000000000000000000000000000000000000000000000000041009000000000000000000000000000000000000000000000000000000000004100a000000000000000000000000000000000000000000000000000000000004100b000000000000000000000000000000000000000000000000000000000004100c000000000000000000000000000000000000000000000000000000000004100d000000000000000000000000000000000000000000000000000000000004100e000000000000000000000000000000000000000000000000000000000004100f0000000000000000000000000000000000000000000000000000000000041010000000000000000000000000000000000000000000000000000000000004101100000000000000000000000000000000000000000000000000000000000410120000000000000000000000000000000000000000000000000000000000041013000000000000000000000000000000000000000000000000000000000004101400000000000000000000000000000000000000000000000000000000000410150000000000000000000000000000000000000000000000000000000000041016000000000000000000000000000000000000000000000000000000000004101700000000000000000000000000000000000000000000000000000000000410180000000000000000000000000000000000000000000000000000000000041019000000000000000000000000000000000000000000000000000000000004101a000000000000000000000000000000000000000000000000000000000004101b000000000000000000000000000000000000000000000000000000000004101c000000000000000000000000000000000000000000000000000000000004101d000000000000000000000000000000000000000000000000000000000004101e000000000000000000000000000000000000000000000000000000000004101f0000000000000000000000000000000000000000000000000000000000041020000000000000000000000000000000000000000000000000000000000004102100000000000000000000000000000000000000000000000000000000000410220000000000000000000000000000000000000000000000000000000000041023000000000000000000000000000000000000000000000000000000000004102400000000000000000000000000000000000000000000000000000000000410250000000000000000000000000000000000000000000000000000000000041026000000000000000000000000000000000000000000000000000000000004102700000000000000000000000000000000000000000000000000000000000410280000000000000000000000000000000000000000000000000000000000041029000000000000000000000000000000000000000000000000000000000004102a000000000000000000000000000000000000000000000000000000000004102b000000000000000000000000000000000000000000000000000000000004102c000000000000000000000000000000000000000000000000000000000004102d000000000000000000000000000000000000000000000000000000000004102e000000000000000000000000000000000000000000000000000000000004102f0000000000000000000000000000000000000000000000000000000000041030000000000000000000000000000000000000000000000000000000000004103100000000000000000000000000000000000000000000000000000000000410320000000000000000000000000000000000000000000000000000000000041033000000000000000000000000000000000000000000000000000000000004103400000000000000000000000000000000000000000000000000000000000410350000000000000000000000000000000000000000000000000000000000041036000000000000000000000000000000000000000000000000000000000004103700000000000000000000000000000000000000000000000000000000000410380000000000000000000000000000000000000000000000000000000000041039000000000000000000000000000000000000000000000000000000000004103a000000000000000000000000000000000000000000000000000000000004103b000000000000000000000000000000000000000000000000000000000004103c000000000000000000000000000000000000000000000000000000000004103d000000000000000000000000000000000000000000000000000000000004103e000000000000000000000000000000000000000000000000000000000004103f4000000000000000000000000000000000000000000000000000000000000400010000000000000000000000000000000000000000000000000000000000041100000000000000000000000000000000000000000000000000000000000004110100000000000000000000000000000000000000000000000000000000000411020000000000000000000000000000000000000000000000000000000000041103000000000000000000000000000000000000000000000000000000000004110400000000000000000000000000000000000000000000000000000000000411050000000000000000000000000000000000000000000000000000000000041106000000000000000000000000000000000000000000000000000000000004110700000000000000000000000000000000000000000000000000000000000411080000000000000000000000000000000000000000000000000000000000041109000000000000000000000000000000000000000000000000000000000004110a000000000000000000000000000000000000000000000000000000000004110b000000000000000000000000000000000000000000000000000000000004110c000000000000000000000000000000000000000000000000000000000004110d000000000000000000000000000000000000000000000000000000000004110e000000000000000000000000000000000000000000000000000000000004110f0000000000000000000000000000000000000000000000000000000000041110000000000000000000000000000000000000000000000000000000000004111100000000000000000000000000000000000000000000000000000000000411120000000000000000000000000000000000000000000000000000000000041113000000000000000000000000000000000000000000000000000000000004111400000000000000000000000000000000000000000000000000000000000411150000000000000000000000000000000000000000000000000000000000041116000000000000000000000000000000000000000000000000000000000004111700000000000000000000000000000000000000000000000000000000000411180000000000000000000000000000000000000000000000000000000000041119000000000000000000000000000000000000000000000000000000000004111a000000000000000000000000000000000000000000000000000000000004111b000000000000000000000000000000000000000000000000000000000004111c000000000000000000000000000000000000000000000000000000000004111d000000000000000000000000000000000000000000000000000000000004111e000000000000000000000000000000000000000000000000000000000004111f0000000000000000000000000000000000000000000000000000000000041120000000000000000000000000000000000000000000000000000000000004112100000000000000000000000000000000000000000000000000000000000411220000000000000000000000000000000000000000000000000000000000041123000000000000000000000000000000000000000000000000000000000004112400000000000000000000000000000000000000000000000000000000000411250000000000000000000000000000000000000000000000000000000000041126000000000000000000000000000000000000000000000000000000000004112700000000000000000000000000000000000000000000000000000000000411280000000000000000000000000000000000000000000000000000000000041129000000000000000000000000000000000000000000000000000000000004112a000000000000000000000000000000000000000000000000000000000004112b000000000000000000000000000000000000000000000000000000000004112c000000000000000000000000000000000000000000000000000000000004112d000000000000000000000000000000000000000000000000000000000004112e000000000000000000000000000000000000000000000000000000000004112f0000000000000000000000000000000000000000000000000000000000041130000000000000000000000000000000000000000000000000000000000004113100000000000000000000000000000000000000000000000000000000000411320000000000000000000000000000000000000000000000000000000000041133000000000000000000000000000000000000000000000000000000000004113400000000000000000000000000000000000000000000000000000000000411350000000000000000000000000000000000000000000000000000000000041136000000000000000000000000000000000000000000000000000000000004113700000000000000000000000000000000000000000000000000000000000411380000000000000000000000000000000000000000000000000000000000041139000000000000000000000000000000000000000000000000000000000004113a000000000000000000000000000000000000000000000000000000000004113b000000000000000000000000000000000000000000000000000000000004113c000000000000000000000000000000000000000000000000000000000004113d000000000000000000000000000000000000000000000000000000000004113e080097a6ec570e9b8e257647c9c74c5ad3edc57ca5ef6ae44d80b3c30d1d99b9b300ce48ec41d1edde0066fab553a456ae2f380d14fa8f956af1fb0217513a598900619ff12eaf97f63aa2a2311de3b6571a7b880a5247cb33b6a74787bf3f9bd5007854a2fad4e1801c6404394bf3d37ab08c135ea38a1974242e39a21273685f000f55796e72957a819e68a22e8602d73c3ba3718a5a4bd92b80b0aa444b182a00788b6e9874fb040ee679a7fae257190099a605229b948334e54a57739535d4004f1658ee3c1a91627e5d72f5a731f0796299df82ab41e72c88eee0c82fa85e003ee802add96628c693ed71afa9908138ba5a6fbf0a5f29a9c74e4e42aba671400000000000000000000000000000000000000000000000000000000000042000000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042001000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042002000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042003000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042004000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042005000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420060000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004200700000000000000000000000000000000000000000000000000000000000420110000000000000000000000000000000000000000000000000000000000042008000000000000000000000000000000000000000000000000000000000004201200000000000000000000000000000000000000000000000000000000000420090000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042016000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042017000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042011000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042012000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420160000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004201700000000000000000000000000000000000000000000000000000000000420210000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004202200000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042026000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042027000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042021000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042022000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420260000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004202700000000000000000000000000000000000000000000000000000000000420310000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004203200000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042036000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042037000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042031000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042032000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004203f00000000000000000000000000000000000000000000000000000000000420360000000000000000000000000000000000000000000000000000000000042040000000000000000000000000000000000000000000000000000000000004203700000000000000000000000000000000000000000000000000000000000420410000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004204200000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042043000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042044000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042045000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042046000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042047000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042048000000000000000000000000000000000000000000000000000000000004203f0000000000000000000000000000000000000000000000000000000000042049200000000000000000000000000000000000000000000000000000000000041700000000000000000000000000000000000000000000000000000000000004170100000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004170100000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004171800000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004171800000000000000000000000000000000000000000000000000000000000417190000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004172800000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004172800000000000000000000000000000000000000000000000000000000000417290000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004172f000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004172f0000000000000000000000000000000000000000000000000000000000041730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000081000000000000000000000000000000000000000000000000000000000000008100100000000000000000000000000000000000000000000000000000000000810020000000000000000000000000000000000000000000000000000000000081003000000000000000000000000000000000000000000000000000000000008100400000000000000000000000000000000000000000000000000000000000810050000000000000000000000000000000000000000000000000000000000081006000000000000000000000000000000000000000000000000000000000008100700000000000000000000000000000000000000000000000000000000000810080000000000000000000000000000000000000000000000000000000000081009000000000000000000000000000000000000000000000000000000000008100a000000000000000000000000000000000000000000000000000000000008100b000000000000000000000000000000000000000000000000000000000008100c000000000000000000000000000000000000000000000000000000000008100d000000000000000000000000000000000000000000000000000000000008100e000000000000000000000000000000000000000000000000000000000008100f0000000000000000000000000000000000000000000000000000000000081010000000000000000000000000000000000000000000000000000000000008101100000000000000000000000000000000000000000000000000000000000810120000000000000000000000000000000000000000000000000000000000081013000000000000000000000000000000000000000000000000000000000008101400000000000000000000000000000000000000000000000000000000000810150000000000000000000000000000000000000000000000000000000000081016000000000000000000000000000000000000000000000000000000000008101700000000000000000000000000000000000000000000000000000000000810180000000000000000000000000000000000000000000000000000000000081019000000000000000000000000000000000000000000000000000000000008101a000000000000000000000000000000000000000000000000000000000008101b000000000000000000000000000000000000000000000000000000000008101c000000000000000000000000000000000000000000000000000000000008101d000000000000000000000000000000000000000000000000000000000008101e000000000000000000000000000000000000000000000000000000000008101f0000000000000000000000000000000000000000000000000000000000081020000000000000000000000000000000000000000000000000000000000008102100000000000000000000000000000000000000000000000000000000000810220000000000000000000000000000000000000000000000000000000000081023000000000000000000000000000000000000000000000000000000000008102400000000000000000000000000000000000000000000000000000000000810250000000000000000000000000000000000000000000000000000000000081026000000000000000000000000000000000000000000000000000000000008102700000000000000000000000000000000000000000000000000000000000810280000000000000000000000000000000000000000000000000000000000081029000000000000000000000000000000000000000000000000000000000008102a000000000000000000000000000000000000000000000000000000000008102b000000000000000000000000000000000000000000000000000000000008102c000000000000000000000000000000000000000000000000000000000008102d000000000000000000000000000000000000000000000000000000000008102e000000000000000000000000000000000000000000000000000000000008102f0000000000000000000000000000000000000000000000000000000000081030000000000000000000000000000000000000000000000000000000000008103100000000000000000000000000000000000000000000000000000000000810320000000000000000000000000000000000000000000000000000000000081033000000000000000000000000000000000000000000000000000000000008103400000000000000000000000000000000000000000000000000000000000810350000000000000000000000000000000000000000000000000000000000081036000000000000000000000000000000000000000000000000000000000008103700000000000000000000000000000000000000000000000000000000000810380000000000000000000000000000000000000000000000000000000000081039000000000000000000000000000000000000000000000000000000000008103a000000000000000000000000000000000000000000000000000000000008103b000000000000000000000000000000000000000000000000000000000008103c000000000000000000000000000000000000000000000000000000000008103d000000000000000000000000000000000000000000000000000000000008103e000000000000000000000000000000000000000000000000000000000008103f4000000000000000000000000000000000000000000000000000000000000800010000000000000000000000000000000000000000000000000000000000081100000000000000000000000000000000000000000000000000000000000008110100000000000000000000000000000000000000000000000000000000000811020000000000000000000000000000000000000000000000000000000000081103000000000000000000000000000000000000000000000000000000000008110400000000000000000000000000000000000000000000000000000000000811050000000000000000000000000000000000000000000000000000000000081106000000000000000000000000000000000000000000000000000000000008110700000000000000000000000000000000000000000000000000000000000811080000000000000000000000000000000000000000000000000000000000081109000000000000000000000000000000000000000000000000000000000008110a000000000000000000000000000000000000000000000000000000000008110b000000000000000000000000000000000000000000000000000000000008110c000000000000000000000000000000000000000000000000000000000008110d000000000000000000000000000000000000000000000000000000000008110e000000000000000000000000000000000000000000000000000000000008110f0000000000000000000000000000000000000000000000000000000000081110000000000000000000000000000000000000000000000000000000000008111100000000000000000000000000000000000000000000000000000000000811120000000000000000000000000000000000000000000000000000000000081113000000000000000000000000000000000000000000000000000000000008111400000000000000000000000000000000000000000000000000000000000811150000000000000000000000000000000000000000000000000000000000081116000000000000000000000000000000000000000000000000000000000008111700000000000000000000000000000000000000000000000000000000000811180000000000000000000000000000000000000000000000000000000000081119000000000000000000000000000000000000000000000000000000000008111a000000000000000000000000000000000000000000000000000000000008111b000000000000000000000000000000000000000000000000000000000008111c000000000000000000000000000000000000000000000000000000000008111d000000000000000000000000000000000000000000000000000000000008111e000000000000000000000000000000000000000000000000000000000008111f0000000000000000000000000000000000000000000000000000000000081120000000000000000000000000000000000000000000000000000000000008112100000000000000000000000000000000000000000000000000000000000811220000000000000000000000000000000000000000000000000000000000081123000000000000000000000000000000000000000000000000000000000008112400000000000000000000000000000000000000000000000000000000000811250000000000000000000000000000000000000000000000000000000000081126000000000000000000000000000000000000000000000000000000000008112700000000000000000000000000000000000000000000000000000000000811280000000000000000000000000000000000000000000000000000000000081129000000000000000000000000000000000000000000000000000000000008112a000000000000000000000000000000000000000000000000000000000008112b000000000000000000000000000000000000000000000000000000000008112c000000000000000000000000000000000000000000000000000000000008112d000000000000000000000000000000000000000000000000000000000008112e000000000000000000000000000000000000000000000000000000000008112f0000000000000000000000000000000000000000000000000000000000081130000000000000000000000000000000000000000000000000000000000008113100000000000000000000000000000000000000000000000000000000000811320000000000000000000000000000000000000000000000000000000000081133000000000000000000000000000000000000000000000000000000000008113400000000000000000000000000000000000000000000000000000000000811350000000000000000000000000000000000000000000000000000000000081136000000000000000000000000000000000000000000000000000000000008113700000000000000000000000000000000000000000000000000000000000811380000000000000000000000000000000000000000000000000000000000081139000000000000000000000000000000000000000000000000000000000008113a000000000000000000000000000000000000000000000000000000000008113b000000000000000000000000000000000000000000000000000000000008113c000000000000000000000000000000000000000000000000000000000008113d000000000000000000000000000000000000000000000000000000000008113e08003c0472260790b0bdfb8ae4dc4d437e7686b73643f2198970d84e1059a5f13500bfd46275a318e438726ff2765ae154b63ab8a0daebcbed668a5f58a0e63dc1007906b9418dc758c6b4f8454c69baa48b7889b6b511d707abe8e2cb8f7c397300aeb60c4d65a44f122e58bf9565dfe2024b3ae654d5cf2e47ecb035d53c927000bf82e8cda20345f37bbb1de3932172324b57f0b98be483392697b168e3bba8000fb4bbad884ef30edf68e45a6cf2733fcf50310c69d7c1432b29af2c0aa8040023e1622d27fee3b4a40ab975ae0eb2e31619ef3dc76eb858f7fddb6a056131004689cd7007daf98dd3218b839b8e6a29f957154347b391fdb376bd0b344be2400000000000000000000000000000000000000000000000000000000000082000000000000000000000000000000000000000000000000000000000000008200a0000000000000000000000000000000000000000000000000000000000082001000000000000000000000000000000000000000000000000000000000008200b0000000000000000000000000000000000000000000000000000000000082002000000000000000000000000000000000000000000000000000000000008200c0000000000000000000000000000000000000000000000000000000000082003000000000000000000000000000000000000000000000000000000000008200d0000000000000000000000000000000000000000000000000000000000082004000000000000000000000000000000000000000000000000000000000008200e0000000000000000000000000000000000000000000000000000000000082005000000000000000000000000000000000000000000000000000000000008200f00000000000000000000000000000000000000000000000000000000000820060000000000000000000000000000000000000000000000000000000000082010000000000000000000000000000000000000000000000000000000000008200700000000000000000000000000000000000000000000000000000000000820110000000000000000000000000000000000000000000000000000000000082008000000000000000000000000000000000000000000000000000000000008201200000000000000000000000000000000000000000000000000000000000820090000000000000000000000000000000000000000000000000000000000082013000000000000000000000000000000000000000000000000000000000008200a0000000000000000000000000000000000000000000000000000000000082014000000000000000000000000000000000000000000000000000000000008200b0000000000000000000000000000000000000000000000000000000000082015000000000000000000000000000000000000000000000000000000000008200c0000000000000000000000000000000000000000000000000000000000082016000000000000000000000000000000000000000000000000000000000008200d0000000000000000000000000000000000000000000000000000000000082017000000000000000000000000000000000000000000000000000000000008200e0000000000000000000000000000000000000000000000000000000000082018000000000000000000000000000000000000000000000000000000000008200f00000000000000000000000000000000000000000000000000000000000820190000000000000000000000000000000000000000000000000000000000082010000000000000000000000000000000000000000000000000000000000008201a0000000000000000000000000000000000000000000000000000000000082011000000000000000000000000000000000000000000000000000000000008201b0000000000000000000000000000000000000000000000000000000000082012000000000000000000000000000000000000000000000000000000000008201c0000000000000000000000000000000000000000000000000000000000082013000000000000000000000000000000000000000000000000000000000008201d0000000000000000000000000000000000000000000000000000000000082014000000000000000000000000000000000000000000000000000000000008201e0000000000000000000000000000000000000000000000000000000000082015000000000000000000000000000000000000000000000000000000000008201f00000000000000000000000000000000000000000000000000000000000820160000000000000000000000000000000000000000000000000000000000082020000000000000000000000000000000000000000000000000000000000008201700000000000000000000000000000000000000000000000000000000000820210000000000000000000000000000000000000000000000000000000000082018000000000000000000000000000000000000000000000000000000000008202200000000000000000000000000000000000000000000000000000000000820190000000000000000000000000000000000000000000000000000000000082023000000000000000000000000000000000000000000000000000000000008201a0000000000000000000000000000000000000000000000000000000000082024000000000000000000000000000000000000000000000000000000000008201b0000000000000000000000000000000000000000000000000000000000082025000000000000000000000000000000000000000000000000000000000008201c0000000000000000000000000000000000000000000000000000000000082026000000000000000000000000000000000000000000000000000000000008201d0000000000000000000000000000000000000000000000000000000000082027000000000000000000000000000000000000000000000000000000000008201e0000000000000000000000000000000000000000000000000000000000082028000000000000000000000000000000000000000000000000000000000008201f00000000000000000000000000000000000000000000000000000000000820290000000000000000000000000000000000000000000000000000000000082020000000000000000000000000000000000000000000000000000000000008202a0000000000000000000000000000000000000000000000000000000000082021000000000000000000000000000000000000000000000000000000000008202b0000000000000000000000000000000000000000000000000000000000082022000000000000000000000000000000000000000000000000000000000008202c0000000000000000000000000000000000000000000000000000000000082023000000000000000000000000000000000000000000000000000000000008202d0000000000000000000000000000000000000000000000000000000000082024000000000000000000000000000000000000000000000000000000000008202e0000000000000000000000000000000000000000000000000000000000082025000000000000000000000000000000000000000000000000000000000008202f00000000000000000000000000000000000000000000000000000000000820260000000000000000000000000000000000000000000000000000000000082030000000000000000000000000000000000000000000000000000000000008202700000000000000000000000000000000000000000000000000000000000820310000000000000000000000000000000000000000000000000000000000082028000000000000000000000000000000000000000000000000000000000008203200000000000000000000000000000000000000000000000000000000000820290000000000000000000000000000000000000000000000000000000000082033000000000000000000000000000000000000000000000000000000000008202a0000000000000000000000000000000000000000000000000000000000082034000000000000000000000000000000000000000000000000000000000008202b0000000000000000000000000000000000000000000000000000000000082035000000000000000000000000000000000000000000000000000000000008202c0000000000000000000000000000000000000000000000000000000000082036000000000000000000000000000000000000000000000000000000000008202d0000000000000000000000000000000000000000000000000000000000082037000000000000000000000000000000000000000000000000000000000008202e0000000000000000000000000000000000000000000000000000000000082038000000000000000000000000000000000000000000000000000000000008202f00000000000000000000000000000000000000000000000000000000000820390000000000000000000000000000000000000000000000000000000000082030000000000000000000000000000000000000000000000000000000000008203a0000000000000000000000000000000000000000000000000000000000082031000000000000000000000000000000000000000000000000000000000008203b0000000000000000000000000000000000000000000000000000000000082032000000000000000000000000000000000000000000000000000000000008203c0000000000000000000000000000000000000000000000000000000000082033000000000000000000000000000000000000000000000000000000000008203d0000000000000000000000000000000000000000000000000000000000082034000000000000000000000000000000000000000000000000000000000008203e0000000000000000000000000000000000000000000000000000000000082035000000000000000000000000000000000000000000000000000000000008203f00000000000000000000000000000000000000000000000000000000000820360000000000000000000000000000000000000000000000000000000000082040000000000000000000000000000000000000000000000000000000000008203700000000000000000000000000000000000000000000000000000000000820410000000000000000000000000000000000000000000000000000000000082038000000000000000000000000000000000000000000000000000000000008204200000000000000000000000000000000000000000000000000000000000820390000000000000000000000000000000000000000000000000000000000082043000000000000000000000000000000000000000000000000000000000008203a0000000000000000000000000000000000000000000000000000000000082044000000000000000000000000000000000000000000000000000000000008203b0000000000000000000000000000000000000000000000000000000000082045000000000000000000000000000000000000000000000000000000000008203c0000000000000000000000000000000000000000000000000000000000082046000000000000000000000000000000000000000000000000000000000008203d0000000000000000000000000000000000000000000000000000000000082047000000000000000000000000000000000000000000000000000000000008203e0000000000000000000000000000000000000000000000000000000000082048000000000000000000000000000000000000000000000000000000000008203f0000000000000000000000000000000000000000000000000000000000082049200000000000000000000000000000000000000000000000000000000000081700000000000000000000000000000000000000000000000000000000000008170100000000000000000000000000000000000000000000000000000000000817020000000000000000000000000000000000000000000000000000000000081703000000000000000000000000000000000000000000000000000000000008170400000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008170100000000000000000000000000000000000000000000000000000000000817020000000000000000000000000000000000000000000000000000000000081703000000000000000000000000000000000000000000000000000000000008170400000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817020000000000000000000000000000000000000000000000000000000000081703000000000000000000000000000000000000000000000000000000000008170400000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081703000000000000000000000000000000000000000000000000000000000008170400000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008170400000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008171500000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008171500000000000000000000000000000000000000000000000000000000000817160000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008171500000000000000000000000000000000000000000000000000000000000817160000000000000000000000000000000000000000000000000000000000081717000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008171500000000000000000000000000000000000000000000000000000000000817160000000000000000000000000000000000000000000000000000000000081717000000000000000000000000000000000000000000000000000000000008171800000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008171500000000000000000000000000000000000000000000000000000000000817160000000000000000000000000000000000000000000000000000000000081717000000000000000000000000000000000000000000000000000000000008171800000000000000000000000000000000000000000000000000000000000817190000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008172500000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008172500000000000000000000000000000000000000000000000000000000000817260000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008172500000000000000000000000000000000000000000000000000000000000817260000000000000000000000000000000000000000000000000000000000081727000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008172500000000000000000000000000000000000000000000000000000000000817260000000000000000000000000000000000000000000000000000000000081727000000000000000000000000000000000000000000000000000000000008172800000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008172500000000000000000000000000000000000000000000000000000000000817260000000000000000000000000000000000000000000000000000000000081727000000000000000000000000000000000000000000000000000000000008172800000000000000000000000000000000000000000000000000000000000817290000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008172c000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008172c000000000000000000000000000000000000000000000000000000000008172d000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008172c000000000000000000000000000000000000000000000000000000000008172d000000000000000000000000000000000000000000000000000000000008172e000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008172c000000000000000000000000000000000000000000000000000000000008172d000000000000000000000000000000000000000000000000000000000008172e000000000000000000000000000000000000000000000000000000000008172f000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008172c000000000000000000000000000000000000000000000000000000000008172d000000000000000000000000000000000000000000000000000000000008172e000000000000000000000000000000000000000000000000000000000008172f00000000000000000000000000000000000000000000000000000000000817300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000c100000000000000000000000000000000000000000000000000000000000000c100100000000000000000000000000000000000000000000000000000000000c100200000000000000000000000000000000000000000000000000000000000c100300000000000000000000000000000000000000000000000000000000000c100400000000000000000000000000000000000000000000000000000000000c100500000000000000000000000000000000000000000000000000000000000c100600000000000000000000000000000000000000000000000000000000000c100700000000000000000000000000000000000000000000000000000000000c100800000000000000000000000000000000000000000000000000000000000c100900000000000000000000000000000000000000000000000000000000000c100a00000000000000000000000000000000000000000000000000000000000c100b00000000000000000000000000000000000000000000000000000000000c100c00000000000000000000000000000000000000000000000000000000000c100d00000000000000000000000000000000000000000000000000000000000c100e00000000000000000000000000000000000000000000000000000000000c100f00000000000000000000000000000000000000000000000000000000000c101000000000000000000000000000000000000000000000000000000000000c101100000000000000000000000000000000000000000000000000000000000c101200000000000000000000000000000000000000000000000000000000000c101300000000000000000000000000000000000000000000000000000000000c101400000000000000000000000000000000000000000000000000000000000c101500000000000000000000000000000000000000000000000000000000000c101600000000000000000000000000000000000000000000000000000000000c101700000000000000000000000000000000000000000000000000000000000c101800000000000000000000000000000000000000000000000000000000000c101900000000000000000000000000000000000000000000000000000000000c101a00000000000000000000000000000000000000000000000000000000000c101b00000000000000000000000000000000000000000000000000000000000c101c00000000000000000000000000000000000000000000000000000000000c101d00000000000000000000000000000000000000000000000000000000000c101e00000000000000000000000000000000000000000000000000000000000c101f00000000000000000000000000000000000000000000000000000000000c102000000000000000000000000000000000000000000000000000000000000c102100000000000000000000000000000000000000000000000000000000000c102200000000000000000000000000000000000000000000000000000000000c102300000000000000000000000000000000000000000000000000000000000c102400000000000000000000000000000000000000000000000000000000000c102500000000000000000000000000000000000000000000000000000000000c102600000000000000000000000000000000000000000000000000000000000c102700000000000000000000000000000000000000000000000000000000000c102800000000000000000000000000000000000000000000000000000000000c102900000000000000000000000000000000000000000000000000000000000c102a00000000000000000000000000000000000000000000000000000000000c102b00000000000000000000000000000000000000000000000000000000000c102c00000000000000000000000000000000000000000000000000000000000c102d00000000000000000000000000000000000000000000000000000000000c102e00000000000000000000000000000000000000000000000000000000000c102f00000000000000000000000000000000000000000000000000000000000c103000000000000000000000000000000000000000000000000000000000000c103100000000000000000000000000000000000000000000000000000000000c103200000000000000000000000000000000000000000000000000000000000c103300000000000000000000000000000000000000000000000000000000000c103400000000000000000000000000000000000000000000000000000000000c103500000000000000000000000000000000000000000000000000000000000c103600000000000000000000000000000000000000000000000000000000000c103700000000000000000000000000000000000000000000000000000000000c103800000000000000000000000000000000000000000000000000000000000c103900000000000000000000000000000000000000000000000000000000000c103a00000000000000000000000000000000000000000000000000000000000c103b00000000000000000000000000000000000000000000000000000000000c103c00000000000000000000000000000000000000000000000000000000000c103d00000000000000000000000000000000000000000000000000000000000c103e00000000000000000000000000000000000000000000000000000000000c103f4000000000000000000000000000000000000000000000000000000000000c000100000000000000000000000000000000000000000000000000000000000c110000000000000000000000000000000000000000000000000000000000000c110100000000000000000000000000000000000000000000000000000000000c110200000000000000000000000000000000000000000000000000000000000c110300000000000000000000000000000000000000000000000000000000000c110400000000000000000000000000000000000000000000000000000000000c110500000000000000000000000000000000000000000000000000000000000c110600000000000000000000000000000000000000000000000000000000000c110700000000000000000000000000000000000000000000000000000000000c110800000000000000000000000000000000000000000000000000000000000c110900000000000000000000000000000000000000000000000000000000000c110a00000000000000000000000000000000000000000000000000000000000c110b00000000000000000000000000000000000000000000000000000000000c110c00000000000000000000000000000000000000000000000000000000000c110d00000000000000000000000000000000000000000000000000000000000c110e00000000000000000000000000000000000000000000000000000000000c110f00000000000000000000000000000000000000000000000000000000000c111000000000000000000000000000000000000000000000000000000000000c111100000000000000000000000000000000000000000000000000000000000c111200000000000000000000000000000000000000000000000000000000000c111300000000000000000000000000000000000000000000000000000000000c111400000000000000000000000000000000000000000000000000000000000c111500000000000000000000000000000000000000000000000000000000000c111600000000000000000000000000000000000000000000000000000000000c111700000000000000000000000000000000000000000000000000000000000c111800000000000000000000000000000000000000000000000000000000000c111900000000000000000000000000000000000000000000000000000000000c111a00000000000000000000000000000000000000000000000000000000000c111b00000000000000000000000000000000000000000000000000000000000c111c00000000000000000000000000000000000000000000000000000000000c111d00000000000000000000000000000000000000000000000000000000000c111e00000000000000000000000000000000000000000000000000000000000c111f00000000000000000000000000000000000000000000000000000000000c112000000000000000000000000000000000000000000000000000000000000c112100000000000000000000000000000000000000000000000000000000000c112200000000000000000000000000000000000000000000000000000000000c112300000000000000000000000000000000000000000000000000000000000c112400000000000000000000000000000000000000000000000000000000000c112500000000000000000000000000000000000000000000000000000000000c112600000000000000000000000000000000000000000000000000000000000c112700000000000000000000000000000000000000000000000000000000000c112800000000000000000000000000000000000000000000000000000000000c112900000000000000000000000000000000000000000000000000000000000c112a00000000000000000000000000000000000000000000000000000000000c112b00000000000000000000000000000000000000000000000000000000000c112c00000000000000000000000000000000000000000000000000000000000c112d00000000000000000000000000000000000000000000000000000000000c112e00000000000000000000000000000000000000000000000000000000000c112f00000000000000000000000000000000000000000000000000000000000c113000000000000000000000000000000000000000000000000000000000000c113100000000000000000000000000000000000000000000000000000000000c113200000000000000000000000000000000000000000000000000000000000c113300000000000000000000000000000000000000000000000000000000000c113400000000000000000000000000000000000000000000000000000000000c113500000000000000000000000000000000000000000000000000000000000c113600000000000000000000000000000000000000000000000000000000000c113700000000000000000000000000000000000000000000000000000000000c113800000000000000000000000000000000000000000000000000000000000c113900000000000000000000000000000000000000000000000000000000000c113a00000000000000000000000000000000000000000000000000000000000c113b00000000000000000000000000000000000000000000000000000000000c113c00000000000000000000000000000000000000000000000000000000000c113d00000000000000000000000000000000000000000000000000000000000c113e0800f8029be42ec3f25204907ca981fb71e5b357093eb5db10fc01ca98a4e4154c0030e13d351a5bf1d5a040e82a163ca57017f39162693f85c571e441e36d702d00a550ae0f39f977d9473d6de1be3232fc68ed0c4a601d53542148695102cfc9005580bc65e4bff9c8fffa64db02c0fa6af14d9d26fd962f4c5904cbd3ddec2500758c4a0d43dfec788b2f580877c4f473adec8f168ea24424f2600e4eb4916f00342602bf90d10f8ca8e582a894dcc4c02bb89fe458532e0c632b53bae54b4d00ca43ab78ab834337e9964d84a0674c9adabdca140539c5a6bc96e0ba9a51f6004ffbfd91be292a7c6a0e255e50caa156ac2d628b40ad2128c4ab63a92d8a1c4000000000000000000000000000000000000000000000000000000000000c200000000000000000000000000000000000000000000000000000000000000c200a00000000000000000000000000000000000000000000000000000000000c200100000000000000000000000000000000000000000000000000000000000c200b00000000000000000000000000000000000000000000000000000000000c200200000000000000000000000000000000000000000000000000000000000c200c00000000000000000000000000000000000000000000000000000000000c200300000000000000000000000000000000000000000000000000000000000c200d00000000000000000000000000000000000000000000000000000000000c200400000000000000000000000000000000000000000000000000000000000c200e00000000000000000000000000000000000000000000000000000000000c200500000000000000000000000000000000000000000000000000000000000c200f00000000000000000000000000000000000000000000000000000000000c200600000000000000000000000000000000000000000000000000000000000c201000000000000000000000000000000000000000000000000000000000000c200700000000000000000000000000000000000000000000000000000000000c201100000000000000000000000000000000000000000000000000000000000c200800000000000000000000000000000000000000000000000000000000000c201200000000000000000000000000000000000000000000000000000000000c200900000000000000000000000000000000000000000000000000000000000c201300000000000000000000000000000000000000000000000000000000000c200a00000000000000000000000000000000000000000000000000000000000c201400000000000000000000000000000000000000000000000000000000000c200b00000000000000000000000000000000000000000000000000000000000c201500000000000000000000000000000000000000000000000000000000000c200c00000000000000000000000000000000000000000000000000000000000c201600000000000000000000000000000000000000000000000000000000000c200d00000000000000000000000000000000000000000000000000000000000c201700000000000000000000000000000000000000000000000000000000000c200e00000000000000000000000000000000000000000000000000000000000c201800000000000000000000000000000000000000000000000000000000000c200f00000000000000000000000000000000000000000000000000000000000c201900000000000000000000000000000000000000000000000000000000000c201000000000000000000000000000000000000000000000000000000000000c201a00000000000000000000000000000000000000000000000000000000000c201100000000000000000000000000000000000000000000000000000000000c201b00000000000000000000000000000000000000000000000000000000000c201200000000000000000000000000000000000000000000000000000000000c201c00000000000000000000000000000000000000000000000000000000000c201300000000000000000000000000000000000000000000000000000000000c201d00000000000000000000000000000000000000000000000000000000000c201400000000000000000000000000000000000000000000000000000000000c201e00000000000000000000000000000000000000000000000000000000000c201500000000000000000000000000000000000000000000000000000000000c201f00000000000000000000000000000000000000000000000000000000000c201600000000000000000000000000000000000000000000000000000000000c202000000000000000000000000000000000000000000000000000000000000c201700000000000000000000000000000000000000000000000000000000000c202100000000000000000000000000000000000000000000000000000000000c201800000000000000000000000000000000000000000000000000000000000c202200000000000000000000000000000000000000000000000000000000000c201900000000000000000000000000000000000000000000000000000000000c202300000000000000000000000000000000000000000000000000000000000c201a00000000000000000000000000000000000000000000000000000000000c202400000000000000000000000000000000000000000000000000000000000c201b00000000000000000000000000000000000000000000000000000000000c202500000000000000000000000000000000000000000000000000000000000c201c00000000000000000000000000000000000000000000000000000000000c202600000000000000000000000000000000000000000000000000000000000c201d00000000000000000000000000000000000000000000000000000000000c202700000000000000000000000000000000000000000000000000000000000c201e00000000000000000000000000000000000000000000000000000000000c202800000000000000000000000000000000000000000000000000000000000c201f00000000000000000000000000000000000000000000000000000000000c202900000000000000000000000000000000000000000000000000000000000c202000000000000000000000000000000000000000000000000000000000000c202a00000000000000000000000000000000000000000000000000000000000c202100000000000000000000000000000000000000000000000000000000000c202b00000000000000000000000000000000000000000000000000000000000c202200000000000000000000000000000000000000000000000000000000000c202c00000000000000000000000000000000000000000000000000000000000c202300000000000000000000000000000000000000000000000000000000000c202d00000000000000000000000000000000000000000000000000000000000c202400000000000000000000000000000000000000000000000000000000000c202e00000000000000000000000000000000000000000000000000000000000c202500000000000000000000000000000000000000000000000000000000000c202f00000000000000000000000000000000000000000000000000000000000c202600000000000000000000000000000000000000000000000000000000000c203000000000000000000000000000000000000000000000000000000000000c202700000000000000000000000000000000000000000000000000000000000c203100000000000000000000000000000000000000000000000000000000000c202800000000000000000000000000000000000000000000000000000000000c203200000000000000000000000000000000000000000000000000000000000c202900000000000000000000000000000000000000000000000000000000000c203300000000000000000000000000000000000000000000000000000000000c202a00000000000000000000000000000000000000000000000000000000000c203400000000000000000000000000000000000000000000000000000000000c202b00000000000000000000000000000000000000000000000000000000000c203500000000000000000000000000000000000000000000000000000000000c202c00000000000000000000000000000000000000000000000000000000000c203600000000000000000000000000000000000000000000000000000000000c202d00000000000000000000000000000000000000000000000000000000000c203700000000000000000000000000000000000000000000000000000000000c202e00000000000000000000000000000000000000000000000000000000000c203800000000000000000000000000000000000000000000000000000000000c202f00000000000000000000000000000000000000000000000000000000000c203900000000000000000000000000000000000000000000000000000000000c203000000000000000000000000000000000000000000000000000000000000c203a00000000000000000000000000000000000000000000000000000000000c203100000000000000000000000000000000000000000000000000000000000c203b00000000000000000000000000000000000000000000000000000000000c203200000000000000000000000000000000000000000000000000000000000c203c00000000000000000000000000000000000000000000000000000000000c203300000000000000000000000000000000000000000000000000000000000c203d00000000000000000000000000000000000000000000000000000000000c203400000000000000000000000000000000000000000000000000000000000c203e00000000000000000000000000000000000000000000000000000000000c203500000000000000000000000000000000000000000000000000000000000c203f00000000000000000000000000000000000000000000000000000000000c203600000000000000000000000000000000000000000000000000000000000c204000000000000000000000000000000000000000000000000000000000000c203700000000000000000000000000000000000000000000000000000000000c204100000000000000000000000000000000000000000000000000000000000c203800000000000000000000000000000000000000000000000000000000000c204200000000000000000000000000000000000000000000000000000000000c203900000000000000000000000000000000000000000000000000000000000c204300000000000000000000000000000000000000000000000000000000000c203a00000000000000000000000000000000000000000000000000000000000c204400000000000000000000000000000000000000000000000000000000000c203b00000000000000000000000000000000000000000000000000000000000c204500000000000000000000000000000000000000000000000000000000000c203c00000000000000000000000000000000000000000000000000000000000c204600000000000000000000000000000000000000000000000000000000000c203d00000000000000000000000000000000000000000000000000000000000c204700000000000000000000000000000000000000000000000000000000000c203e00000000000000000000000000000000000000000000000000000000000c204800000000000000000000000000000000000000000000000000000000000c203f00000000000000000000000000000000000000000000000000000000000c20492000000000000000000000000000000000000000000000000000000000000c170000000000000000000000000000000000000000000000000000000000000c170100000000000000000000000000000000000000000000000000000000000c170200000000000000000000000000000000000000000000000000000000000c170300000000000000000000000000000000000000000000000000000000000c170400000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c170100000000000000000000000000000000000000000000000000000000000c170200000000000000000000000000000000000000000000000000000000000c170300000000000000000000000000000000000000000000000000000000000c170400000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c170200000000000000000000000000000000000000000000000000000000000c170300000000000000000000000000000000000000000000000000000000000c170400000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c170300000000000000000000000000000000000000000000000000000000000c170400000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c170400000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c172c00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c172c00000000000000000000000000000000000000000000000000000000000c172d00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c172c00000000000000000000000000000000000000000000000000000000000c172d00000000000000000000000000000000000000000000000000000000000c172e00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c172c00000000000000000000000000000000000000000000000000000000000c172d00000000000000000000000000000000000000000000000000000000000c172e00000000000000000000000000000000000000000000000000000000000c172f00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c172c00000000000000000000000000000000000000000000000000000000000c172d00000000000000000000000000000000000000000000000000000000000c172e00000000000000000000000000000000000000000000000000000000000c172f00000000000000000000000000000000000000000000000000000000000c1730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000010100100000000000000000000000000000000000000000000000000000000001010020000000000000000000000000000000000000000000000000000000000101003000000000000000000000000000000000000000000000000000000000010100400000000000000000000000000000000000000000000000000000000001010050000000000000000000000000000000000000000000000000000000000101006000000000000000000000000000000000000000000000000000000000010100700000000000000000000000000000000000000000000000000000000001010080000000000000000000000000000000000000000000000000000000000101009000000000000000000000000000000000000000000000000000000000010100a000000000000000000000000000000000000000000000000000000000010100b000000000000000000000000000000000000000000000000000000000010100c000000000000000000000000000000000000000000000000000000000010100d000000000000000000000000000000000000000000000000000000000010100e000000000000000000000000000000000000000000000000000000000010100f0000000000000000000000000000000000000000000000000000000000101010000000000000000000000000000000000000000000000000000000000010101100000000000000000000000000000000000000000000000000000000001010120000000000000000000000000000000000000000000000000000000000101013000000000000000000000000000000000000000000000000000000000010101400000000000000000000000000000000000000000000000000000000001010150000000000000000000000000000000000000000000000000000000000101016000000000000000000000000000000000000000000000000000000000010101700000000000000000000000000000000000000000000000000000000001010180000000000000000000000000000000000000000000000000000000000101019000000000000000000000000000000000000000000000000000000000010101a000000000000000000000000000000000000000000000000000000000010101b000000000000000000000000000000000000000000000000000000000010101c000000000000000000000000000000000000000000000000000000000010101d000000000000000000000000000000000000000000000000000000000010101e000000000000000000000000000000000000000000000000000000000010101f0000000000000000000000000000000000000000000000000000000000101020000000000000000000000000000000000000000000000000000000000010102100000000000000000000000000000000000000000000000000000000001010220000000000000000000000000000000000000000000000000000000000101023000000000000000000000000000000000000000000000000000000000010102400000000000000000000000000000000000000000000000000000000001010250000000000000000000000000000000000000000000000000000000000101026000000000000000000000000000000000000000000000000000000000010102700000000000000000000000000000000000000000000000000000000001010280000000000000000000000000000000000000000000000000000000000101029000000000000000000000000000000000000000000000000000000000010102a000000000000000000000000000000000000000000000000000000000010102b000000000000000000000000000000000000000000000000000000000010102c000000000000000000000000000000000000000000000000000000000010102d000000000000000000000000000000000000000000000000000000000010102e000000000000000000000000000000000000000000000000000000000010102f0000000000000000000000000000000000000000000000000000000000101030000000000000000000000000000000000000000000000000000000000010103100000000000000000000000000000000000000000000000000000000001010320000000000000000000000000000000000000000000000000000000000101033000000000000000000000000000000000000000000000000000000000010103400000000000000000000000000000000000000000000000000000000001010350000000000000000000000000000000000000000000000000000000000101036000000000000000000000000000000000000000000000000000000000010103700000000000000000000000000000000000000000000000000000000001010380000000000000000000000000000000000000000000000000000000000101039000000000000000000000000000000000000000000000000000000000010103a000000000000000000000000000000000000000000000000000000000010103b000000000000000000000000000000000000000000000000000000000010103c000000000000000000000000000000000000000000000000000000000010103d000000000000000000000000000000000000000000000000000000000010103e000000000000000000000000000000000000000000000000000000000010103f4000000000000000000000000000000000000000000000000000000000001000010000000000000000000000000000000000000000000000000000000000101100000000000000000000000000000000000000000000000000000000000010110100000000000000000000000000000000000000000000000000000000001011020000000000000000000000000000000000000000000000000000000000101103000000000000000000000000000000000000000000000000000000000010110400000000000000000000000000000000000000000000000000000000001011050000000000000000000000000000000000000000000000000000000000101106000000000000000000000000000000000000000000000000000000000010110700000000000000000000000000000000000000000000000000000000001011080000000000000000000000000000000000000000000000000000000000101109000000000000000000000000000000000000000000000000000000000010110a000000000000000000000000000000000000000000000000000000000010110b000000000000000000000000000000000000000000000000000000000010110c000000000000000000000000000000000000000000000000000000000010110d000000000000000000000000000000000000000000000000000000000010110e000000000000000000000000000000000000000000000000000000000010110f0000000000000000000000000000000000000000000000000000000000101110000000000000000000000000000000000000000000000000000000000010111100000000000000000000000000000000000000000000000000000000001011120000000000000000000000000000000000000000000000000000000000101113000000000000000000000000000000000000000000000000000000000010111400000000000000000000000000000000000000000000000000000000001011150000000000000000000000000000000000000000000000000000000000101116000000000000000000000000000000000000000000000000000000000010111700000000000000000000000000000000000000000000000000000000001011180000000000000000000000000000000000000000000000000000000000101119000000000000000000000000000000000000000000000000000000000010111a000000000000000000000000000000000000000000000000000000000010111b000000000000000000000000000000000000000000000000000000000010111c000000000000000000000000000000000000000000000000000000000010111d000000000000000000000000000000000000000000000000000000000010111e000000000000000000000000000000000000000000000000000000000010111f0000000000000000000000000000000000000000000000000000000000101120000000000000000000000000000000000000000000000000000000000010112100000000000000000000000000000000000000000000000000000000001011220000000000000000000000000000000000000000000000000000000000101123000000000000000000000000000000000000000000000000000000000010112400000000000000000000000000000000000000000000000000000000001011250000000000000000000000000000000000000000000000000000000000101126000000000000000000000000000000000000000000000000000000000010112700000000000000000000000000000000000000000000000000000000001011280000000000000000000000000000000000000000000000000000000000101129000000000000000000000000000000000000000000000000000000000010112a000000000000000000000000000000000000000000000000000000000010112b000000000000000000000000000000000000000000000000000000000010112c000000000000000000000000000000000000000000000000000000000010112d000000000000000000000000000000000000000000000000000000000010112e000000000000000000000000000000000000000000000000000000000010112f0000000000000000000000000000000000000000000000000000000000101130000000000000000000000000000000000000000000000000000000000010113100000000000000000000000000000000000000000000000000000000001011320000000000000000000000000000000000000000000000000000000000101133000000000000000000000000000000000000000000000000000000000010113400000000000000000000000000000000000000000000000000000000001011350000000000000000000000000000000000000000000000000000000000101136000000000000000000000000000000000000000000000000000000000010113700000000000000000000000000000000000000000000000000000000001011380000000000000000000000000000000000000000000000000000000000101139000000000000000000000000000000000000000000000000000000000010113a000000000000000000000000000000000000000000000000000000000010113b000000000000000000000000000000000000000000000000000000000010113c000000000000000000000000000000000000000000000000000000000010113d000000000000000000000000000000000000000000000000000000000010113e080099145b6c0d32753835121f8b271186d01236948a4622ce78a98347fcfc98390085277a27c6acbd5ffc4c19cd65fc30056999e9bec36998f753132db0ff8e2300f3cf77a7261759ebd5f4149f6ad56746f4499cfcd4adf27a1d373f77da64d5009bc6e0e994a23cde8c95b90c1acc1b4a480c6599d1df2c3f9f6e76f3d1aff200d7a1c4a2700dacaaf07f1f0ff33837bdbabcf0b9ace17efabe0761708c4bb900dbeb8e96d14f21e57d5786b6d6ae7e5ddb1bb35935c0fb246d4bdbca62e02c00fbf12b5e0df6223b801088798e4e04d2a92ffe9a11639b7f0ce314e3412a8000d796e0724de03b796ba77069fcd6cf921e566f3aed15eb3e77258add74e9ff400000000000000000000000000000000000000000000000000000000000102000000000000000000000000000000000000000000000000000000000000010200a0000000000000000000000000000000000000000000000000000000000102001000000000000000000000000000000000000000000000000000000000010200b0000000000000000000000000000000000000000000000000000000000102002000000000000000000000000000000000000000000000000000000000010200c0000000000000000000000000000000000000000000000000000000000102003000000000000000000000000000000000000000000000000000000000010200d0000000000000000000000000000000000000000000000000000000000102004000000000000000000000000000000000000000000000000000000000010200e0000000000000000000000000000000000000000000000000000000000102005000000000000000000000000000000000000000000000000000000000010200f00000000000000000000000000000000000000000000000000000000001020060000000000000000000000000000000000000000000000000000000000102010000000000000000000000000000000000000000000000000000000000010200700000000000000000000000000000000000000000000000000000000001020110000000000000000000000000000000000000000000000000000000000102008000000000000000000000000000000000000000000000000000000000010201200000000000000000000000000000000000000000000000000000000001020090000000000000000000000000000000000000000000000000000000000102013000000000000000000000000000000000000000000000000000000000010200a0000000000000000000000000000000000000000000000000000000000102014000000000000000000000000000000000000000000000000000000000010200b0000000000000000000000000000000000000000000000000000000000102015000000000000000000000000000000000000000000000000000000000010200c0000000000000000000000000000000000000000000000000000000000102016000000000000000000000000000000000000000000000000000000000010200d0000000000000000000000000000000000000000000000000000000000102017000000000000000000000000000000000000000000000000000000000010200e0000000000000000000000000000000000000000000000000000000000102018000000000000000000000000000000000000000000000000000000000010200f00000000000000000000000000000000000000000000000000000000001020190000000000000000000000000000000000000000000000000000000000102010000000000000000000000000000000000000000000000000000000000010201a0000000000000000000000000000000000000000000000000000000000102011000000000000000000000000000000000000000000000000000000000010201b0000000000000000000000000000000000000000000000000000000000102012000000000000000000000000000000000000000000000000000000000010201c0000000000000000000000000000000000000000000000000000000000102013000000000000000000000000000000000000000000000000000000000010201d0000000000000000000000000000000000000000000000000000000000102014000000000000000000000000000000000000000000000000000000000010201e0000000000000000000000000000000000000000000000000000000000102015000000000000000000000000000000000000000000000000000000000010201f00000000000000000000000000000000000000000000000000000000001020160000000000000000000000000000000000000000000000000000000000102020000000000000000000000000000000000000000000000000000000000010201700000000000000000000000000000000000000000000000000000000001020210000000000000000000000000000000000000000000000000000000000102018000000000000000000000000000000000000000000000000000000000010202200000000000000000000000000000000000000000000000000000000001020190000000000000000000000000000000000000000000000000000000000102023000000000000000000000000000000000000000000000000000000000010201a0000000000000000000000000000000000000000000000000000000000102024000000000000000000000000000000000000000000000000000000000010201b0000000000000000000000000000000000000000000000000000000000102025000000000000000000000000000000000000000000000000000000000010201c0000000000000000000000000000000000000000000000000000000000102026000000000000000000000000000000000000000000000000000000000010201d0000000000000000000000000000000000000000000000000000000000102027000000000000000000000000000000000000000000000000000000000010201e0000000000000000000000000000000000000000000000000000000000102028000000000000000000000000000000000000000000000000000000000010201f00000000000000000000000000000000000000000000000000000000001020290000000000000000000000000000000000000000000000000000000000102020000000000000000000000000000000000000000000000000000000000010202a0000000000000000000000000000000000000000000000000000000000102021000000000000000000000000000000000000000000000000000000000010202b0000000000000000000000000000000000000000000000000000000000102022000000000000000000000000000000000000000000000000000000000010202c0000000000000000000000000000000000000000000000000000000000102023000000000000000000000000000000000000000000000000000000000010202d0000000000000000000000000000000000000000000000000000000000102024000000000000000000000000000000000000000000000000000000000010202e0000000000000000000000000000000000000000000000000000000000102025000000000000000000000000000000000000000000000000000000000010202f00000000000000000000000000000000000000000000000000000000001020260000000000000000000000000000000000000000000000000000000000102030000000000000000000000000000000000000000000000000000000000010202700000000000000000000000000000000000000000000000000000000001020310000000000000000000000000000000000000000000000000000000000102028000000000000000000000000000000000000000000000000000000000010203200000000000000000000000000000000000000000000000000000000001020290000000000000000000000000000000000000000000000000000000000102033000000000000000000000000000000000000000000000000000000000010202a0000000000000000000000000000000000000000000000000000000000102034000000000000000000000000000000000000000000000000000000000010202b0000000000000000000000000000000000000000000000000000000000102035000000000000000000000000000000000000000000000000000000000010202c0000000000000000000000000000000000000000000000000000000000102036000000000000000000000000000000000000000000000000000000000010202d0000000000000000000000000000000000000000000000000000000000102037000000000000000000000000000000000000000000000000000000000010202e0000000000000000000000000000000000000000000000000000000000102038000000000000000000000000000000000000000000000000000000000010202f00000000000000000000000000000000000000000000000000000000001020390000000000000000000000000000000000000000000000000000000000102030000000000000000000000000000000000000000000000000000000000010203a0000000000000000000000000000000000000000000000000000000000102031000000000000000000000000000000000000000000000000000000000010203b0000000000000000000000000000000000000000000000000000000000102032000000000000000000000000000000000000000000000000000000000010203c0000000000000000000000000000000000000000000000000000000000102033000000000000000000000000000000000000000000000000000000000010203d0000000000000000000000000000000000000000000000000000000000102034000000000000000000000000000000000000000000000000000000000010203e0000000000000000000000000000000000000000000000000000000000102035000000000000000000000000000000000000000000000000000000000010203f00000000000000000000000000000000000000000000000000000000001020360000000000000000000000000000000000000000000000000000000000102040000000000000000000000000000000000000000000000000000000000010203700000000000000000000000000000000000000000000000000000000001020410000000000000000000000000000000000000000000000000000000000102038000000000000000000000000000000000000000000000000000000000010204200000000000000000000000000000000000000000000000000000000001020390000000000000000000000000000000000000000000000000000000000102043000000000000000000000000000000000000000000000000000000000010203a0000000000000000000000000000000000000000000000000000000000102044000000000000000000000000000000000000000000000000000000000010203b0000000000000000000000000000000000000000000000000000000000102045000000000000000000000000000000000000000000000000000000000010203c0000000000000000000000000000000000000000000000000000000000102046000000000000000000000000000000000000000000000000000000000010203d0000000000000000000000000000000000000000000000000000000000102047000000000000000000000000000000000000000000000000000000000010203e0000000000000000000000000000000000000000000000000000000000102048000000000000000000000000000000000000000000000000000000000010203f0000000000000000000000000000000000000000000000000000000000102049200000000000000000000000000000000000000000000000000000000000101700000000000000000000000000000000000000000000000000000000000010170100000000000000000000000000000000000000000000000000000000001017020000000000000000000000000000000000000000000000000000000000101703000000000000000000000000000000000000000000000000000000000010170400000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010170100000000000000000000000000000000000000000000000000000000001017020000000000000000000000000000000000000000000000000000000000101703000000000000000000000000000000000000000000000000000000000010170400000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017020000000000000000000000000000000000000000000000000000000000101703000000000000000000000000000000000000000000000000000000000010170400000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101703000000000000000000000000000000000000000000000000000000000010170400000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010170400000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010171500000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010171500000000000000000000000000000000000000000000000000000000001017160000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010171500000000000000000000000000000000000000000000000000000000001017160000000000000000000000000000000000000000000000000000000000101717000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010171500000000000000000000000000000000000000000000000000000000001017160000000000000000000000000000000000000000000000000000000000101717000000000000000000000000000000000000000000000000000000000010171800000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010171500000000000000000000000000000000000000000000000000000000001017160000000000000000000000000000000000000000000000000000000000101717000000000000000000000000000000000000000000000000000000000010171800000000000000000000000000000000000000000000000000000000001017190000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010172500000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010172500000000000000000000000000000000000000000000000000000000001017260000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010172500000000000000000000000000000000000000000000000000000000001017260000000000000000000000000000000000000000000000000000000000101727000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010172500000000000000000000000000000000000000000000000000000000001017260000000000000000000000000000000000000000000000000000000000101727000000000000000000000000000000000000000000000000000000000010172800000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010172500000000000000000000000000000000000000000000000000000000001017260000000000000000000000000000000000000000000000000000000000101727000000000000000000000000000000000000000000000000000000000010172800000000000000000000000000000000000000000000000000000000001017290000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010172c000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010172c000000000000000000000000000000000000000000000000000000000010172d000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010172c000000000000000000000000000000000000000000000000000000000010172d000000000000000000000000000000000000000000000000000000000010172e000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010172c000000000000000000000000000000000000000000000000000000000010172d000000000000000000000000000000000000000000000000000000000010172e000000000000000000000000000000000000000000000000000000000010172f000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010172c000000000000000000000000000000000000000000000000000000000010172d000000000000000000000000000000000000000000000000000000000010172e000000000000000000000000000000000000000000000000000000000010172f0000000000000000000000000000000000000000000000000000000000101730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "archive": "0x155210fd3188716162b2f6c650aa5874466280eb49e68f21f392d746919f6e1b", + "body": "0x00000004002ee9a34a76ae91c500b535381d94cd682504bb86d504c62a5f8d11dd24679ee70000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000041000000000000000000000000000000000000000000000000000000000000004100100000000000000000000000000000000000000000000000000000000000410020000000000000000000000000000000000000000000000000000000000041003000000000000000000000000000000000000000000000000000000000004100400000000000000000000000000000000000000000000000000000000000410050000000000000000000000000000000000000000000000000000000000041006000000000000000000000000000000000000000000000000000000000004100700000000000000000000000000000000000000000000000000000000000410080000000000000000000000000000000000000000000000000000000000041009000000000000000000000000000000000000000000000000000000000004100a000000000000000000000000000000000000000000000000000000000004100b000000000000000000000000000000000000000000000000000000000004100c000000000000000000000000000000000000000000000000000000000004100d000000000000000000000000000000000000000000000000000000000004100e000000000000000000000000000000000000000000000000000000000004100f0000000000000000000000000000000000000000000000000000000000041010000000000000000000000000000000000000000000000000000000000004101100000000000000000000000000000000000000000000000000000000000410120000000000000000000000000000000000000000000000000000000000041013000000000000000000000000000000000000000000000000000000000004101400000000000000000000000000000000000000000000000000000000000410150000000000000000000000000000000000000000000000000000000000041016000000000000000000000000000000000000000000000000000000000004101700000000000000000000000000000000000000000000000000000000000410180000000000000000000000000000000000000000000000000000000000041019000000000000000000000000000000000000000000000000000000000004101a000000000000000000000000000000000000000000000000000000000004101b000000000000000000000000000000000000000000000000000000000004101c000000000000000000000000000000000000000000000000000000000004101d000000000000000000000000000000000000000000000000000000000004101e000000000000000000000000000000000000000000000000000000000004101f0000000000000000000000000000000000000000000000000000000000041020000000000000000000000000000000000000000000000000000000000004102100000000000000000000000000000000000000000000000000000000000410220000000000000000000000000000000000000000000000000000000000041023000000000000000000000000000000000000000000000000000000000004102400000000000000000000000000000000000000000000000000000000000410250000000000000000000000000000000000000000000000000000000000041026000000000000000000000000000000000000000000000000000000000004102700000000000000000000000000000000000000000000000000000000000410280000000000000000000000000000000000000000000000000000000000041029000000000000000000000000000000000000000000000000000000000004102a000000000000000000000000000000000000000000000000000000000004102b000000000000000000000000000000000000000000000000000000000004102c000000000000000000000000000000000000000000000000000000000004102d000000000000000000000000000000000000000000000000000000000004102e000000000000000000000000000000000000000000000000000000000004102f0000000000000000000000000000000000000000000000000000000000041030000000000000000000000000000000000000000000000000000000000004103100000000000000000000000000000000000000000000000000000000000410320000000000000000000000000000000000000000000000000000000000041033000000000000000000000000000000000000000000000000000000000004103400000000000000000000000000000000000000000000000000000000000410350000000000000000000000000000000000000000000000000000000000041036000000000000000000000000000000000000000000000000000000000004103700000000000000000000000000000000000000000000000000000000000410380000000000000000000000000000000000000000000000000000000000041039000000000000000000000000000000000000000000000000000000000004103a000000000000000000000000000000000000000000000000000000000004103b000000000000000000000000000000000000000000000000000000000004103c000000000000000000000000000000000000000000000000000000000004103d000000000000000000000000000000000000000000000000000000000004103e000000000000000000000000000000000000000000000000000000000004103f4000000000000000000000000000000000000000000000000000000000000400010000000000000000000000000000000000000000000000000000000000041100000000000000000000000000000000000000000000000000000000000004110100000000000000000000000000000000000000000000000000000000000411020000000000000000000000000000000000000000000000000000000000041103000000000000000000000000000000000000000000000000000000000004110400000000000000000000000000000000000000000000000000000000000411050000000000000000000000000000000000000000000000000000000000041106000000000000000000000000000000000000000000000000000000000004110700000000000000000000000000000000000000000000000000000000000411080000000000000000000000000000000000000000000000000000000000041109000000000000000000000000000000000000000000000000000000000004110a000000000000000000000000000000000000000000000000000000000004110b000000000000000000000000000000000000000000000000000000000004110c000000000000000000000000000000000000000000000000000000000004110d000000000000000000000000000000000000000000000000000000000004110e000000000000000000000000000000000000000000000000000000000004110f0000000000000000000000000000000000000000000000000000000000041110000000000000000000000000000000000000000000000000000000000004111100000000000000000000000000000000000000000000000000000000000411120000000000000000000000000000000000000000000000000000000000041113000000000000000000000000000000000000000000000000000000000004111400000000000000000000000000000000000000000000000000000000000411150000000000000000000000000000000000000000000000000000000000041116000000000000000000000000000000000000000000000000000000000004111700000000000000000000000000000000000000000000000000000000000411180000000000000000000000000000000000000000000000000000000000041119000000000000000000000000000000000000000000000000000000000004111a000000000000000000000000000000000000000000000000000000000004111b000000000000000000000000000000000000000000000000000000000004111c000000000000000000000000000000000000000000000000000000000004111d000000000000000000000000000000000000000000000000000000000004111e000000000000000000000000000000000000000000000000000000000004111f0000000000000000000000000000000000000000000000000000000000041120000000000000000000000000000000000000000000000000000000000004112100000000000000000000000000000000000000000000000000000000000411220000000000000000000000000000000000000000000000000000000000041123000000000000000000000000000000000000000000000000000000000004112400000000000000000000000000000000000000000000000000000000000411250000000000000000000000000000000000000000000000000000000000041126000000000000000000000000000000000000000000000000000000000004112700000000000000000000000000000000000000000000000000000000000411280000000000000000000000000000000000000000000000000000000000041129000000000000000000000000000000000000000000000000000000000004112a000000000000000000000000000000000000000000000000000000000004112b000000000000000000000000000000000000000000000000000000000004112c000000000000000000000000000000000000000000000000000000000004112d000000000000000000000000000000000000000000000000000000000004112e000000000000000000000000000000000000000000000000000000000004112f0000000000000000000000000000000000000000000000000000000000041130000000000000000000000000000000000000000000000000000000000004113100000000000000000000000000000000000000000000000000000000000411320000000000000000000000000000000000000000000000000000000000041133000000000000000000000000000000000000000000000000000000000004113400000000000000000000000000000000000000000000000000000000000411350000000000000000000000000000000000000000000000000000000000041136000000000000000000000000000000000000000000000000000000000004113700000000000000000000000000000000000000000000000000000000000411380000000000000000000000000000000000000000000000000000000000041139000000000000000000000000000000000000000000000000000000000004113a000000000000000000000000000000000000000000000000000000000004113b000000000000000000000000000000000000000000000000000000000004113c000000000000000000000000000000000000000000000000000000000004113d000000000000000000000000000000000000000000000000000000000004113e080097a6ec570e9b8e257647c9c74c5ad3edc57ca5ef6ae44d80b3c30d1d99b9b300ce48ec41d1edde0066fab553a456ae2f380d14fa8f956af1fb0217513a598900619ff12eaf97f63aa2a2311de3b6571a7b880a5247cb33b6a74787bf3f9bd5007854a2fad4e1801c6404394bf3d37ab08c135ea38a1974242e39a21273685f000f55796e72957a819e68a22e8602d73c3ba3718a5a4bd92b80b0aa444b182a00788b6e9874fb040ee679a7fae257190099a605229b948334e54a57739535d4004f1658ee3c1a91627e5d72f5a731f0796299df82ab41e72c88eee0c82fa85e003ee802add96628c693ed71afa9908138ba5a6fbf0a5f29a9c74e4e42aba671400000000000000000000000000000000000000000000000000000000000042000000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042001000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042002000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042003000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042004000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042005000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420060000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004200700000000000000000000000000000000000000000000000000000000000420110000000000000000000000000000000000000000000000000000000000042008000000000000000000000000000000000000000000000000000000000004201200000000000000000000000000000000000000000000000000000000000420090000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042016000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042017000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042011000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042012000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420160000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004201700000000000000000000000000000000000000000000000000000000000420210000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004202200000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042026000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042027000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042021000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042022000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420260000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004202700000000000000000000000000000000000000000000000000000000000420310000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004203200000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042036000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042037000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042031000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042032000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004203f00000000000000000000000000000000000000000000000000000000000420360000000000000000000000000000000000000000000000000000000000042040000000000000000000000000000000000000000000000000000000000004203700000000000000000000000000000000000000000000000000000000000420410000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004204200000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042043000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042044000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042045000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042046000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042047000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042048000000000000000000000000000000000000000000000000000000000004203f0000000000000000000000000000000000000000000000000000000000042049200000000000000000000000000000000000000000000000000000000000041700000000000000000000000000000000000000000000000000000000000004170100000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004170100000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004171800000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004171800000000000000000000000000000000000000000000000000000000000417190000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004172800000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004172800000000000000000000000000000000000000000000000000000000000417290000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004172f000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004172f00000000000000000000000000000000000000000000000000000000000417300000001c54bdc3dcd0023e7fdbc6452a4773ea79ca38e6e3fabba71fc84cb41966979b0000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000081000000000000000000000000000000000000000000000000000000000000008100100000000000000000000000000000000000000000000000000000000000810020000000000000000000000000000000000000000000000000000000000081003000000000000000000000000000000000000000000000000000000000008100400000000000000000000000000000000000000000000000000000000000810050000000000000000000000000000000000000000000000000000000000081006000000000000000000000000000000000000000000000000000000000008100700000000000000000000000000000000000000000000000000000000000810080000000000000000000000000000000000000000000000000000000000081009000000000000000000000000000000000000000000000000000000000008100a000000000000000000000000000000000000000000000000000000000008100b000000000000000000000000000000000000000000000000000000000008100c000000000000000000000000000000000000000000000000000000000008100d000000000000000000000000000000000000000000000000000000000008100e000000000000000000000000000000000000000000000000000000000008100f0000000000000000000000000000000000000000000000000000000000081010000000000000000000000000000000000000000000000000000000000008101100000000000000000000000000000000000000000000000000000000000810120000000000000000000000000000000000000000000000000000000000081013000000000000000000000000000000000000000000000000000000000008101400000000000000000000000000000000000000000000000000000000000810150000000000000000000000000000000000000000000000000000000000081016000000000000000000000000000000000000000000000000000000000008101700000000000000000000000000000000000000000000000000000000000810180000000000000000000000000000000000000000000000000000000000081019000000000000000000000000000000000000000000000000000000000008101a000000000000000000000000000000000000000000000000000000000008101b000000000000000000000000000000000000000000000000000000000008101c000000000000000000000000000000000000000000000000000000000008101d000000000000000000000000000000000000000000000000000000000008101e000000000000000000000000000000000000000000000000000000000008101f0000000000000000000000000000000000000000000000000000000000081020000000000000000000000000000000000000000000000000000000000008102100000000000000000000000000000000000000000000000000000000000810220000000000000000000000000000000000000000000000000000000000081023000000000000000000000000000000000000000000000000000000000008102400000000000000000000000000000000000000000000000000000000000810250000000000000000000000000000000000000000000000000000000000081026000000000000000000000000000000000000000000000000000000000008102700000000000000000000000000000000000000000000000000000000000810280000000000000000000000000000000000000000000000000000000000081029000000000000000000000000000000000000000000000000000000000008102a000000000000000000000000000000000000000000000000000000000008102b000000000000000000000000000000000000000000000000000000000008102c000000000000000000000000000000000000000000000000000000000008102d000000000000000000000000000000000000000000000000000000000008102e000000000000000000000000000000000000000000000000000000000008102f0000000000000000000000000000000000000000000000000000000000081030000000000000000000000000000000000000000000000000000000000008103100000000000000000000000000000000000000000000000000000000000810320000000000000000000000000000000000000000000000000000000000081033000000000000000000000000000000000000000000000000000000000008103400000000000000000000000000000000000000000000000000000000000810350000000000000000000000000000000000000000000000000000000000081036000000000000000000000000000000000000000000000000000000000008103700000000000000000000000000000000000000000000000000000000000810380000000000000000000000000000000000000000000000000000000000081039000000000000000000000000000000000000000000000000000000000008103a000000000000000000000000000000000000000000000000000000000008103b000000000000000000000000000000000000000000000000000000000008103c000000000000000000000000000000000000000000000000000000000008103d000000000000000000000000000000000000000000000000000000000008103e000000000000000000000000000000000000000000000000000000000008103f4000000000000000000000000000000000000000000000000000000000000800010000000000000000000000000000000000000000000000000000000000081100000000000000000000000000000000000000000000000000000000000008110100000000000000000000000000000000000000000000000000000000000811020000000000000000000000000000000000000000000000000000000000081103000000000000000000000000000000000000000000000000000000000008110400000000000000000000000000000000000000000000000000000000000811050000000000000000000000000000000000000000000000000000000000081106000000000000000000000000000000000000000000000000000000000008110700000000000000000000000000000000000000000000000000000000000811080000000000000000000000000000000000000000000000000000000000081109000000000000000000000000000000000000000000000000000000000008110a000000000000000000000000000000000000000000000000000000000008110b000000000000000000000000000000000000000000000000000000000008110c000000000000000000000000000000000000000000000000000000000008110d000000000000000000000000000000000000000000000000000000000008110e000000000000000000000000000000000000000000000000000000000008110f0000000000000000000000000000000000000000000000000000000000081110000000000000000000000000000000000000000000000000000000000008111100000000000000000000000000000000000000000000000000000000000811120000000000000000000000000000000000000000000000000000000000081113000000000000000000000000000000000000000000000000000000000008111400000000000000000000000000000000000000000000000000000000000811150000000000000000000000000000000000000000000000000000000000081116000000000000000000000000000000000000000000000000000000000008111700000000000000000000000000000000000000000000000000000000000811180000000000000000000000000000000000000000000000000000000000081119000000000000000000000000000000000000000000000000000000000008111a000000000000000000000000000000000000000000000000000000000008111b000000000000000000000000000000000000000000000000000000000008111c000000000000000000000000000000000000000000000000000000000008111d000000000000000000000000000000000000000000000000000000000008111e000000000000000000000000000000000000000000000000000000000008111f0000000000000000000000000000000000000000000000000000000000081120000000000000000000000000000000000000000000000000000000000008112100000000000000000000000000000000000000000000000000000000000811220000000000000000000000000000000000000000000000000000000000081123000000000000000000000000000000000000000000000000000000000008112400000000000000000000000000000000000000000000000000000000000811250000000000000000000000000000000000000000000000000000000000081126000000000000000000000000000000000000000000000000000000000008112700000000000000000000000000000000000000000000000000000000000811280000000000000000000000000000000000000000000000000000000000081129000000000000000000000000000000000000000000000000000000000008112a000000000000000000000000000000000000000000000000000000000008112b000000000000000000000000000000000000000000000000000000000008112c000000000000000000000000000000000000000000000000000000000008112d000000000000000000000000000000000000000000000000000000000008112e000000000000000000000000000000000000000000000000000000000008112f0000000000000000000000000000000000000000000000000000000000081130000000000000000000000000000000000000000000000000000000000008113100000000000000000000000000000000000000000000000000000000000811320000000000000000000000000000000000000000000000000000000000081133000000000000000000000000000000000000000000000000000000000008113400000000000000000000000000000000000000000000000000000000000811350000000000000000000000000000000000000000000000000000000000081136000000000000000000000000000000000000000000000000000000000008113700000000000000000000000000000000000000000000000000000000000811380000000000000000000000000000000000000000000000000000000000081139000000000000000000000000000000000000000000000000000000000008113a000000000000000000000000000000000000000000000000000000000008113b000000000000000000000000000000000000000000000000000000000008113c000000000000000000000000000000000000000000000000000000000008113d000000000000000000000000000000000000000000000000000000000008113e08003c0472260790b0bdfb8ae4dc4d437e7686b73643f2198970d84e1059a5f13500bfd46275a318e438726ff2765ae154b63ab8a0daebcbed668a5f58a0e63dc1007906b9418dc758c6b4f8454c69baa48b7889b6b511d707abe8e2cb8f7c397300aeb60c4d65a44f122e58bf9565dfe2024b3ae654d5cf2e47ecb035d53c927000bf82e8cda20345f37bbb1de3932172324b57f0b98be483392697b168e3bba8000fb4bbad884ef30edf68e45a6cf2733fcf50310c69d7c1432b29af2c0aa8040023e1622d27fee3b4a40ab975ae0eb2e31619ef3dc76eb858f7fddb6a056131004689cd7007daf98dd3218b839b8e6a29f957154347b391fdb376bd0b344be2400000000000000000000000000000000000000000000000000000000000082000000000000000000000000000000000000000000000000000000000000008200a0000000000000000000000000000000000000000000000000000000000082001000000000000000000000000000000000000000000000000000000000008200b0000000000000000000000000000000000000000000000000000000000082002000000000000000000000000000000000000000000000000000000000008200c0000000000000000000000000000000000000000000000000000000000082003000000000000000000000000000000000000000000000000000000000008200d0000000000000000000000000000000000000000000000000000000000082004000000000000000000000000000000000000000000000000000000000008200e0000000000000000000000000000000000000000000000000000000000082005000000000000000000000000000000000000000000000000000000000008200f00000000000000000000000000000000000000000000000000000000000820060000000000000000000000000000000000000000000000000000000000082010000000000000000000000000000000000000000000000000000000000008200700000000000000000000000000000000000000000000000000000000000820110000000000000000000000000000000000000000000000000000000000082008000000000000000000000000000000000000000000000000000000000008201200000000000000000000000000000000000000000000000000000000000820090000000000000000000000000000000000000000000000000000000000082013000000000000000000000000000000000000000000000000000000000008200a0000000000000000000000000000000000000000000000000000000000082014000000000000000000000000000000000000000000000000000000000008200b0000000000000000000000000000000000000000000000000000000000082015000000000000000000000000000000000000000000000000000000000008200c0000000000000000000000000000000000000000000000000000000000082016000000000000000000000000000000000000000000000000000000000008200d0000000000000000000000000000000000000000000000000000000000082017000000000000000000000000000000000000000000000000000000000008200e0000000000000000000000000000000000000000000000000000000000082018000000000000000000000000000000000000000000000000000000000008200f00000000000000000000000000000000000000000000000000000000000820190000000000000000000000000000000000000000000000000000000000082010000000000000000000000000000000000000000000000000000000000008201a0000000000000000000000000000000000000000000000000000000000082011000000000000000000000000000000000000000000000000000000000008201b0000000000000000000000000000000000000000000000000000000000082012000000000000000000000000000000000000000000000000000000000008201c0000000000000000000000000000000000000000000000000000000000082013000000000000000000000000000000000000000000000000000000000008201d0000000000000000000000000000000000000000000000000000000000082014000000000000000000000000000000000000000000000000000000000008201e0000000000000000000000000000000000000000000000000000000000082015000000000000000000000000000000000000000000000000000000000008201f00000000000000000000000000000000000000000000000000000000000820160000000000000000000000000000000000000000000000000000000000082020000000000000000000000000000000000000000000000000000000000008201700000000000000000000000000000000000000000000000000000000000820210000000000000000000000000000000000000000000000000000000000082018000000000000000000000000000000000000000000000000000000000008202200000000000000000000000000000000000000000000000000000000000820190000000000000000000000000000000000000000000000000000000000082023000000000000000000000000000000000000000000000000000000000008201a0000000000000000000000000000000000000000000000000000000000082024000000000000000000000000000000000000000000000000000000000008201b0000000000000000000000000000000000000000000000000000000000082025000000000000000000000000000000000000000000000000000000000008201c0000000000000000000000000000000000000000000000000000000000082026000000000000000000000000000000000000000000000000000000000008201d0000000000000000000000000000000000000000000000000000000000082027000000000000000000000000000000000000000000000000000000000008201e0000000000000000000000000000000000000000000000000000000000082028000000000000000000000000000000000000000000000000000000000008201f00000000000000000000000000000000000000000000000000000000000820290000000000000000000000000000000000000000000000000000000000082020000000000000000000000000000000000000000000000000000000000008202a0000000000000000000000000000000000000000000000000000000000082021000000000000000000000000000000000000000000000000000000000008202b0000000000000000000000000000000000000000000000000000000000082022000000000000000000000000000000000000000000000000000000000008202c0000000000000000000000000000000000000000000000000000000000082023000000000000000000000000000000000000000000000000000000000008202d0000000000000000000000000000000000000000000000000000000000082024000000000000000000000000000000000000000000000000000000000008202e0000000000000000000000000000000000000000000000000000000000082025000000000000000000000000000000000000000000000000000000000008202f00000000000000000000000000000000000000000000000000000000000820260000000000000000000000000000000000000000000000000000000000082030000000000000000000000000000000000000000000000000000000000008202700000000000000000000000000000000000000000000000000000000000820310000000000000000000000000000000000000000000000000000000000082028000000000000000000000000000000000000000000000000000000000008203200000000000000000000000000000000000000000000000000000000000820290000000000000000000000000000000000000000000000000000000000082033000000000000000000000000000000000000000000000000000000000008202a0000000000000000000000000000000000000000000000000000000000082034000000000000000000000000000000000000000000000000000000000008202b0000000000000000000000000000000000000000000000000000000000082035000000000000000000000000000000000000000000000000000000000008202c0000000000000000000000000000000000000000000000000000000000082036000000000000000000000000000000000000000000000000000000000008202d0000000000000000000000000000000000000000000000000000000000082037000000000000000000000000000000000000000000000000000000000008202e0000000000000000000000000000000000000000000000000000000000082038000000000000000000000000000000000000000000000000000000000008202f00000000000000000000000000000000000000000000000000000000000820390000000000000000000000000000000000000000000000000000000000082030000000000000000000000000000000000000000000000000000000000008203a0000000000000000000000000000000000000000000000000000000000082031000000000000000000000000000000000000000000000000000000000008203b0000000000000000000000000000000000000000000000000000000000082032000000000000000000000000000000000000000000000000000000000008203c0000000000000000000000000000000000000000000000000000000000082033000000000000000000000000000000000000000000000000000000000008203d0000000000000000000000000000000000000000000000000000000000082034000000000000000000000000000000000000000000000000000000000008203e0000000000000000000000000000000000000000000000000000000000082035000000000000000000000000000000000000000000000000000000000008203f00000000000000000000000000000000000000000000000000000000000820360000000000000000000000000000000000000000000000000000000000082040000000000000000000000000000000000000000000000000000000000008203700000000000000000000000000000000000000000000000000000000000820410000000000000000000000000000000000000000000000000000000000082038000000000000000000000000000000000000000000000000000000000008204200000000000000000000000000000000000000000000000000000000000820390000000000000000000000000000000000000000000000000000000000082043000000000000000000000000000000000000000000000000000000000008203a0000000000000000000000000000000000000000000000000000000000082044000000000000000000000000000000000000000000000000000000000008203b0000000000000000000000000000000000000000000000000000000000082045000000000000000000000000000000000000000000000000000000000008203c0000000000000000000000000000000000000000000000000000000000082046000000000000000000000000000000000000000000000000000000000008203d0000000000000000000000000000000000000000000000000000000000082047000000000000000000000000000000000000000000000000000000000008203e0000000000000000000000000000000000000000000000000000000000082048000000000000000000000000000000000000000000000000000000000008203f0000000000000000000000000000000000000000000000000000000000082049200000000000000000000000000000000000000000000000000000000000081700000000000000000000000000000000000000000000000000000000000008170100000000000000000000000000000000000000000000000000000000000817020000000000000000000000000000000000000000000000000000000000081703000000000000000000000000000000000000000000000000000000000008170400000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008170100000000000000000000000000000000000000000000000000000000000817020000000000000000000000000000000000000000000000000000000000081703000000000000000000000000000000000000000000000000000000000008170400000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817020000000000000000000000000000000000000000000000000000000000081703000000000000000000000000000000000000000000000000000000000008170400000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081703000000000000000000000000000000000000000000000000000000000008170400000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008170400000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008171500000000000000000000000000000000000000000000000000000000000817050000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008171500000000000000000000000000000000000000000000000000000000000817160000000000000000000000000000000000000000000000000000000000081706000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008171500000000000000000000000000000000000000000000000000000000000817160000000000000000000000000000000000000000000000000000000000081717000000000000000000000000000000000000000000000000000000000008170700000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008171500000000000000000000000000000000000000000000000000000000000817160000000000000000000000000000000000000000000000000000000000081717000000000000000000000000000000000000000000000000000000000008171800000000000000000000000000000000000000000000000000000000000817080000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f00000000000000000000000000000000000000000000000000000000000817100000000000000000000000000000000000000000000000000000000000081711000000000000000000000000000000000000000000000000000000000008171200000000000000000000000000000000000000000000000000000000000817130000000000000000000000000000000000000000000000000000000000081714000000000000000000000000000000000000000000000000000000000008171500000000000000000000000000000000000000000000000000000000000817160000000000000000000000000000000000000000000000000000000000081717000000000000000000000000000000000000000000000000000000000008171800000000000000000000000000000000000000000000000000000000000817190000000000000000000000000000000000000000000000000000000000081709000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008170a000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008170b000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008170c000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008170d000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008170e000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f000000000000000000000000000000000000000000000000000000000008170f0000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081710000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008171100000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817120000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081713000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008171400000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008172500000000000000000000000000000000000000000000000000000000000817150000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008172500000000000000000000000000000000000000000000000000000000000817260000000000000000000000000000000000000000000000000000000000081716000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008172500000000000000000000000000000000000000000000000000000000000817260000000000000000000000000000000000000000000000000000000000081727000000000000000000000000000000000000000000000000000000000008171700000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008172500000000000000000000000000000000000000000000000000000000000817260000000000000000000000000000000000000000000000000000000000081727000000000000000000000000000000000000000000000000000000000008172800000000000000000000000000000000000000000000000000000000000817180000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f00000000000000000000000000000000000000000000000000000000000817200000000000000000000000000000000000000000000000000000000000081721000000000000000000000000000000000000000000000000000000000008172200000000000000000000000000000000000000000000000000000000000817230000000000000000000000000000000000000000000000000000000000081724000000000000000000000000000000000000000000000000000000000008172500000000000000000000000000000000000000000000000000000000000817260000000000000000000000000000000000000000000000000000000000081727000000000000000000000000000000000000000000000000000000000008172800000000000000000000000000000000000000000000000000000000000817290000000000000000000000000000000000000000000000000000000000081719000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008171a000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008171b000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008172c000000000000000000000000000000000000000000000000000000000008171c000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008172c000000000000000000000000000000000000000000000000000000000008172d000000000000000000000000000000000000000000000000000000000008171d000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008172c000000000000000000000000000000000000000000000000000000000008172d000000000000000000000000000000000000000000000000000000000008172e000000000000000000000000000000000000000000000000000000000008171e000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008172c000000000000000000000000000000000000000000000000000000000008172d000000000000000000000000000000000000000000000000000000000008172e000000000000000000000000000000000000000000000000000000000008172f000000000000000000000000000000000000000000000000000000000008171f0000000000000000000000000000000000000000000000000000000000081720000000000000000000000000000000000000000000000000000000000008172100000000000000000000000000000000000000000000000000000000000817220000000000000000000000000000000000000000000000000000000000081723000000000000000000000000000000000000000000000000000000000008172400000000000000000000000000000000000000000000000000000000000817250000000000000000000000000000000000000000000000000000000000081726000000000000000000000000000000000000000000000000000000000008172700000000000000000000000000000000000000000000000000000000000817280000000000000000000000000000000000000000000000000000000000081729000000000000000000000000000000000000000000000000000000000008172a000000000000000000000000000000000000000000000000000000000008172b000000000000000000000000000000000000000000000000000000000008172c000000000000000000000000000000000000000000000000000000000008172d000000000000000000000000000000000000000000000000000000000008172e000000000000000000000000000000000000000000000000000000000008172f00000000000000000000000000000000000000000000000000000000000817300000002717ddb5ec8c3552b92ddb9a27ae393189d19d282f4271d5b03089835d77834100000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000c100000000000000000000000000000000000000000000000000000000000000c100100000000000000000000000000000000000000000000000000000000000c100200000000000000000000000000000000000000000000000000000000000c100300000000000000000000000000000000000000000000000000000000000c100400000000000000000000000000000000000000000000000000000000000c100500000000000000000000000000000000000000000000000000000000000c100600000000000000000000000000000000000000000000000000000000000c100700000000000000000000000000000000000000000000000000000000000c100800000000000000000000000000000000000000000000000000000000000c100900000000000000000000000000000000000000000000000000000000000c100a00000000000000000000000000000000000000000000000000000000000c100b00000000000000000000000000000000000000000000000000000000000c100c00000000000000000000000000000000000000000000000000000000000c100d00000000000000000000000000000000000000000000000000000000000c100e00000000000000000000000000000000000000000000000000000000000c100f00000000000000000000000000000000000000000000000000000000000c101000000000000000000000000000000000000000000000000000000000000c101100000000000000000000000000000000000000000000000000000000000c101200000000000000000000000000000000000000000000000000000000000c101300000000000000000000000000000000000000000000000000000000000c101400000000000000000000000000000000000000000000000000000000000c101500000000000000000000000000000000000000000000000000000000000c101600000000000000000000000000000000000000000000000000000000000c101700000000000000000000000000000000000000000000000000000000000c101800000000000000000000000000000000000000000000000000000000000c101900000000000000000000000000000000000000000000000000000000000c101a00000000000000000000000000000000000000000000000000000000000c101b00000000000000000000000000000000000000000000000000000000000c101c00000000000000000000000000000000000000000000000000000000000c101d00000000000000000000000000000000000000000000000000000000000c101e00000000000000000000000000000000000000000000000000000000000c101f00000000000000000000000000000000000000000000000000000000000c102000000000000000000000000000000000000000000000000000000000000c102100000000000000000000000000000000000000000000000000000000000c102200000000000000000000000000000000000000000000000000000000000c102300000000000000000000000000000000000000000000000000000000000c102400000000000000000000000000000000000000000000000000000000000c102500000000000000000000000000000000000000000000000000000000000c102600000000000000000000000000000000000000000000000000000000000c102700000000000000000000000000000000000000000000000000000000000c102800000000000000000000000000000000000000000000000000000000000c102900000000000000000000000000000000000000000000000000000000000c102a00000000000000000000000000000000000000000000000000000000000c102b00000000000000000000000000000000000000000000000000000000000c102c00000000000000000000000000000000000000000000000000000000000c102d00000000000000000000000000000000000000000000000000000000000c102e00000000000000000000000000000000000000000000000000000000000c102f00000000000000000000000000000000000000000000000000000000000c103000000000000000000000000000000000000000000000000000000000000c103100000000000000000000000000000000000000000000000000000000000c103200000000000000000000000000000000000000000000000000000000000c103300000000000000000000000000000000000000000000000000000000000c103400000000000000000000000000000000000000000000000000000000000c103500000000000000000000000000000000000000000000000000000000000c103600000000000000000000000000000000000000000000000000000000000c103700000000000000000000000000000000000000000000000000000000000c103800000000000000000000000000000000000000000000000000000000000c103900000000000000000000000000000000000000000000000000000000000c103a00000000000000000000000000000000000000000000000000000000000c103b00000000000000000000000000000000000000000000000000000000000c103c00000000000000000000000000000000000000000000000000000000000c103d00000000000000000000000000000000000000000000000000000000000c103e00000000000000000000000000000000000000000000000000000000000c103f4000000000000000000000000000000000000000000000000000000000000c000100000000000000000000000000000000000000000000000000000000000c110000000000000000000000000000000000000000000000000000000000000c110100000000000000000000000000000000000000000000000000000000000c110200000000000000000000000000000000000000000000000000000000000c110300000000000000000000000000000000000000000000000000000000000c110400000000000000000000000000000000000000000000000000000000000c110500000000000000000000000000000000000000000000000000000000000c110600000000000000000000000000000000000000000000000000000000000c110700000000000000000000000000000000000000000000000000000000000c110800000000000000000000000000000000000000000000000000000000000c110900000000000000000000000000000000000000000000000000000000000c110a00000000000000000000000000000000000000000000000000000000000c110b00000000000000000000000000000000000000000000000000000000000c110c00000000000000000000000000000000000000000000000000000000000c110d00000000000000000000000000000000000000000000000000000000000c110e00000000000000000000000000000000000000000000000000000000000c110f00000000000000000000000000000000000000000000000000000000000c111000000000000000000000000000000000000000000000000000000000000c111100000000000000000000000000000000000000000000000000000000000c111200000000000000000000000000000000000000000000000000000000000c111300000000000000000000000000000000000000000000000000000000000c111400000000000000000000000000000000000000000000000000000000000c111500000000000000000000000000000000000000000000000000000000000c111600000000000000000000000000000000000000000000000000000000000c111700000000000000000000000000000000000000000000000000000000000c111800000000000000000000000000000000000000000000000000000000000c111900000000000000000000000000000000000000000000000000000000000c111a00000000000000000000000000000000000000000000000000000000000c111b00000000000000000000000000000000000000000000000000000000000c111c00000000000000000000000000000000000000000000000000000000000c111d00000000000000000000000000000000000000000000000000000000000c111e00000000000000000000000000000000000000000000000000000000000c111f00000000000000000000000000000000000000000000000000000000000c112000000000000000000000000000000000000000000000000000000000000c112100000000000000000000000000000000000000000000000000000000000c112200000000000000000000000000000000000000000000000000000000000c112300000000000000000000000000000000000000000000000000000000000c112400000000000000000000000000000000000000000000000000000000000c112500000000000000000000000000000000000000000000000000000000000c112600000000000000000000000000000000000000000000000000000000000c112700000000000000000000000000000000000000000000000000000000000c112800000000000000000000000000000000000000000000000000000000000c112900000000000000000000000000000000000000000000000000000000000c112a00000000000000000000000000000000000000000000000000000000000c112b00000000000000000000000000000000000000000000000000000000000c112c00000000000000000000000000000000000000000000000000000000000c112d00000000000000000000000000000000000000000000000000000000000c112e00000000000000000000000000000000000000000000000000000000000c112f00000000000000000000000000000000000000000000000000000000000c113000000000000000000000000000000000000000000000000000000000000c113100000000000000000000000000000000000000000000000000000000000c113200000000000000000000000000000000000000000000000000000000000c113300000000000000000000000000000000000000000000000000000000000c113400000000000000000000000000000000000000000000000000000000000c113500000000000000000000000000000000000000000000000000000000000c113600000000000000000000000000000000000000000000000000000000000c113700000000000000000000000000000000000000000000000000000000000c113800000000000000000000000000000000000000000000000000000000000c113900000000000000000000000000000000000000000000000000000000000c113a00000000000000000000000000000000000000000000000000000000000c113b00000000000000000000000000000000000000000000000000000000000c113c00000000000000000000000000000000000000000000000000000000000c113d00000000000000000000000000000000000000000000000000000000000c113e0800f8029be42ec3f25204907ca981fb71e5b357093eb5db10fc01ca98a4e4154c0030e13d351a5bf1d5a040e82a163ca57017f39162693f85c571e441e36d702d00a550ae0f39f977d9473d6de1be3232fc68ed0c4a601d53542148695102cfc9005580bc65e4bff9c8fffa64db02c0fa6af14d9d26fd962f4c5904cbd3ddec2500758c4a0d43dfec788b2f580877c4f473adec8f168ea24424f2600e4eb4916f00342602bf90d10f8ca8e582a894dcc4c02bb89fe458532e0c632b53bae54b4d00ca43ab78ab834337e9964d84a0674c9adabdca140539c5a6bc96e0ba9a51f6004ffbfd91be292a7c6a0e255e50caa156ac2d628b40ad2128c4ab63a92d8a1c4000000000000000000000000000000000000000000000000000000000000c200000000000000000000000000000000000000000000000000000000000000c200a00000000000000000000000000000000000000000000000000000000000c200100000000000000000000000000000000000000000000000000000000000c200b00000000000000000000000000000000000000000000000000000000000c200200000000000000000000000000000000000000000000000000000000000c200c00000000000000000000000000000000000000000000000000000000000c200300000000000000000000000000000000000000000000000000000000000c200d00000000000000000000000000000000000000000000000000000000000c200400000000000000000000000000000000000000000000000000000000000c200e00000000000000000000000000000000000000000000000000000000000c200500000000000000000000000000000000000000000000000000000000000c200f00000000000000000000000000000000000000000000000000000000000c200600000000000000000000000000000000000000000000000000000000000c201000000000000000000000000000000000000000000000000000000000000c200700000000000000000000000000000000000000000000000000000000000c201100000000000000000000000000000000000000000000000000000000000c200800000000000000000000000000000000000000000000000000000000000c201200000000000000000000000000000000000000000000000000000000000c200900000000000000000000000000000000000000000000000000000000000c201300000000000000000000000000000000000000000000000000000000000c200a00000000000000000000000000000000000000000000000000000000000c201400000000000000000000000000000000000000000000000000000000000c200b00000000000000000000000000000000000000000000000000000000000c201500000000000000000000000000000000000000000000000000000000000c200c00000000000000000000000000000000000000000000000000000000000c201600000000000000000000000000000000000000000000000000000000000c200d00000000000000000000000000000000000000000000000000000000000c201700000000000000000000000000000000000000000000000000000000000c200e00000000000000000000000000000000000000000000000000000000000c201800000000000000000000000000000000000000000000000000000000000c200f00000000000000000000000000000000000000000000000000000000000c201900000000000000000000000000000000000000000000000000000000000c201000000000000000000000000000000000000000000000000000000000000c201a00000000000000000000000000000000000000000000000000000000000c201100000000000000000000000000000000000000000000000000000000000c201b00000000000000000000000000000000000000000000000000000000000c201200000000000000000000000000000000000000000000000000000000000c201c00000000000000000000000000000000000000000000000000000000000c201300000000000000000000000000000000000000000000000000000000000c201d00000000000000000000000000000000000000000000000000000000000c201400000000000000000000000000000000000000000000000000000000000c201e00000000000000000000000000000000000000000000000000000000000c201500000000000000000000000000000000000000000000000000000000000c201f00000000000000000000000000000000000000000000000000000000000c201600000000000000000000000000000000000000000000000000000000000c202000000000000000000000000000000000000000000000000000000000000c201700000000000000000000000000000000000000000000000000000000000c202100000000000000000000000000000000000000000000000000000000000c201800000000000000000000000000000000000000000000000000000000000c202200000000000000000000000000000000000000000000000000000000000c201900000000000000000000000000000000000000000000000000000000000c202300000000000000000000000000000000000000000000000000000000000c201a00000000000000000000000000000000000000000000000000000000000c202400000000000000000000000000000000000000000000000000000000000c201b00000000000000000000000000000000000000000000000000000000000c202500000000000000000000000000000000000000000000000000000000000c201c00000000000000000000000000000000000000000000000000000000000c202600000000000000000000000000000000000000000000000000000000000c201d00000000000000000000000000000000000000000000000000000000000c202700000000000000000000000000000000000000000000000000000000000c201e00000000000000000000000000000000000000000000000000000000000c202800000000000000000000000000000000000000000000000000000000000c201f00000000000000000000000000000000000000000000000000000000000c202900000000000000000000000000000000000000000000000000000000000c202000000000000000000000000000000000000000000000000000000000000c202a00000000000000000000000000000000000000000000000000000000000c202100000000000000000000000000000000000000000000000000000000000c202b00000000000000000000000000000000000000000000000000000000000c202200000000000000000000000000000000000000000000000000000000000c202c00000000000000000000000000000000000000000000000000000000000c202300000000000000000000000000000000000000000000000000000000000c202d00000000000000000000000000000000000000000000000000000000000c202400000000000000000000000000000000000000000000000000000000000c202e00000000000000000000000000000000000000000000000000000000000c202500000000000000000000000000000000000000000000000000000000000c202f00000000000000000000000000000000000000000000000000000000000c202600000000000000000000000000000000000000000000000000000000000c203000000000000000000000000000000000000000000000000000000000000c202700000000000000000000000000000000000000000000000000000000000c203100000000000000000000000000000000000000000000000000000000000c202800000000000000000000000000000000000000000000000000000000000c203200000000000000000000000000000000000000000000000000000000000c202900000000000000000000000000000000000000000000000000000000000c203300000000000000000000000000000000000000000000000000000000000c202a00000000000000000000000000000000000000000000000000000000000c203400000000000000000000000000000000000000000000000000000000000c202b00000000000000000000000000000000000000000000000000000000000c203500000000000000000000000000000000000000000000000000000000000c202c00000000000000000000000000000000000000000000000000000000000c203600000000000000000000000000000000000000000000000000000000000c202d00000000000000000000000000000000000000000000000000000000000c203700000000000000000000000000000000000000000000000000000000000c202e00000000000000000000000000000000000000000000000000000000000c203800000000000000000000000000000000000000000000000000000000000c202f00000000000000000000000000000000000000000000000000000000000c203900000000000000000000000000000000000000000000000000000000000c203000000000000000000000000000000000000000000000000000000000000c203a00000000000000000000000000000000000000000000000000000000000c203100000000000000000000000000000000000000000000000000000000000c203b00000000000000000000000000000000000000000000000000000000000c203200000000000000000000000000000000000000000000000000000000000c203c00000000000000000000000000000000000000000000000000000000000c203300000000000000000000000000000000000000000000000000000000000c203d00000000000000000000000000000000000000000000000000000000000c203400000000000000000000000000000000000000000000000000000000000c203e00000000000000000000000000000000000000000000000000000000000c203500000000000000000000000000000000000000000000000000000000000c203f00000000000000000000000000000000000000000000000000000000000c203600000000000000000000000000000000000000000000000000000000000c204000000000000000000000000000000000000000000000000000000000000c203700000000000000000000000000000000000000000000000000000000000c204100000000000000000000000000000000000000000000000000000000000c203800000000000000000000000000000000000000000000000000000000000c204200000000000000000000000000000000000000000000000000000000000c203900000000000000000000000000000000000000000000000000000000000c204300000000000000000000000000000000000000000000000000000000000c203a00000000000000000000000000000000000000000000000000000000000c204400000000000000000000000000000000000000000000000000000000000c203b00000000000000000000000000000000000000000000000000000000000c204500000000000000000000000000000000000000000000000000000000000c203c00000000000000000000000000000000000000000000000000000000000c204600000000000000000000000000000000000000000000000000000000000c203d00000000000000000000000000000000000000000000000000000000000c204700000000000000000000000000000000000000000000000000000000000c203e00000000000000000000000000000000000000000000000000000000000c204800000000000000000000000000000000000000000000000000000000000c203f00000000000000000000000000000000000000000000000000000000000c20492000000000000000000000000000000000000000000000000000000000000c170000000000000000000000000000000000000000000000000000000000000c170100000000000000000000000000000000000000000000000000000000000c170200000000000000000000000000000000000000000000000000000000000c170300000000000000000000000000000000000000000000000000000000000c170400000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c170100000000000000000000000000000000000000000000000000000000000c170200000000000000000000000000000000000000000000000000000000000c170300000000000000000000000000000000000000000000000000000000000c170400000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c170200000000000000000000000000000000000000000000000000000000000c170300000000000000000000000000000000000000000000000000000000000c170400000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c170300000000000000000000000000000000000000000000000000000000000c170400000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c170400000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c170500000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c170600000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c170700000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c170800000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c170900000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c170a00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c170b00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c170c00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c170d00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c170e00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c170f00000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c171000000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c171100000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c171200000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c171300000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c171400000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c171500000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c171600000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c171700000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c171800000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c171900000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c171a00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c171b00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c172c00000000000000000000000000000000000000000000000000000000000c171c00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c172c00000000000000000000000000000000000000000000000000000000000c172d00000000000000000000000000000000000000000000000000000000000c171d00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c172c00000000000000000000000000000000000000000000000000000000000c172d00000000000000000000000000000000000000000000000000000000000c172e00000000000000000000000000000000000000000000000000000000000c171e00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c172c00000000000000000000000000000000000000000000000000000000000c172d00000000000000000000000000000000000000000000000000000000000c172e00000000000000000000000000000000000000000000000000000000000c172f00000000000000000000000000000000000000000000000000000000000c171f00000000000000000000000000000000000000000000000000000000000c172000000000000000000000000000000000000000000000000000000000000c172100000000000000000000000000000000000000000000000000000000000c172200000000000000000000000000000000000000000000000000000000000c172300000000000000000000000000000000000000000000000000000000000c172400000000000000000000000000000000000000000000000000000000000c172500000000000000000000000000000000000000000000000000000000000c172600000000000000000000000000000000000000000000000000000000000c172700000000000000000000000000000000000000000000000000000000000c172800000000000000000000000000000000000000000000000000000000000c172900000000000000000000000000000000000000000000000000000000000c172a00000000000000000000000000000000000000000000000000000000000c172b00000000000000000000000000000000000000000000000000000000000c172c00000000000000000000000000000000000000000000000000000000000c172d00000000000000000000000000000000000000000000000000000000000c172e00000000000000000000000000000000000000000000000000000000000c172f00000000000000000000000000000000000000000000000000000000000c17300000002b65cba4233828c7bacee67c1cbb6db457c7f63d8709bca45f0a50811f2782400000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000010100100000000000000000000000000000000000000000000000000000000001010020000000000000000000000000000000000000000000000000000000000101003000000000000000000000000000000000000000000000000000000000010100400000000000000000000000000000000000000000000000000000000001010050000000000000000000000000000000000000000000000000000000000101006000000000000000000000000000000000000000000000000000000000010100700000000000000000000000000000000000000000000000000000000001010080000000000000000000000000000000000000000000000000000000000101009000000000000000000000000000000000000000000000000000000000010100a000000000000000000000000000000000000000000000000000000000010100b000000000000000000000000000000000000000000000000000000000010100c000000000000000000000000000000000000000000000000000000000010100d000000000000000000000000000000000000000000000000000000000010100e000000000000000000000000000000000000000000000000000000000010100f0000000000000000000000000000000000000000000000000000000000101010000000000000000000000000000000000000000000000000000000000010101100000000000000000000000000000000000000000000000000000000001010120000000000000000000000000000000000000000000000000000000000101013000000000000000000000000000000000000000000000000000000000010101400000000000000000000000000000000000000000000000000000000001010150000000000000000000000000000000000000000000000000000000000101016000000000000000000000000000000000000000000000000000000000010101700000000000000000000000000000000000000000000000000000000001010180000000000000000000000000000000000000000000000000000000000101019000000000000000000000000000000000000000000000000000000000010101a000000000000000000000000000000000000000000000000000000000010101b000000000000000000000000000000000000000000000000000000000010101c000000000000000000000000000000000000000000000000000000000010101d000000000000000000000000000000000000000000000000000000000010101e000000000000000000000000000000000000000000000000000000000010101f0000000000000000000000000000000000000000000000000000000000101020000000000000000000000000000000000000000000000000000000000010102100000000000000000000000000000000000000000000000000000000001010220000000000000000000000000000000000000000000000000000000000101023000000000000000000000000000000000000000000000000000000000010102400000000000000000000000000000000000000000000000000000000001010250000000000000000000000000000000000000000000000000000000000101026000000000000000000000000000000000000000000000000000000000010102700000000000000000000000000000000000000000000000000000000001010280000000000000000000000000000000000000000000000000000000000101029000000000000000000000000000000000000000000000000000000000010102a000000000000000000000000000000000000000000000000000000000010102b000000000000000000000000000000000000000000000000000000000010102c000000000000000000000000000000000000000000000000000000000010102d000000000000000000000000000000000000000000000000000000000010102e000000000000000000000000000000000000000000000000000000000010102f0000000000000000000000000000000000000000000000000000000000101030000000000000000000000000000000000000000000000000000000000010103100000000000000000000000000000000000000000000000000000000001010320000000000000000000000000000000000000000000000000000000000101033000000000000000000000000000000000000000000000000000000000010103400000000000000000000000000000000000000000000000000000000001010350000000000000000000000000000000000000000000000000000000000101036000000000000000000000000000000000000000000000000000000000010103700000000000000000000000000000000000000000000000000000000001010380000000000000000000000000000000000000000000000000000000000101039000000000000000000000000000000000000000000000000000000000010103a000000000000000000000000000000000000000000000000000000000010103b000000000000000000000000000000000000000000000000000000000010103c000000000000000000000000000000000000000000000000000000000010103d000000000000000000000000000000000000000000000000000000000010103e000000000000000000000000000000000000000000000000000000000010103f4000000000000000000000000000000000000000000000000000000000001000010000000000000000000000000000000000000000000000000000000000101100000000000000000000000000000000000000000000000000000000000010110100000000000000000000000000000000000000000000000000000000001011020000000000000000000000000000000000000000000000000000000000101103000000000000000000000000000000000000000000000000000000000010110400000000000000000000000000000000000000000000000000000000001011050000000000000000000000000000000000000000000000000000000000101106000000000000000000000000000000000000000000000000000000000010110700000000000000000000000000000000000000000000000000000000001011080000000000000000000000000000000000000000000000000000000000101109000000000000000000000000000000000000000000000000000000000010110a000000000000000000000000000000000000000000000000000000000010110b000000000000000000000000000000000000000000000000000000000010110c000000000000000000000000000000000000000000000000000000000010110d000000000000000000000000000000000000000000000000000000000010110e000000000000000000000000000000000000000000000000000000000010110f0000000000000000000000000000000000000000000000000000000000101110000000000000000000000000000000000000000000000000000000000010111100000000000000000000000000000000000000000000000000000000001011120000000000000000000000000000000000000000000000000000000000101113000000000000000000000000000000000000000000000000000000000010111400000000000000000000000000000000000000000000000000000000001011150000000000000000000000000000000000000000000000000000000000101116000000000000000000000000000000000000000000000000000000000010111700000000000000000000000000000000000000000000000000000000001011180000000000000000000000000000000000000000000000000000000000101119000000000000000000000000000000000000000000000000000000000010111a000000000000000000000000000000000000000000000000000000000010111b000000000000000000000000000000000000000000000000000000000010111c000000000000000000000000000000000000000000000000000000000010111d000000000000000000000000000000000000000000000000000000000010111e000000000000000000000000000000000000000000000000000000000010111f0000000000000000000000000000000000000000000000000000000000101120000000000000000000000000000000000000000000000000000000000010112100000000000000000000000000000000000000000000000000000000001011220000000000000000000000000000000000000000000000000000000000101123000000000000000000000000000000000000000000000000000000000010112400000000000000000000000000000000000000000000000000000000001011250000000000000000000000000000000000000000000000000000000000101126000000000000000000000000000000000000000000000000000000000010112700000000000000000000000000000000000000000000000000000000001011280000000000000000000000000000000000000000000000000000000000101129000000000000000000000000000000000000000000000000000000000010112a000000000000000000000000000000000000000000000000000000000010112b000000000000000000000000000000000000000000000000000000000010112c000000000000000000000000000000000000000000000000000000000010112d000000000000000000000000000000000000000000000000000000000010112e000000000000000000000000000000000000000000000000000000000010112f0000000000000000000000000000000000000000000000000000000000101130000000000000000000000000000000000000000000000000000000000010113100000000000000000000000000000000000000000000000000000000001011320000000000000000000000000000000000000000000000000000000000101133000000000000000000000000000000000000000000000000000000000010113400000000000000000000000000000000000000000000000000000000001011350000000000000000000000000000000000000000000000000000000000101136000000000000000000000000000000000000000000000000000000000010113700000000000000000000000000000000000000000000000000000000001011380000000000000000000000000000000000000000000000000000000000101139000000000000000000000000000000000000000000000000000000000010113a000000000000000000000000000000000000000000000000000000000010113b000000000000000000000000000000000000000000000000000000000010113c000000000000000000000000000000000000000000000000000000000010113d000000000000000000000000000000000000000000000000000000000010113e080099145b6c0d32753835121f8b271186d01236948a4622ce78a98347fcfc98390085277a27c6acbd5ffc4c19cd65fc30056999e9bec36998f753132db0ff8e2300f3cf77a7261759ebd5f4149f6ad56746f4499cfcd4adf27a1d373f77da64d5009bc6e0e994a23cde8c95b90c1acc1b4a480c6599d1df2c3f9f6e76f3d1aff200d7a1c4a2700dacaaf07f1f0ff33837bdbabcf0b9ace17efabe0761708c4bb900dbeb8e96d14f21e57d5786b6d6ae7e5ddb1bb35935c0fb246d4bdbca62e02c00fbf12b5e0df6223b801088798e4e04d2a92ffe9a11639b7f0ce314e3412a8000d796e0724de03b796ba77069fcd6cf921e566f3aed15eb3e77258add74e9ff400000000000000000000000000000000000000000000000000000000000102000000000000000000000000000000000000000000000000000000000000010200a0000000000000000000000000000000000000000000000000000000000102001000000000000000000000000000000000000000000000000000000000010200b0000000000000000000000000000000000000000000000000000000000102002000000000000000000000000000000000000000000000000000000000010200c0000000000000000000000000000000000000000000000000000000000102003000000000000000000000000000000000000000000000000000000000010200d0000000000000000000000000000000000000000000000000000000000102004000000000000000000000000000000000000000000000000000000000010200e0000000000000000000000000000000000000000000000000000000000102005000000000000000000000000000000000000000000000000000000000010200f00000000000000000000000000000000000000000000000000000000001020060000000000000000000000000000000000000000000000000000000000102010000000000000000000000000000000000000000000000000000000000010200700000000000000000000000000000000000000000000000000000000001020110000000000000000000000000000000000000000000000000000000000102008000000000000000000000000000000000000000000000000000000000010201200000000000000000000000000000000000000000000000000000000001020090000000000000000000000000000000000000000000000000000000000102013000000000000000000000000000000000000000000000000000000000010200a0000000000000000000000000000000000000000000000000000000000102014000000000000000000000000000000000000000000000000000000000010200b0000000000000000000000000000000000000000000000000000000000102015000000000000000000000000000000000000000000000000000000000010200c0000000000000000000000000000000000000000000000000000000000102016000000000000000000000000000000000000000000000000000000000010200d0000000000000000000000000000000000000000000000000000000000102017000000000000000000000000000000000000000000000000000000000010200e0000000000000000000000000000000000000000000000000000000000102018000000000000000000000000000000000000000000000000000000000010200f00000000000000000000000000000000000000000000000000000000001020190000000000000000000000000000000000000000000000000000000000102010000000000000000000000000000000000000000000000000000000000010201a0000000000000000000000000000000000000000000000000000000000102011000000000000000000000000000000000000000000000000000000000010201b0000000000000000000000000000000000000000000000000000000000102012000000000000000000000000000000000000000000000000000000000010201c0000000000000000000000000000000000000000000000000000000000102013000000000000000000000000000000000000000000000000000000000010201d0000000000000000000000000000000000000000000000000000000000102014000000000000000000000000000000000000000000000000000000000010201e0000000000000000000000000000000000000000000000000000000000102015000000000000000000000000000000000000000000000000000000000010201f00000000000000000000000000000000000000000000000000000000001020160000000000000000000000000000000000000000000000000000000000102020000000000000000000000000000000000000000000000000000000000010201700000000000000000000000000000000000000000000000000000000001020210000000000000000000000000000000000000000000000000000000000102018000000000000000000000000000000000000000000000000000000000010202200000000000000000000000000000000000000000000000000000000001020190000000000000000000000000000000000000000000000000000000000102023000000000000000000000000000000000000000000000000000000000010201a0000000000000000000000000000000000000000000000000000000000102024000000000000000000000000000000000000000000000000000000000010201b0000000000000000000000000000000000000000000000000000000000102025000000000000000000000000000000000000000000000000000000000010201c0000000000000000000000000000000000000000000000000000000000102026000000000000000000000000000000000000000000000000000000000010201d0000000000000000000000000000000000000000000000000000000000102027000000000000000000000000000000000000000000000000000000000010201e0000000000000000000000000000000000000000000000000000000000102028000000000000000000000000000000000000000000000000000000000010201f00000000000000000000000000000000000000000000000000000000001020290000000000000000000000000000000000000000000000000000000000102020000000000000000000000000000000000000000000000000000000000010202a0000000000000000000000000000000000000000000000000000000000102021000000000000000000000000000000000000000000000000000000000010202b0000000000000000000000000000000000000000000000000000000000102022000000000000000000000000000000000000000000000000000000000010202c0000000000000000000000000000000000000000000000000000000000102023000000000000000000000000000000000000000000000000000000000010202d0000000000000000000000000000000000000000000000000000000000102024000000000000000000000000000000000000000000000000000000000010202e0000000000000000000000000000000000000000000000000000000000102025000000000000000000000000000000000000000000000000000000000010202f00000000000000000000000000000000000000000000000000000000001020260000000000000000000000000000000000000000000000000000000000102030000000000000000000000000000000000000000000000000000000000010202700000000000000000000000000000000000000000000000000000000001020310000000000000000000000000000000000000000000000000000000000102028000000000000000000000000000000000000000000000000000000000010203200000000000000000000000000000000000000000000000000000000001020290000000000000000000000000000000000000000000000000000000000102033000000000000000000000000000000000000000000000000000000000010202a0000000000000000000000000000000000000000000000000000000000102034000000000000000000000000000000000000000000000000000000000010202b0000000000000000000000000000000000000000000000000000000000102035000000000000000000000000000000000000000000000000000000000010202c0000000000000000000000000000000000000000000000000000000000102036000000000000000000000000000000000000000000000000000000000010202d0000000000000000000000000000000000000000000000000000000000102037000000000000000000000000000000000000000000000000000000000010202e0000000000000000000000000000000000000000000000000000000000102038000000000000000000000000000000000000000000000000000000000010202f00000000000000000000000000000000000000000000000000000000001020390000000000000000000000000000000000000000000000000000000000102030000000000000000000000000000000000000000000000000000000000010203a0000000000000000000000000000000000000000000000000000000000102031000000000000000000000000000000000000000000000000000000000010203b0000000000000000000000000000000000000000000000000000000000102032000000000000000000000000000000000000000000000000000000000010203c0000000000000000000000000000000000000000000000000000000000102033000000000000000000000000000000000000000000000000000000000010203d0000000000000000000000000000000000000000000000000000000000102034000000000000000000000000000000000000000000000000000000000010203e0000000000000000000000000000000000000000000000000000000000102035000000000000000000000000000000000000000000000000000000000010203f00000000000000000000000000000000000000000000000000000000001020360000000000000000000000000000000000000000000000000000000000102040000000000000000000000000000000000000000000000000000000000010203700000000000000000000000000000000000000000000000000000000001020410000000000000000000000000000000000000000000000000000000000102038000000000000000000000000000000000000000000000000000000000010204200000000000000000000000000000000000000000000000000000000001020390000000000000000000000000000000000000000000000000000000000102043000000000000000000000000000000000000000000000000000000000010203a0000000000000000000000000000000000000000000000000000000000102044000000000000000000000000000000000000000000000000000000000010203b0000000000000000000000000000000000000000000000000000000000102045000000000000000000000000000000000000000000000000000000000010203c0000000000000000000000000000000000000000000000000000000000102046000000000000000000000000000000000000000000000000000000000010203d0000000000000000000000000000000000000000000000000000000000102047000000000000000000000000000000000000000000000000000000000010203e0000000000000000000000000000000000000000000000000000000000102048000000000000000000000000000000000000000000000000000000000010203f0000000000000000000000000000000000000000000000000000000000102049200000000000000000000000000000000000000000000000000000000000101700000000000000000000000000000000000000000000000000000000000010170100000000000000000000000000000000000000000000000000000000001017020000000000000000000000000000000000000000000000000000000000101703000000000000000000000000000000000000000000000000000000000010170400000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010170100000000000000000000000000000000000000000000000000000000001017020000000000000000000000000000000000000000000000000000000000101703000000000000000000000000000000000000000000000000000000000010170400000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017020000000000000000000000000000000000000000000000000000000000101703000000000000000000000000000000000000000000000000000000000010170400000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101703000000000000000000000000000000000000000000000000000000000010170400000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010170400000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010171500000000000000000000000000000000000000000000000000000000001017050000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010171500000000000000000000000000000000000000000000000000000000001017160000000000000000000000000000000000000000000000000000000000101706000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010171500000000000000000000000000000000000000000000000000000000001017160000000000000000000000000000000000000000000000000000000000101717000000000000000000000000000000000000000000000000000000000010170700000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010171500000000000000000000000000000000000000000000000000000000001017160000000000000000000000000000000000000000000000000000000000101717000000000000000000000000000000000000000000000000000000000010171800000000000000000000000000000000000000000000000000000000001017080000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f00000000000000000000000000000000000000000000000000000000001017100000000000000000000000000000000000000000000000000000000000101711000000000000000000000000000000000000000000000000000000000010171200000000000000000000000000000000000000000000000000000000001017130000000000000000000000000000000000000000000000000000000000101714000000000000000000000000000000000000000000000000000000000010171500000000000000000000000000000000000000000000000000000000001017160000000000000000000000000000000000000000000000000000000000101717000000000000000000000000000000000000000000000000000000000010171800000000000000000000000000000000000000000000000000000000001017190000000000000000000000000000000000000000000000000000000000101709000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010170a000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010170b000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010170c000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010170d000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010170e000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f000000000000000000000000000000000000000000000000000000000010170f0000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101710000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010171100000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017120000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101713000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010171400000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010172500000000000000000000000000000000000000000000000000000000001017150000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010172500000000000000000000000000000000000000000000000000000000001017260000000000000000000000000000000000000000000000000000000000101716000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010172500000000000000000000000000000000000000000000000000000000001017260000000000000000000000000000000000000000000000000000000000101727000000000000000000000000000000000000000000000000000000000010171700000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010172500000000000000000000000000000000000000000000000000000000001017260000000000000000000000000000000000000000000000000000000000101727000000000000000000000000000000000000000000000000000000000010172800000000000000000000000000000000000000000000000000000000001017180000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f00000000000000000000000000000000000000000000000000000000001017200000000000000000000000000000000000000000000000000000000000101721000000000000000000000000000000000000000000000000000000000010172200000000000000000000000000000000000000000000000000000000001017230000000000000000000000000000000000000000000000000000000000101724000000000000000000000000000000000000000000000000000000000010172500000000000000000000000000000000000000000000000000000000001017260000000000000000000000000000000000000000000000000000000000101727000000000000000000000000000000000000000000000000000000000010172800000000000000000000000000000000000000000000000000000000001017290000000000000000000000000000000000000000000000000000000000101719000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010171a000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010171b000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010172c000000000000000000000000000000000000000000000000000000000010171c000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010172c000000000000000000000000000000000000000000000000000000000010172d000000000000000000000000000000000000000000000000000000000010171d000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010172c000000000000000000000000000000000000000000000000000000000010172d000000000000000000000000000000000000000000000000000000000010172e000000000000000000000000000000000000000000000000000000000010171e000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010172c000000000000000000000000000000000000000000000000000000000010172d000000000000000000000000000000000000000000000000000000000010172e000000000000000000000000000000000000000000000000000000000010172f000000000000000000000000000000000000000000000000000000000010171f0000000000000000000000000000000000000000000000000000000000101720000000000000000000000000000000000000000000000000000000000010172100000000000000000000000000000000000000000000000000000000001017220000000000000000000000000000000000000000000000000000000000101723000000000000000000000000000000000000000000000000000000000010172400000000000000000000000000000000000000000000000000000000001017250000000000000000000000000000000000000000000000000000000000101726000000000000000000000000000000000000000000000000000000000010172700000000000000000000000000000000000000000000000000000000001017280000000000000000000000000000000000000000000000000000000000101729000000000000000000000000000000000000000000000000000000000010172a000000000000000000000000000000000000000000000000000000000010172b000000000000000000000000000000000000000000000000000000000010172c000000000000000000000000000000000000000000000000000000000010172d000000000000000000000000000000000000000000000000000000000010172e000000000000000000000000000000000000000000000000000000000010172f00000000000000000000000000000000000000000000000000000000001017300000", "decodedHeader": { "contentCommitment": { - "blobsHash": "0x008bca7ca4b7a8e50b8c6668f22a085bc22db8c07a6bd6cc556c2bc6bb4c619c", + "blobsHash": "0x001710ef5972afe6e206225f18e63f9764829144c34e8b9ebfc23de47dc52c3e", "inHash": "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c", "outHash": "0x000ca4a4610ad22c97c9161cedcf01faa3619f1b85457f1627d09627b71903a6", "numTxs": 4 @@ -74,11 +73,11 @@ "chainId": 31337, "timestamp": 1736365060, "version": 1, - "coinbase": "0x47a5c7b19f878b54220ac956fb944fcfb5f6b2e6", - "feeRecipient": "0x0ffa0bf0720b8a60f9ff8083ccc832d2667594435c2a611ee678c145019d282e", + "coinbase": "0xd000439d68f416a72188f6c91df9835e23d1619d", + "feeRecipient": "0x27f4b7fbf6f8db148d464396089d97cb994ababc3e1923d24b1e6076b0431b00", "gasFees": { "feePerDaGas": 0, - "feePerL2Gas": 54153579570 + "feePerL2Gas": 1020 } }, "totalFees": "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -108,9 +107,9 @@ } } }, - "header": "0x0237797d6a2c04d20d4fa06b74482bd970ccd51a43d9b05b57e9b91fa1ae1cae000000010000000000000000000000000000000000000000000000000000000000000004008bca7ca4b7a8e50b8c6668f22a085bc22db8c07a6bd6cc556c2bc6bb4c619c00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c000ca4a4610ad22c97c9161cedcf01faa3619f1b85457f1627d09627b71903a62e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d60000001000553ea03210e12bf95ed15f0105108f39db784d318cfe9b52cba413618711ce000001000627376bc9d9804095498d2fe262c2dceeb5ecfc696966496eaee65f1798fed5000001802ded0a11981f5a48076e10c1cf9c4d0676488ed8eab842d8864facb270a02bae000001800000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001b00000000000000000000000000000000000000000000000000000000677ed40447a5c7b19f878b54220ac956fb944fcfb5f6b2e60ffa0bf0720b8a60f9ff8083ccc832d2667594435c2a611ee678c145019d282e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c9bce0c3200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "publicInputsHash": "0x0024ae2f3aaaf1d9958045c221cf68e6b42c7cfe6c014941deb02332d0d1ac60", - "blobInputs": "0x010113d536ef349476f9a5112623449dd1cf574b8213bc6fe33c1edd63bf83289007aff2e4e0cf034a567292731f00b399caf9363aa6885f736b8a1c5c8da3f6f841298f6b0fcd5d6cee2ed721062ef4073eccd62587ff8c39fc91a0661b1a84c2aeb181a091e4f2b84b310211a799750debedff7cd99ade96f11a8b7e21a59f8da25d7077fae92bd1c8234f36a81311e49852d0733109a1b38a5d14bba0f88598f4319dd61a17a5c2d84c63715500c6f2bbbcb6541d22ff3e74830ba760b00615", + "header": "0x0237797d6a2c04d20d4fa06b74482bd970ccd51a43d9b05b57e9b91fa1ae1cae000000010000000000000000000000000000000000000000000000000000000000000004001710ef5972afe6e206225f18e63f9764829144c34e8b9ebfc23de47dc52c3e00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c000ca4a4610ad22c97c9161cedcf01faa3619f1b85457f1627d09627b71903a62e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d60000001000553ea03210e12bf95ed15f0105108f39db784d318cfe9b52cba413618711ce000001000627376bc9d9804095498d2fe262c2dceeb5ecfc696966496eaee65f1798fed5000001802ded0a11981f5a48076e10c1cf9c4d0676488ed8eab842d8864facb270a02bae000001800000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001b00000000000000000000000000000000000000000000000000000000677ed404d000439d68f416a72188f6c91df9835e23d1619d27f4b7fbf6f8db148d464396089d97cb994ababc3e1923d24b1e6076b0431b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003fc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "publicInputsHash": "0x00f49a17357aca8d4daee46a18d9ea65d4fdcc77060fcd86bbd3f8b007e7baa8", + "blobInputs": "0x0101790d1572a5d851a4cceb4cff4f4ba5fb61408a534c888934360a45fc0e3a1401b4c42e36e09814cad53c703f91c130628e44c7371ec2aa2a1715e26c5f850127aba05f8e5daf4233628e74eedbc03169e05d016d457d9da9de21827686e3af9495352ad63141535bd3f4c2037b5baf0c5d8a5f8f05336b110d714e17282004e99cdd47f0ea63180d892578595339d6a50ef46c6447c438311fb7afd9556323905589f07ea2f1231f66d156bc2e271850ec3450360a38b3d21f042439038b4b", "numTxs": 4 } } \ No newline at end of file diff --git a/l1-contracts/test/fixtures/mixed_block_2.json b/l1-contracts/test/fixtures/mixed_block_2.json index 03c373e902e2..c2e4daf0c4a8 100644 --- a/l1-contracts/test/fixtures/mixed_block_2.json +++ b/l1-contracts/test/fixtures/mixed_block_2.json @@ -58,12 +58,11 @@ ] }, "block": { - "archive": "0x04a0194c1e95ce312e2a8bacb859826ade4d022ae8cc7623f1072b03939dda29", - "blockHash": "0x29944b4b73aa8fd8c56e90f8d8f068eae31474204147cc9c75c1b6c3f2c3b6b8", - "body": "0x00000004000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000141000000000000000000000000000000000000000000000000000000000000014100100000000000000000000000000000000000000000000000000000000001410020000000000000000000000000000000000000000000000000000000000141003000000000000000000000000000000000000000000000000000000000014100400000000000000000000000000000000000000000000000000000000001410050000000000000000000000000000000000000000000000000000000000141006000000000000000000000000000000000000000000000000000000000014100700000000000000000000000000000000000000000000000000000000001410080000000000000000000000000000000000000000000000000000000000141009000000000000000000000000000000000000000000000000000000000014100a000000000000000000000000000000000000000000000000000000000014100b000000000000000000000000000000000000000000000000000000000014100c000000000000000000000000000000000000000000000000000000000014100d000000000000000000000000000000000000000000000000000000000014100e000000000000000000000000000000000000000000000000000000000014100f0000000000000000000000000000000000000000000000000000000000141010000000000000000000000000000000000000000000000000000000000014101100000000000000000000000000000000000000000000000000000000001410120000000000000000000000000000000000000000000000000000000000141013000000000000000000000000000000000000000000000000000000000014101400000000000000000000000000000000000000000000000000000000001410150000000000000000000000000000000000000000000000000000000000141016000000000000000000000000000000000000000000000000000000000014101700000000000000000000000000000000000000000000000000000000001410180000000000000000000000000000000000000000000000000000000000141019000000000000000000000000000000000000000000000000000000000014101a000000000000000000000000000000000000000000000000000000000014101b000000000000000000000000000000000000000000000000000000000014101c000000000000000000000000000000000000000000000000000000000014101d000000000000000000000000000000000000000000000000000000000014101e000000000000000000000000000000000000000000000000000000000014101f0000000000000000000000000000000000000000000000000000000000141020000000000000000000000000000000000000000000000000000000000014102100000000000000000000000000000000000000000000000000000000001410220000000000000000000000000000000000000000000000000000000000141023000000000000000000000000000000000000000000000000000000000014102400000000000000000000000000000000000000000000000000000000001410250000000000000000000000000000000000000000000000000000000000141026000000000000000000000000000000000000000000000000000000000014102700000000000000000000000000000000000000000000000000000000001410280000000000000000000000000000000000000000000000000000000000141029000000000000000000000000000000000000000000000000000000000014102a000000000000000000000000000000000000000000000000000000000014102b000000000000000000000000000000000000000000000000000000000014102c000000000000000000000000000000000000000000000000000000000014102d000000000000000000000000000000000000000000000000000000000014102e000000000000000000000000000000000000000000000000000000000014102f0000000000000000000000000000000000000000000000000000000000141030000000000000000000000000000000000000000000000000000000000014103100000000000000000000000000000000000000000000000000000000001410320000000000000000000000000000000000000000000000000000000000141033000000000000000000000000000000000000000000000000000000000014103400000000000000000000000000000000000000000000000000000000001410350000000000000000000000000000000000000000000000000000000000141036000000000000000000000000000000000000000000000000000000000014103700000000000000000000000000000000000000000000000000000000001410380000000000000000000000000000000000000000000000000000000000141039000000000000000000000000000000000000000000000000000000000014103a000000000000000000000000000000000000000000000000000000000014103b000000000000000000000000000000000000000000000000000000000014103c000000000000000000000000000000000000000000000000000000000014103d000000000000000000000000000000000000000000000000000000000014103e000000000000000000000000000000000000000000000000000000000014103f4000000000000000000000000000000000000000000000000000000000001400010000000000000000000000000000000000000000000000000000000000141100000000000000000000000000000000000000000000000000000000000014110100000000000000000000000000000000000000000000000000000000001411020000000000000000000000000000000000000000000000000000000000141103000000000000000000000000000000000000000000000000000000000014110400000000000000000000000000000000000000000000000000000000001411050000000000000000000000000000000000000000000000000000000000141106000000000000000000000000000000000000000000000000000000000014110700000000000000000000000000000000000000000000000000000000001411080000000000000000000000000000000000000000000000000000000000141109000000000000000000000000000000000000000000000000000000000014110a000000000000000000000000000000000000000000000000000000000014110b000000000000000000000000000000000000000000000000000000000014110c000000000000000000000000000000000000000000000000000000000014110d000000000000000000000000000000000000000000000000000000000014110e000000000000000000000000000000000000000000000000000000000014110f0000000000000000000000000000000000000000000000000000000000141110000000000000000000000000000000000000000000000000000000000014111100000000000000000000000000000000000000000000000000000000001411120000000000000000000000000000000000000000000000000000000000141113000000000000000000000000000000000000000000000000000000000014111400000000000000000000000000000000000000000000000000000000001411150000000000000000000000000000000000000000000000000000000000141116000000000000000000000000000000000000000000000000000000000014111700000000000000000000000000000000000000000000000000000000001411180000000000000000000000000000000000000000000000000000000000141119000000000000000000000000000000000000000000000000000000000014111a000000000000000000000000000000000000000000000000000000000014111b000000000000000000000000000000000000000000000000000000000014111c000000000000000000000000000000000000000000000000000000000014111d000000000000000000000000000000000000000000000000000000000014111e000000000000000000000000000000000000000000000000000000000014111f0000000000000000000000000000000000000000000000000000000000141120000000000000000000000000000000000000000000000000000000000014112100000000000000000000000000000000000000000000000000000000001411220000000000000000000000000000000000000000000000000000000000141123000000000000000000000000000000000000000000000000000000000014112400000000000000000000000000000000000000000000000000000000001411250000000000000000000000000000000000000000000000000000000000141126000000000000000000000000000000000000000000000000000000000014112700000000000000000000000000000000000000000000000000000000001411280000000000000000000000000000000000000000000000000000000000141129000000000000000000000000000000000000000000000000000000000014112a000000000000000000000000000000000000000000000000000000000014112b000000000000000000000000000000000000000000000000000000000014112c000000000000000000000000000000000000000000000000000000000014112d000000000000000000000000000000000000000000000000000000000014112e000000000000000000000000000000000000000000000000000000000014112f0000000000000000000000000000000000000000000000000000000000141130000000000000000000000000000000000000000000000000000000000014113100000000000000000000000000000000000000000000000000000000001411320000000000000000000000000000000000000000000000000000000000141133000000000000000000000000000000000000000000000000000000000014113400000000000000000000000000000000000000000000000000000000001411350000000000000000000000000000000000000000000000000000000000141136000000000000000000000000000000000000000000000000000000000014113700000000000000000000000000000000000000000000000000000000001411380000000000000000000000000000000000000000000000000000000000141139000000000000000000000000000000000000000000000000000000000014113a000000000000000000000000000000000000000000000000000000000014113b000000000000000000000000000000000000000000000000000000000014113c000000000000000000000000000000000000000000000000000000000014113d000000000000000000000000000000000000000000000000000000000014113e08005c015113cb57d67dd6c0febd596819ac0298b6a23fc80aba17d445d540059a00f20b7d1308051fe7b68031a7c336b0b4b56738928b6510133aff1b818d5a9a0063eec1883a4f95f4933f9275e850d84b3d035f5061ed986c437a07331fd30e00d3a32d6bbc4fd843686fd0c5e118a73b847529977dca5b9e0e81f6604f22ca00c2f4f5133d9194d41e853e5e951e16690babce8461f25342c0bad20f2aa1e3000a6bf4739e7eb387913d955dc2e8f14f8cce27696b9d2e128b6acefafb80ee005763f7e0648f958b559677622a648f318fc79ebc0cb539170d49c26456e69200302e2b8a92cda941e9af8761b89899a58a587656d9710594e1d865b1652299400000000000000000000000000000000000000000000000000000000000142000000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142001000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142002000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142003000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142004000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142005000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420060000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014200700000000000000000000000000000000000000000000000000000000001420110000000000000000000000000000000000000000000000000000000000142008000000000000000000000000000000000000000000000000000000000014201200000000000000000000000000000000000000000000000000000000001420090000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142016000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142017000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142011000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142012000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420160000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014201700000000000000000000000000000000000000000000000000000000001420210000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014202200000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142026000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142027000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142021000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142022000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420260000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014202700000000000000000000000000000000000000000000000000000000001420310000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014203200000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142036000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142037000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142031000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142032000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014203f00000000000000000000000000000000000000000000000000000000001420360000000000000000000000000000000000000000000000000000000000142040000000000000000000000000000000000000000000000000000000000014203700000000000000000000000000000000000000000000000000000000001420410000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014204200000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142043000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142044000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142045000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142046000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142047000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142048000000000000000000000000000000000000000000000000000000000014203f0000000000000000000000000000000000000000000000000000000000142049200000000000000000000000000000000000000000000000000000000000141700000000000000000000000000000000000000000000000000000000000014170100000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014170100000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014171800000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014171800000000000000000000000000000000000000000000000000000000001417190000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014172800000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014172800000000000000000000000000000000000000000000000000000000001417290000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014172f000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014172f0000000000000000000000000000000000000000000000000000000000141730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000181000000000000000000000000000000000000000000000000000000000000018100100000000000000000000000000000000000000000000000000000000001810020000000000000000000000000000000000000000000000000000000000181003000000000000000000000000000000000000000000000000000000000018100400000000000000000000000000000000000000000000000000000000001810050000000000000000000000000000000000000000000000000000000000181006000000000000000000000000000000000000000000000000000000000018100700000000000000000000000000000000000000000000000000000000001810080000000000000000000000000000000000000000000000000000000000181009000000000000000000000000000000000000000000000000000000000018100a000000000000000000000000000000000000000000000000000000000018100b000000000000000000000000000000000000000000000000000000000018100c000000000000000000000000000000000000000000000000000000000018100d000000000000000000000000000000000000000000000000000000000018100e000000000000000000000000000000000000000000000000000000000018100f0000000000000000000000000000000000000000000000000000000000181010000000000000000000000000000000000000000000000000000000000018101100000000000000000000000000000000000000000000000000000000001810120000000000000000000000000000000000000000000000000000000000181013000000000000000000000000000000000000000000000000000000000018101400000000000000000000000000000000000000000000000000000000001810150000000000000000000000000000000000000000000000000000000000181016000000000000000000000000000000000000000000000000000000000018101700000000000000000000000000000000000000000000000000000000001810180000000000000000000000000000000000000000000000000000000000181019000000000000000000000000000000000000000000000000000000000018101a000000000000000000000000000000000000000000000000000000000018101b000000000000000000000000000000000000000000000000000000000018101c000000000000000000000000000000000000000000000000000000000018101d000000000000000000000000000000000000000000000000000000000018101e000000000000000000000000000000000000000000000000000000000018101f0000000000000000000000000000000000000000000000000000000000181020000000000000000000000000000000000000000000000000000000000018102100000000000000000000000000000000000000000000000000000000001810220000000000000000000000000000000000000000000000000000000000181023000000000000000000000000000000000000000000000000000000000018102400000000000000000000000000000000000000000000000000000000001810250000000000000000000000000000000000000000000000000000000000181026000000000000000000000000000000000000000000000000000000000018102700000000000000000000000000000000000000000000000000000000001810280000000000000000000000000000000000000000000000000000000000181029000000000000000000000000000000000000000000000000000000000018102a000000000000000000000000000000000000000000000000000000000018102b000000000000000000000000000000000000000000000000000000000018102c000000000000000000000000000000000000000000000000000000000018102d000000000000000000000000000000000000000000000000000000000018102e000000000000000000000000000000000000000000000000000000000018102f0000000000000000000000000000000000000000000000000000000000181030000000000000000000000000000000000000000000000000000000000018103100000000000000000000000000000000000000000000000000000000001810320000000000000000000000000000000000000000000000000000000000181033000000000000000000000000000000000000000000000000000000000018103400000000000000000000000000000000000000000000000000000000001810350000000000000000000000000000000000000000000000000000000000181036000000000000000000000000000000000000000000000000000000000018103700000000000000000000000000000000000000000000000000000000001810380000000000000000000000000000000000000000000000000000000000181039000000000000000000000000000000000000000000000000000000000018103a000000000000000000000000000000000000000000000000000000000018103b000000000000000000000000000000000000000000000000000000000018103c000000000000000000000000000000000000000000000000000000000018103d000000000000000000000000000000000000000000000000000000000018103e000000000000000000000000000000000000000000000000000000000018103f4000000000000000000000000000000000000000000000000000000000001800010000000000000000000000000000000000000000000000000000000000181100000000000000000000000000000000000000000000000000000000000018110100000000000000000000000000000000000000000000000000000000001811020000000000000000000000000000000000000000000000000000000000181103000000000000000000000000000000000000000000000000000000000018110400000000000000000000000000000000000000000000000000000000001811050000000000000000000000000000000000000000000000000000000000181106000000000000000000000000000000000000000000000000000000000018110700000000000000000000000000000000000000000000000000000000001811080000000000000000000000000000000000000000000000000000000000181109000000000000000000000000000000000000000000000000000000000018110a000000000000000000000000000000000000000000000000000000000018110b000000000000000000000000000000000000000000000000000000000018110c000000000000000000000000000000000000000000000000000000000018110d000000000000000000000000000000000000000000000000000000000018110e000000000000000000000000000000000000000000000000000000000018110f0000000000000000000000000000000000000000000000000000000000181110000000000000000000000000000000000000000000000000000000000018111100000000000000000000000000000000000000000000000000000000001811120000000000000000000000000000000000000000000000000000000000181113000000000000000000000000000000000000000000000000000000000018111400000000000000000000000000000000000000000000000000000000001811150000000000000000000000000000000000000000000000000000000000181116000000000000000000000000000000000000000000000000000000000018111700000000000000000000000000000000000000000000000000000000001811180000000000000000000000000000000000000000000000000000000000181119000000000000000000000000000000000000000000000000000000000018111a000000000000000000000000000000000000000000000000000000000018111b000000000000000000000000000000000000000000000000000000000018111c000000000000000000000000000000000000000000000000000000000018111d000000000000000000000000000000000000000000000000000000000018111e000000000000000000000000000000000000000000000000000000000018111f0000000000000000000000000000000000000000000000000000000000181120000000000000000000000000000000000000000000000000000000000018112100000000000000000000000000000000000000000000000000000000001811220000000000000000000000000000000000000000000000000000000000181123000000000000000000000000000000000000000000000000000000000018112400000000000000000000000000000000000000000000000000000000001811250000000000000000000000000000000000000000000000000000000000181126000000000000000000000000000000000000000000000000000000000018112700000000000000000000000000000000000000000000000000000000001811280000000000000000000000000000000000000000000000000000000000181129000000000000000000000000000000000000000000000000000000000018112a000000000000000000000000000000000000000000000000000000000018112b000000000000000000000000000000000000000000000000000000000018112c000000000000000000000000000000000000000000000000000000000018112d000000000000000000000000000000000000000000000000000000000018112e000000000000000000000000000000000000000000000000000000000018112f0000000000000000000000000000000000000000000000000000000000181130000000000000000000000000000000000000000000000000000000000018113100000000000000000000000000000000000000000000000000000000001811320000000000000000000000000000000000000000000000000000000000181133000000000000000000000000000000000000000000000000000000000018113400000000000000000000000000000000000000000000000000000000001811350000000000000000000000000000000000000000000000000000000000181136000000000000000000000000000000000000000000000000000000000018113700000000000000000000000000000000000000000000000000000000001811380000000000000000000000000000000000000000000000000000000000181139000000000000000000000000000000000000000000000000000000000018113a000000000000000000000000000000000000000000000000000000000018113b000000000000000000000000000000000000000000000000000000000018113c000000000000000000000000000000000000000000000000000000000018113d000000000000000000000000000000000000000000000000000000000018113e0800f872eb9653f03af10f331da1361fa1524d3cd958cb72dacea1d424f19df3af00ffc548a17cd6ba1f2d228f30e4ddb19ecc46ad3b609977d52bb0f49e1206410032f8058bd779c520eabae2743b02ec4f71670428506fcceb2d4b69f26fb11800c0283e15fbf74ffa4eafb984030394f3c2ea6733cc0eacb0431a9475eff28f00b7f55314bfd9d441c1c624e241908228fe4da3d3a0a7fbd56814e1c8cd5d3e00f430f33a786675271736fd728c7bf7428b8c24ac948d7faf76ddb8783a496c0048fc235ead8d4b9d44929662a6384074fc4e5076bec5b7deb34f612393684300fd9b61cb1ad9b4b28f58399906e73933e3cccee8fc98a393f0eedb95b13ee6400000000000000000000000000000000000000000000000000000000000182000000000000000000000000000000000000000000000000000000000000018200a0000000000000000000000000000000000000000000000000000000000182001000000000000000000000000000000000000000000000000000000000018200b0000000000000000000000000000000000000000000000000000000000182002000000000000000000000000000000000000000000000000000000000018200c0000000000000000000000000000000000000000000000000000000000182003000000000000000000000000000000000000000000000000000000000018200d0000000000000000000000000000000000000000000000000000000000182004000000000000000000000000000000000000000000000000000000000018200e0000000000000000000000000000000000000000000000000000000000182005000000000000000000000000000000000000000000000000000000000018200f00000000000000000000000000000000000000000000000000000000001820060000000000000000000000000000000000000000000000000000000000182010000000000000000000000000000000000000000000000000000000000018200700000000000000000000000000000000000000000000000000000000001820110000000000000000000000000000000000000000000000000000000000182008000000000000000000000000000000000000000000000000000000000018201200000000000000000000000000000000000000000000000000000000001820090000000000000000000000000000000000000000000000000000000000182013000000000000000000000000000000000000000000000000000000000018200a0000000000000000000000000000000000000000000000000000000000182014000000000000000000000000000000000000000000000000000000000018200b0000000000000000000000000000000000000000000000000000000000182015000000000000000000000000000000000000000000000000000000000018200c0000000000000000000000000000000000000000000000000000000000182016000000000000000000000000000000000000000000000000000000000018200d0000000000000000000000000000000000000000000000000000000000182017000000000000000000000000000000000000000000000000000000000018200e0000000000000000000000000000000000000000000000000000000000182018000000000000000000000000000000000000000000000000000000000018200f00000000000000000000000000000000000000000000000000000000001820190000000000000000000000000000000000000000000000000000000000182010000000000000000000000000000000000000000000000000000000000018201a0000000000000000000000000000000000000000000000000000000000182011000000000000000000000000000000000000000000000000000000000018201b0000000000000000000000000000000000000000000000000000000000182012000000000000000000000000000000000000000000000000000000000018201c0000000000000000000000000000000000000000000000000000000000182013000000000000000000000000000000000000000000000000000000000018201d0000000000000000000000000000000000000000000000000000000000182014000000000000000000000000000000000000000000000000000000000018201e0000000000000000000000000000000000000000000000000000000000182015000000000000000000000000000000000000000000000000000000000018201f00000000000000000000000000000000000000000000000000000000001820160000000000000000000000000000000000000000000000000000000000182020000000000000000000000000000000000000000000000000000000000018201700000000000000000000000000000000000000000000000000000000001820210000000000000000000000000000000000000000000000000000000000182018000000000000000000000000000000000000000000000000000000000018202200000000000000000000000000000000000000000000000000000000001820190000000000000000000000000000000000000000000000000000000000182023000000000000000000000000000000000000000000000000000000000018201a0000000000000000000000000000000000000000000000000000000000182024000000000000000000000000000000000000000000000000000000000018201b0000000000000000000000000000000000000000000000000000000000182025000000000000000000000000000000000000000000000000000000000018201c0000000000000000000000000000000000000000000000000000000000182026000000000000000000000000000000000000000000000000000000000018201d0000000000000000000000000000000000000000000000000000000000182027000000000000000000000000000000000000000000000000000000000018201e0000000000000000000000000000000000000000000000000000000000182028000000000000000000000000000000000000000000000000000000000018201f00000000000000000000000000000000000000000000000000000000001820290000000000000000000000000000000000000000000000000000000000182020000000000000000000000000000000000000000000000000000000000018202a0000000000000000000000000000000000000000000000000000000000182021000000000000000000000000000000000000000000000000000000000018202b0000000000000000000000000000000000000000000000000000000000182022000000000000000000000000000000000000000000000000000000000018202c0000000000000000000000000000000000000000000000000000000000182023000000000000000000000000000000000000000000000000000000000018202d0000000000000000000000000000000000000000000000000000000000182024000000000000000000000000000000000000000000000000000000000018202e0000000000000000000000000000000000000000000000000000000000182025000000000000000000000000000000000000000000000000000000000018202f00000000000000000000000000000000000000000000000000000000001820260000000000000000000000000000000000000000000000000000000000182030000000000000000000000000000000000000000000000000000000000018202700000000000000000000000000000000000000000000000000000000001820310000000000000000000000000000000000000000000000000000000000182028000000000000000000000000000000000000000000000000000000000018203200000000000000000000000000000000000000000000000000000000001820290000000000000000000000000000000000000000000000000000000000182033000000000000000000000000000000000000000000000000000000000018202a0000000000000000000000000000000000000000000000000000000000182034000000000000000000000000000000000000000000000000000000000018202b0000000000000000000000000000000000000000000000000000000000182035000000000000000000000000000000000000000000000000000000000018202c0000000000000000000000000000000000000000000000000000000000182036000000000000000000000000000000000000000000000000000000000018202d0000000000000000000000000000000000000000000000000000000000182037000000000000000000000000000000000000000000000000000000000018202e0000000000000000000000000000000000000000000000000000000000182038000000000000000000000000000000000000000000000000000000000018202f00000000000000000000000000000000000000000000000000000000001820390000000000000000000000000000000000000000000000000000000000182030000000000000000000000000000000000000000000000000000000000018203a0000000000000000000000000000000000000000000000000000000000182031000000000000000000000000000000000000000000000000000000000018203b0000000000000000000000000000000000000000000000000000000000182032000000000000000000000000000000000000000000000000000000000018203c0000000000000000000000000000000000000000000000000000000000182033000000000000000000000000000000000000000000000000000000000018203d0000000000000000000000000000000000000000000000000000000000182034000000000000000000000000000000000000000000000000000000000018203e0000000000000000000000000000000000000000000000000000000000182035000000000000000000000000000000000000000000000000000000000018203f00000000000000000000000000000000000000000000000000000000001820360000000000000000000000000000000000000000000000000000000000182040000000000000000000000000000000000000000000000000000000000018203700000000000000000000000000000000000000000000000000000000001820410000000000000000000000000000000000000000000000000000000000182038000000000000000000000000000000000000000000000000000000000018204200000000000000000000000000000000000000000000000000000000001820390000000000000000000000000000000000000000000000000000000000182043000000000000000000000000000000000000000000000000000000000018203a0000000000000000000000000000000000000000000000000000000000182044000000000000000000000000000000000000000000000000000000000018203b0000000000000000000000000000000000000000000000000000000000182045000000000000000000000000000000000000000000000000000000000018203c0000000000000000000000000000000000000000000000000000000000182046000000000000000000000000000000000000000000000000000000000018203d0000000000000000000000000000000000000000000000000000000000182047000000000000000000000000000000000000000000000000000000000018203e0000000000000000000000000000000000000000000000000000000000182048000000000000000000000000000000000000000000000000000000000018203f0000000000000000000000000000000000000000000000000000000000182049200000000000000000000000000000000000000000000000000000000000181700000000000000000000000000000000000000000000000000000000000018170100000000000000000000000000000000000000000000000000000000001817020000000000000000000000000000000000000000000000000000000000181703000000000000000000000000000000000000000000000000000000000018170400000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018170100000000000000000000000000000000000000000000000000000000001817020000000000000000000000000000000000000000000000000000000000181703000000000000000000000000000000000000000000000000000000000018170400000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817020000000000000000000000000000000000000000000000000000000000181703000000000000000000000000000000000000000000000000000000000018170400000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181703000000000000000000000000000000000000000000000000000000000018170400000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018170400000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018171500000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018171500000000000000000000000000000000000000000000000000000000001817160000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018171500000000000000000000000000000000000000000000000000000000001817160000000000000000000000000000000000000000000000000000000000181717000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018171500000000000000000000000000000000000000000000000000000000001817160000000000000000000000000000000000000000000000000000000000181717000000000000000000000000000000000000000000000000000000000018171800000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018171500000000000000000000000000000000000000000000000000000000001817160000000000000000000000000000000000000000000000000000000000181717000000000000000000000000000000000000000000000000000000000018171800000000000000000000000000000000000000000000000000000000001817190000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018172500000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018172500000000000000000000000000000000000000000000000000000000001817260000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018172500000000000000000000000000000000000000000000000000000000001817260000000000000000000000000000000000000000000000000000000000181727000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018172500000000000000000000000000000000000000000000000000000000001817260000000000000000000000000000000000000000000000000000000000181727000000000000000000000000000000000000000000000000000000000018172800000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018172500000000000000000000000000000000000000000000000000000000001817260000000000000000000000000000000000000000000000000000000000181727000000000000000000000000000000000000000000000000000000000018172800000000000000000000000000000000000000000000000000000000001817290000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018172c000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018172c000000000000000000000000000000000000000000000000000000000018172d000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018172c000000000000000000000000000000000000000000000000000000000018172d000000000000000000000000000000000000000000000000000000000018172e000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018172c000000000000000000000000000000000000000000000000000000000018172d000000000000000000000000000000000000000000000000000000000018172e000000000000000000000000000000000000000000000000000000000018172f000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018172c000000000000000000000000000000000000000000000000000000000018172d000000000000000000000000000000000000000000000000000000000018172e000000000000000000000000000000000000000000000000000000000018172f00000000000000000000000000000000000000000000000000000000001817300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000001c100000000000000000000000000000000000000000000000000000000000001c100100000000000000000000000000000000000000000000000000000000001c100200000000000000000000000000000000000000000000000000000000001c100300000000000000000000000000000000000000000000000000000000001c100400000000000000000000000000000000000000000000000000000000001c100500000000000000000000000000000000000000000000000000000000001c100600000000000000000000000000000000000000000000000000000000001c100700000000000000000000000000000000000000000000000000000000001c100800000000000000000000000000000000000000000000000000000000001c100900000000000000000000000000000000000000000000000000000000001c100a00000000000000000000000000000000000000000000000000000000001c100b00000000000000000000000000000000000000000000000000000000001c100c00000000000000000000000000000000000000000000000000000000001c100d00000000000000000000000000000000000000000000000000000000001c100e00000000000000000000000000000000000000000000000000000000001c100f00000000000000000000000000000000000000000000000000000000001c101000000000000000000000000000000000000000000000000000000000001c101100000000000000000000000000000000000000000000000000000000001c101200000000000000000000000000000000000000000000000000000000001c101300000000000000000000000000000000000000000000000000000000001c101400000000000000000000000000000000000000000000000000000000001c101500000000000000000000000000000000000000000000000000000000001c101600000000000000000000000000000000000000000000000000000000001c101700000000000000000000000000000000000000000000000000000000001c101800000000000000000000000000000000000000000000000000000000001c101900000000000000000000000000000000000000000000000000000000001c101a00000000000000000000000000000000000000000000000000000000001c101b00000000000000000000000000000000000000000000000000000000001c101c00000000000000000000000000000000000000000000000000000000001c101d00000000000000000000000000000000000000000000000000000000001c101e00000000000000000000000000000000000000000000000000000000001c101f00000000000000000000000000000000000000000000000000000000001c102000000000000000000000000000000000000000000000000000000000001c102100000000000000000000000000000000000000000000000000000000001c102200000000000000000000000000000000000000000000000000000000001c102300000000000000000000000000000000000000000000000000000000001c102400000000000000000000000000000000000000000000000000000000001c102500000000000000000000000000000000000000000000000000000000001c102600000000000000000000000000000000000000000000000000000000001c102700000000000000000000000000000000000000000000000000000000001c102800000000000000000000000000000000000000000000000000000000001c102900000000000000000000000000000000000000000000000000000000001c102a00000000000000000000000000000000000000000000000000000000001c102b00000000000000000000000000000000000000000000000000000000001c102c00000000000000000000000000000000000000000000000000000000001c102d00000000000000000000000000000000000000000000000000000000001c102e00000000000000000000000000000000000000000000000000000000001c102f00000000000000000000000000000000000000000000000000000000001c103000000000000000000000000000000000000000000000000000000000001c103100000000000000000000000000000000000000000000000000000000001c103200000000000000000000000000000000000000000000000000000000001c103300000000000000000000000000000000000000000000000000000000001c103400000000000000000000000000000000000000000000000000000000001c103500000000000000000000000000000000000000000000000000000000001c103600000000000000000000000000000000000000000000000000000000001c103700000000000000000000000000000000000000000000000000000000001c103800000000000000000000000000000000000000000000000000000000001c103900000000000000000000000000000000000000000000000000000000001c103a00000000000000000000000000000000000000000000000000000000001c103b00000000000000000000000000000000000000000000000000000000001c103c00000000000000000000000000000000000000000000000000000000001c103d00000000000000000000000000000000000000000000000000000000001c103e00000000000000000000000000000000000000000000000000000000001c103f4000000000000000000000000000000000000000000000000000000000001c000100000000000000000000000000000000000000000000000000000000001c110000000000000000000000000000000000000000000000000000000000001c110100000000000000000000000000000000000000000000000000000000001c110200000000000000000000000000000000000000000000000000000000001c110300000000000000000000000000000000000000000000000000000000001c110400000000000000000000000000000000000000000000000000000000001c110500000000000000000000000000000000000000000000000000000000001c110600000000000000000000000000000000000000000000000000000000001c110700000000000000000000000000000000000000000000000000000000001c110800000000000000000000000000000000000000000000000000000000001c110900000000000000000000000000000000000000000000000000000000001c110a00000000000000000000000000000000000000000000000000000000001c110b00000000000000000000000000000000000000000000000000000000001c110c00000000000000000000000000000000000000000000000000000000001c110d00000000000000000000000000000000000000000000000000000000001c110e00000000000000000000000000000000000000000000000000000000001c110f00000000000000000000000000000000000000000000000000000000001c111000000000000000000000000000000000000000000000000000000000001c111100000000000000000000000000000000000000000000000000000000001c111200000000000000000000000000000000000000000000000000000000001c111300000000000000000000000000000000000000000000000000000000001c111400000000000000000000000000000000000000000000000000000000001c111500000000000000000000000000000000000000000000000000000000001c111600000000000000000000000000000000000000000000000000000000001c111700000000000000000000000000000000000000000000000000000000001c111800000000000000000000000000000000000000000000000000000000001c111900000000000000000000000000000000000000000000000000000000001c111a00000000000000000000000000000000000000000000000000000000001c111b00000000000000000000000000000000000000000000000000000000001c111c00000000000000000000000000000000000000000000000000000000001c111d00000000000000000000000000000000000000000000000000000000001c111e00000000000000000000000000000000000000000000000000000000001c111f00000000000000000000000000000000000000000000000000000000001c112000000000000000000000000000000000000000000000000000000000001c112100000000000000000000000000000000000000000000000000000000001c112200000000000000000000000000000000000000000000000000000000001c112300000000000000000000000000000000000000000000000000000000001c112400000000000000000000000000000000000000000000000000000000001c112500000000000000000000000000000000000000000000000000000000001c112600000000000000000000000000000000000000000000000000000000001c112700000000000000000000000000000000000000000000000000000000001c112800000000000000000000000000000000000000000000000000000000001c112900000000000000000000000000000000000000000000000000000000001c112a00000000000000000000000000000000000000000000000000000000001c112b00000000000000000000000000000000000000000000000000000000001c112c00000000000000000000000000000000000000000000000000000000001c112d00000000000000000000000000000000000000000000000000000000001c112e00000000000000000000000000000000000000000000000000000000001c112f00000000000000000000000000000000000000000000000000000000001c113000000000000000000000000000000000000000000000000000000000001c113100000000000000000000000000000000000000000000000000000000001c113200000000000000000000000000000000000000000000000000000000001c113300000000000000000000000000000000000000000000000000000000001c113400000000000000000000000000000000000000000000000000000000001c113500000000000000000000000000000000000000000000000000000000001c113600000000000000000000000000000000000000000000000000000000001c113700000000000000000000000000000000000000000000000000000000001c113800000000000000000000000000000000000000000000000000000000001c113900000000000000000000000000000000000000000000000000000000001c113a00000000000000000000000000000000000000000000000000000000001c113b00000000000000000000000000000000000000000000000000000000001c113c00000000000000000000000000000000000000000000000000000000001c113d00000000000000000000000000000000000000000000000000000000001c113e08006838aa99533bea0d4204cad17cb3c147e99c2f9089e54a4289d54733eeada2002ab314bd11ace2494a3fb0970d276da39f0fe7da19c9a2438b9c7c334d32470071703d79d8425a7eca52006df6a8f9728508a83639e3e1c2ebae2b853a087c00c9501ac04a78ac5413c9131b08708064ed2c2515b8893f12c2d1cda15a44f100a0955f93e109778d26f9e5b0d46e45c539e59b0941517bfa888eb2d7d2d8a6005adc3be9406cc5f102c6adb44746e8529a256e2396353a8659344cc3e914c4007a5fe572cf6af804f472dabf095c5eb6b30efc5fd627ad3245a8ef0f3f578c003dcaa91dfc9fdad7ba8da68a48fc662dfc0a995cbb0c1bc62099c8257d240d4000000000000000000000000000000000000000000000000000000000001c200000000000000000000000000000000000000000000000000000000000001c200a00000000000000000000000000000000000000000000000000000000001c200100000000000000000000000000000000000000000000000000000000001c200b00000000000000000000000000000000000000000000000000000000001c200200000000000000000000000000000000000000000000000000000000001c200c00000000000000000000000000000000000000000000000000000000001c200300000000000000000000000000000000000000000000000000000000001c200d00000000000000000000000000000000000000000000000000000000001c200400000000000000000000000000000000000000000000000000000000001c200e00000000000000000000000000000000000000000000000000000000001c200500000000000000000000000000000000000000000000000000000000001c200f00000000000000000000000000000000000000000000000000000000001c200600000000000000000000000000000000000000000000000000000000001c201000000000000000000000000000000000000000000000000000000000001c200700000000000000000000000000000000000000000000000000000000001c201100000000000000000000000000000000000000000000000000000000001c200800000000000000000000000000000000000000000000000000000000001c201200000000000000000000000000000000000000000000000000000000001c200900000000000000000000000000000000000000000000000000000000001c201300000000000000000000000000000000000000000000000000000000001c200a00000000000000000000000000000000000000000000000000000000001c201400000000000000000000000000000000000000000000000000000000001c200b00000000000000000000000000000000000000000000000000000000001c201500000000000000000000000000000000000000000000000000000000001c200c00000000000000000000000000000000000000000000000000000000001c201600000000000000000000000000000000000000000000000000000000001c200d00000000000000000000000000000000000000000000000000000000001c201700000000000000000000000000000000000000000000000000000000001c200e00000000000000000000000000000000000000000000000000000000001c201800000000000000000000000000000000000000000000000000000000001c200f00000000000000000000000000000000000000000000000000000000001c201900000000000000000000000000000000000000000000000000000000001c201000000000000000000000000000000000000000000000000000000000001c201a00000000000000000000000000000000000000000000000000000000001c201100000000000000000000000000000000000000000000000000000000001c201b00000000000000000000000000000000000000000000000000000000001c201200000000000000000000000000000000000000000000000000000000001c201c00000000000000000000000000000000000000000000000000000000001c201300000000000000000000000000000000000000000000000000000000001c201d00000000000000000000000000000000000000000000000000000000001c201400000000000000000000000000000000000000000000000000000000001c201e00000000000000000000000000000000000000000000000000000000001c201500000000000000000000000000000000000000000000000000000000001c201f00000000000000000000000000000000000000000000000000000000001c201600000000000000000000000000000000000000000000000000000000001c202000000000000000000000000000000000000000000000000000000000001c201700000000000000000000000000000000000000000000000000000000001c202100000000000000000000000000000000000000000000000000000000001c201800000000000000000000000000000000000000000000000000000000001c202200000000000000000000000000000000000000000000000000000000001c201900000000000000000000000000000000000000000000000000000000001c202300000000000000000000000000000000000000000000000000000000001c201a00000000000000000000000000000000000000000000000000000000001c202400000000000000000000000000000000000000000000000000000000001c201b00000000000000000000000000000000000000000000000000000000001c202500000000000000000000000000000000000000000000000000000000001c201c00000000000000000000000000000000000000000000000000000000001c202600000000000000000000000000000000000000000000000000000000001c201d00000000000000000000000000000000000000000000000000000000001c202700000000000000000000000000000000000000000000000000000000001c201e00000000000000000000000000000000000000000000000000000000001c202800000000000000000000000000000000000000000000000000000000001c201f00000000000000000000000000000000000000000000000000000000001c202900000000000000000000000000000000000000000000000000000000001c202000000000000000000000000000000000000000000000000000000000001c202a00000000000000000000000000000000000000000000000000000000001c202100000000000000000000000000000000000000000000000000000000001c202b00000000000000000000000000000000000000000000000000000000001c202200000000000000000000000000000000000000000000000000000000001c202c00000000000000000000000000000000000000000000000000000000001c202300000000000000000000000000000000000000000000000000000000001c202d00000000000000000000000000000000000000000000000000000000001c202400000000000000000000000000000000000000000000000000000000001c202e00000000000000000000000000000000000000000000000000000000001c202500000000000000000000000000000000000000000000000000000000001c202f00000000000000000000000000000000000000000000000000000000001c202600000000000000000000000000000000000000000000000000000000001c203000000000000000000000000000000000000000000000000000000000001c202700000000000000000000000000000000000000000000000000000000001c203100000000000000000000000000000000000000000000000000000000001c202800000000000000000000000000000000000000000000000000000000001c203200000000000000000000000000000000000000000000000000000000001c202900000000000000000000000000000000000000000000000000000000001c203300000000000000000000000000000000000000000000000000000000001c202a00000000000000000000000000000000000000000000000000000000001c203400000000000000000000000000000000000000000000000000000000001c202b00000000000000000000000000000000000000000000000000000000001c203500000000000000000000000000000000000000000000000000000000001c202c00000000000000000000000000000000000000000000000000000000001c203600000000000000000000000000000000000000000000000000000000001c202d00000000000000000000000000000000000000000000000000000000001c203700000000000000000000000000000000000000000000000000000000001c202e00000000000000000000000000000000000000000000000000000000001c203800000000000000000000000000000000000000000000000000000000001c202f00000000000000000000000000000000000000000000000000000000001c203900000000000000000000000000000000000000000000000000000000001c203000000000000000000000000000000000000000000000000000000000001c203a00000000000000000000000000000000000000000000000000000000001c203100000000000000000000000000000000000000000000000000000000001c203b00000000000000000000000000000000000000000000000000000000001c203200000000000000000000000000000000000000000000000000000000001c203c00000000000000000000000000000000000000000000000000000000001c203300000000000000000000000000000000000000000000000000000000001c203d00000000000000000000000000000000000000000000000000000000001c203400000000000000000000000000000000000000000000000000000000001c203e00000000000000000000000000000000000000000000000000000000001c203500000000000000000000000000000000000000000000000000000000001c203f00000000000000000000000000000000000000000000000000000000001c203600000000000000000000000000000000000000000000000000000000001c204000000000000000000000000000000000000000000000000000000000001c203700000000000000000000000000000000000000000000000000000000001c204100000000000000000000000000000000000000000000000000000000001c203800000000000000000000000000000000000000000000000000000000001c204200000000000000000000000000000000000000000000000000000000001c203900000000000000000000000000000000000000000000000000000000001c204300000000000000000000000000000000000000000000000000000000001c203a00000000000000000000000000000000000000000000000000000000001c204400000000000000000000000000000000000000000000000000000000001c203b00000000000000000000000000000000000000000000000000000000001c204500000000000000000000000000000000000000000000000000000000001c203c00000000000000000000000000000000000000000000000000000000001c204600000000000000000000000000000000000000000000000000000000001c203d00000000000000000000000000000000000000000000000000000000001c204700000000000000000000000000000000000000000000000000000000001c203e00000000000000000000000000000000000000000000000000000000001c204800000000000000000000000000000000000000000000000000000000001c203f00000000000000000000000000000000000000000000000000000000001c20492000000000000000000000000000000000000000000000000000000000001c170000000000000000000000000000000000000000000000000000000000001c170100000000000000000000000000000000000000000000000000000000001c170200000000000000000000000000000000000000000000000000000000001c170300000000000000000000000000000000000000000000000000000000001c170400000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c170100000000000000000000000000000000000000000000000000000000001c170200000000000000000000000000000000000000000000000000000000001c170300000000000000000000000000000000000000000000000000000000001c170400000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c170200000000000000000000000000000000000000000000000000000000001c170300000000000000000000000000000000000000000000000000000000001c170400000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c170300000000000000000000000000000000000000000000000000000000001c170400000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c170400000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c172c00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c172c00000000000000000000000000000000000000000000000000000000001c172d00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c172c00000000000000000000000000000000000000000000000000000000001c172d00000000000000000000000000000000000000000000000000000000001c172e00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c172c00000000000000000000000000000000000000000000000000000000001c172d00000000000000000000000000000000000000000000000000000000001c172e00000000000000000000000000000000000000000000000000000000001c172f00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c172c00000000000000000000000000000000000000000000000000000000001c172d00000000000000000000000000000000000000000000000000000000001c172e00000000000000000000000000000000000000000000000000000000001c172f00000000000000000000000000000000000000000000000000000000001c1730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000201000000000000000000000000000000000000000000000000000000000000020100100000000000000000000000000000000000000000000000000000000002010020000000000000000000000000000000000000000000000000000000000201003000000000000000000000000000000000000000000000000000000000020100400000000000000000000000000000000000000000000000000000000002010050000000000000000000000000000000000000000000000000000000000201006000000000000000000000000000000000000000000000000000000000020100700000000000000000000000000000000000000000000000000000000002010080000000000000000000000000000000000000000000000000000000000201009000000000000000000000000000000000000000000000000000000000020100a000000000000000000000000000000000000000000000000000000000020100b000000000000000000000000000000000000000000000000000000000020100c000000000000000000000000000000000000000000000000000000000020100d000000000000000000000000000000000000000000000000000000000020100e000000000000000000000000000000000000000000000000000000000020100f0000000000000000000000000000000000000000000000000000000000201010000000000000000000000000000000000000000000000000000000000020101100000000000000000000000000000000000000000000000000000000002010120000000000000000000000000000000000000000000000000000000000201013000000000000000000000000000000000000000000000000000000000020101400000000000000000000000000000000000000000000000000000000002010150000000000000000000000000000000000000000000000000000000000201016000000000000000000000000000000000000000000000000000000000020101700000000000000000000000000000000000000000000000000000000002010180000000000000000000000000000000000000000000000000000000000201019000000000000000000000000000000000000000000000000000000000020101a000000000000000000000000000000000000000000000000000000000020101b000000000000000000000000000000000000000000000000000000000020101c000000000000000000000000000000000000000000000000000000000020101d000000000000000000000000000000000000000000000000000000000020101e000000000000000000000000000000000000000000000000000000000020101f0000000000000000000000000000000000000000000000000000000000201020000000000000000000000000000000000000000000000000000000000020102100000000000000000000000000000000000000000000000000000000002010220000000000000000000000000000000000000000000000000000000000201023000000000000000000000000000000000000000000000000000000000020102400000000000000000000000000000000000000000000000000000000002010250000000000000000000000000000000000000000000000000000000000201026000000000000000000000000000000000000000000000000000000000020102700000000000000000000000000000000000000000000000000000000002010280000000000000000000000000000000000000000000000000000000000201029000000000000000000000000000000000000000000000000000000000020102a000000000000000000000000000000000000000000000000000000000020102b000000000000000000000000000000000000000000000000000000000020102c000000000000000000000000000000000000000000000000000000000020102d000000000000000000000000000000000000000000000000000000000020102e000000000000000000000000000000000000000000000000000000000020102f0000000000000000000000000000000000000000000000000000000000201030000000000000000000000000000000000000000000000000000000000020103100000000000000000000000000000000000000000000000000000000002010320000000000000000000000000000000000000000000000000000000000201033000000000000000000000000000000000000000000000000000000000020103400000000000000000000000000000000000000000000000000000000002010350000000000000000000000000000000000000000000000000000000000201036000000000000000000000000000000000000000000000000000000000020103700000000000000000000000000000000000000000000000000000000002010380000000000000000000000000000000000000000000000000000000000201039000000000000000000000000000000000000000000000000000000000020103a000000000000000000000000000000000000000000000000000000000020103b000000000000000000000000000000000000000000000000000000000020103c000000000000000000000000000000000000000000000000000000000020103d000000000000000000000000000000000000000000000000000000000020103e000000000000000000000000000000000000000000000000000000000020103f4000000000000000000000000000000000000000000000000000000000002000010000000000000000000000000000000000000000000000000000000000201100000000000000000000000000000000000000000000000000000000000020110100000000000000000000000000000000000000000000000000000000002011020000000000000000000000000000000000000000000000000000000000201103000000000000000000000000000000000000000000000000000000000020110400000000000000000000000000000000000000000000000000000000002011050000000000000000000000000000000000000000000000000000000000201106000000000000000000000000000000000000000000000000000000000020110700000000000000000000000000000000000000000000000000000000002011080000000000000000000000000000000000000000000000000000000000201109000000000000000000000000000000000000000000000000000000000020110a000000000000000000000000000000000000000000000000000000000020110b000000000000000000000000000000000000000000000000000000000020110c000000000000000000000000000000000000000000000000000000000020110d000000000000000000000000000000000000000000000000000000000020110e000000000000000000000000000000000000000000000000000000000020110f0000000000000000000000000000000000000000000000000000000000201110000000000000000000000000000000000000000000000000000000000020111100000000000000000000000000000000000000000000000000000000002011120000000000000000000000000000000000000000000000000000000000201113000000000000000000000000000000000000000000000000000000000020111400000000000000000000000000000000000000000000000000000000002011150000000000000000000000000000000000000000000000000000000000201116000000000000000000000000000000000000000000000000000000000020111700000000000000000000000000000000000000000000000000000000002011180000000000000000000000000000000000000000000000000000000000201119000000000000000000000000000000000000000000000000000000000020111a000000000000000000000000000000000000000000000000000000000020111b000000000000000000000000000000000000000000000000000000000020111c000000000000000000000000000000000000000000000000000000000020111d000000000000000000000000000000000000000000000000000000000020111e000000000000000000000000000000000000000000000000000000000020111f0000000000000000000000000000000000000000000000000000000000201120000000000000000000000000000000000000000000000000000000000020112100000000000000000000000000000000000000000000000000000000002011220000000000000000000000000000000000000000000000000000000000201123000000000000000000000000000000000000000000000000000000000020112400000000000000000000000000000000000000000000000000000000002011250000000000000000000000000000000000000000000000000000000000201126000000000000000000000000000000000000000000000000000000000020112700000000000000000000000000000000000000000000000000000000002011280000000000000000000000000000000000000000000000000000000000201129000000000000000000000000000000000000000000000000000000000020112a000000000000000000000000000000000000000000000000000000000020112b000000000000000000000000000000000000000000000000000000000020112c000000000000000000000000000000000000000000000000000000000020112d000000000000000000000000000000000000000000000000000000000020112e000000000000000000000000000000000000000000000000000000000020112f0000000000000000000000000000000000000000000000000000000000201130000000000000000000000000000000000000000000000000000000000020113100000000000000000000000000000000000000000000000000000000002011320000000000000000000000000000000000000000000000000000000000201133000000000000000000000000000000000000000000000000000000000020113400000000000000000000000000000000000000000000000000000000002011350000000000000000000000000000000000000000000000000000000000201136000000000000000000000000000000000000000000000000000000000020113700000000000000000000000000000000000000000000000000000000002011380000000000000000000000000000000000000000000000000000000000201139000000000000000000000000000000000000000000000000000000000020113a000000000000000000000000000000000000000000000000000000000020113b000000000000000000000000000000000000000000000000000000000020113c000000000000000000000000000000000000000000000000000000000020113d000000000000000000000000000000000000000000000000000000000020113e0800e9805e8a4faa87fc419af08a6d956f18976c46ea694bbd4cf6946e6d02033200e0925a6b172b4b01bb76eb1d3f7dd2ced118bca70d223a6d61afa1b75915ae00383590492d2f99a0283d1de57015b4b6b0759a8023af2c68fb4929dee2f303007ed57100dd77e2b6405f780503ef61b7b53e13f344b6e6a6eff3e3c13de0d0001ab1b0c348c46184dbc86ff79f248e7da1b09d3f9c6a986e98fe45389f060d0023d134bc68d7efa25e255001069827dc0bee766c08c988d6300071ed27fe6c0031cbb780b07f632cbaf767dc80608cc0a8e1d1df3ecd6f5d8bc0ca6703e4f4002c7dc9e731fc5f6456b2a70b4e636ac17d5e0cd36d3a591116a9e124f73586400000000000000000000000000000000000000000000000000000000000202000000000000000000000000000000000000000000000000000000000000020200a0000000000000000000000000000000000000000000000000000000000202001000000000000000000000000000000000000000000000000000000000020200b0000000000000000000000000000000000000000000000000000000000202002000000000000000000000000000000000000000000000000000000000020200c0000000000000000000000000000000000000000000000000000000000202003000000000000000000000000000000000000000000000000000000000020200d0000000000000000000000000000000000000000000000000000000000202004000000000000000000000000000000000000000000000000000000000020200e0000000000000000000000000000000000000000000000000000000000202005000000000000000000000000000000000000000000000000000000000020200f00000000000000000000000000000000000000000000000000000000002020060000000000000000000000000000000000000000000000000000000000202010000000000000000000000000000000000000000000000000000000000020200700000000000000000000000000000000000000000000000000000000002020110000000000000000000000000000000000000000000000000000000000202008000000000000000000000000000000000000000000000000000000000020201200000000000000000000000000000000000000000000000000000000002020090000000000000000000000000000000000000000000000000000000000202013000000000000000000000000000000000000000000000000000000000020200a0000000000000000000000000000000000000000000000000000000000202014000000000000000000000000000000000000000000000000000000000020200b0000000000000000000000000000000000000000000000000000000000202015000000000000000000000000000000000000000000000000000000000020200c0000000000000000000000000000000000000000000000000000000000202016000000000000000000000000000000000000000000000000000000000020200d0000000000000000000000000000000000000000000000000000000000202017000000000000000000000000000000000000000000000000000000000020200e0000000000000000000000000000000000000000000000000000000000202018000000000000000000000000000000000000000000000000000000000020200f00000000000000000000000000000000000000000000000000000000002020190000000000000000000000000000000000000000000000000000000000202010000000000000000000000000000000000000000000000000000000000020201a0000000000000000000000000000000000000000000000000000000000202011000000000000000000000000000000000000000000000000000000000020201b0000000000000000000000000000000000000000000000000000000000202012000000000000000000000000000000000000000000000000000000000020201c0000000000000000000000000000000000000000000000000000000000202013000000000000000000000000000000000000000000000000000000000020201d0000000000000000000000000000000000000000000000000000000000202014000000000000000000000000000000000000000000000000000000000020201e0000000000000000000000000000000000000000000000000000000000202015000000000000000000000000000000000000000000000000000000000020201f00000000000000000000000000000000000000000000000000000000002020160000000000000000000000000000000000000000000000000000000000202020000000000000000000000000000000000000000000000000000000000020201700000000000000000000000000000000000000000000000000000000002020210000000000000000000000000000000000000000000000000000000000202018000000000000000000000000000000000000000000000000000000000020202200000000000000000000000000000000000000000000000000000000002020190000000000000000000000000000000000000000000000000000000000202023000000000000000000000000000000000000000000000000000000000020201a0000000000000000000000000000000000000000000000000000000000202024000000000000000000000000000000000000000000000000000000000020201b0000000000000000000000000000000000000000000000000000000000202025000000000000000000000000000000000000000000000000000000000020201c0000000000000000000000000000000000000000000000000000000000202026000000000000000000000000000000000000000000000000000000000020201d0000000000000000000000000000000000000000000000000000000000202027000000000000000000000000000000000000000000000000000000000020201e0000000000000000000000000000000000000000000000000000000000202028000000000000000000000000000000000000000000000000000000000020201f00000000000000000000000000000000000000000000000000000000002020290000000000000000000000000000000000000000000000000000000000202020000000000000000000000000000000000000000000000000000000000020202a0000000000000000000000000000000000000000000000000000000000202021000000000000000000000000000000000000000000000000000000000020202b0000000000000000000000000000000000000000000000000000000000202022000000000000000000000000000000000000000000000000000000000020202c0000000000000000000000000000000000000000000000000000000000202023000000000000000000000000000000000000000000000000000000000020202d0000000000000000000000000000000000000000000000000000000000202024000000000000000000000000000000000000000000000000000000000020202e0000000000000000000000000000000000000000000000000000000000202025000000000000000000000000000000000000000000000000000000000020202f00000000000000000000000000000000000000000000000000000000002020260000000000000000000000000000000000000000000000000000000000202030000000000000000000000000000000000000000000000000000000000020202700000000000000000000000000000000000000000000000000000000002020310000000000000000000000000000000000000000000000000000000000202028000000000000000000000000000000000000000000000000000000000020203200000000000000000000000000000000000000000000000000000000002020290000000000000000000000000000000000000000000000000000000000202033000000000000000000000000000000000000000000000000000000000020202a0000000000000000000000000000000000000000000000000000000000202034000000000000000000000000000000000000000000000000000000000020202b0000000000000000000000000000000000000000000000000000000000202035000000000000000000000000000000000000000000000000000000000020202c0000000000000000000000000000000000000000000000000000000000202036000000000000000000000000000000000000000000000000000000000020202d0000000000000000000000000000000000000000000000000000000000202037000000000000000000000000000000000000000000000000000000000020202e0000000000000000000000000000000000000000000000000000000000202038000000000000000000000000000000000000000000000000000000000020202f00000000000000000000000000000000000000000000000000000000002020390000000000000000000000000000000000000000000000000000000000202030000000000000000000000000000000000000000000000000000000000020203a0000000000000000000000000000000000000000000000000000000000202031000000000000000000000000000000000000000000000000000000000020203b0000000000000000000000000000000000000000000000000000000000202032000000000000000000000000000000000000000000000000000000000020203c0000000000000000000000000000000000000000000000000000000000202033000000000000000000000000000000000000000000000000000000000020203d0000000000000000000000000000000000000000000000000000000000202034000000000000000000000000000000000000000000000000000000000020203e0000000000000000000000000000000000000000000000000000000000202035000000000000000000000000000000000000000000000000000000000020203f00000000000000000000000000000000000000000000000000000000002020360000000000000000000000000000000000000000000000000000000000202040000000000000000000000000000000000000000000000000000000000020203700000000000000000000000000000000000000000000000000000000002020410000000000000000000000000000000000000000000000000000000000202038000000000000000000000000000000000000000000000000000000000020204200000000000000000000000000000000000000000000000000000000002020390000000000000000000000000000000000000000000000000000000000202043000000000000000000000000000000000000000000000000000000000020203a0000000000000000000000000000000000000000000000000000000000202044000000000000000000000000000000000000000000000000000000000020203b0000000000000000000000000000000000000000000000000000000000202045000000000000000000000000000000000000000000000000000000000020203c0000000000000000000000000000000000000000000000000000000000202046000000000000000000000000000000000000000000000000000000000020203d0000000000000000000000000000000000000000000000000000000000202047000000000000000000000000000000000000000000000000000000000020203e0000000000000000000000000000000000000000000000000000000000202048000000000000000000000000000000000000000000000000000000000020203f0000000000000000000000000000000000000000000000000000000000202049200000000000000000000000000000000000000000000000000000000000201700000000000000000000000000000000000000000000000000000000000020170100000000000000000000000000000000000000000000000000000000002017020000000000000000000000000000000000000000000000000000000000201703000000000000000000000000000000000000000000000000000000000020170400000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020170100000000000000000000000000000000000000000000000000000000002017020000000000000000000000000000000000000000000000000000000000201703000000000000000000000000000000000000000000000000000000000020170400000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017020000000000000000000000000000000000000000000000000000000000201703000000000000000000000000000000000000000000000000000000000020170400000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201703000000000000000000000000000000000000000000000000000000000020170400000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020170400000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020171500000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020171500000000000000000000000000000000000000000000000000000000002017160000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020171500000000000000000000000000000000000000000000000000000000002017160000000000000000000000000000000000000000000000000000000000201717000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020171500000000000000000000000000000000000000000000000000000000002017160000000000000000000000000000000000000000000000000000000000201717000000000000000000000000000000000000000000000000000000000020171800000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020171500000000000000000000000000000000000000000000000000000000002017160000000000000000000000000000000000000000000000000000000000201717000000000000000000000000000000000000000000000000000000000020171800000000000000000000000000000000000000000000000000000000002017190000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020172500000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020172500000000000000000000000000000000000000000000000000000000002017260000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020172500000000000000000000000000000000000000000000000000000000002017260000000000000000000000000000000000000000000000000000000000201727000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020172500000000000000000000000000000000000000000000000000000000002017260000000000000000000000000000000000000000000000000000000000201727000000000000000000000000000000000000000000000000000000000020172800000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020172500000000000000000000000000000000000000000000000000000000002017260000000000000000000000000000000000000000000000000000000000201727000000000000000000000000000000000000000000000000000000000020172800000000000000000000000000000000000000000000000000000000002017290000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020172c000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020172c000000000000000000000000000000000000000000000000000000000020172d000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020172c000000000000000000000000000000000000000000000000000000000020172d000000000000000000000000000000000000000000000000000000000020172e000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020172c000000000000000000000000000000000000000000000000000000000020172d000000000000000000000000000000000000000000000000000000000020172e000000000000000000000000000000000000000000000000000000000020172f000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020172c000000000000000000000000000000000000000000000000000000000020172d000000000000000000000000000000000000000000000000000000000020172e000000000000000000000000000000000000000000000000000000000020172f0000000000000000000000000000000000000000000000000000000000201730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "archive": "0x16ebef361e14615000aa7b4e06a3f3cca4822966a7eba8f86cd95e22fd8863c7", + "body": "0x0000000400132efbbfb18630ccfb96cb80ccf9c1d3b08bae51812be6e78f1aa72439a00b800000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000141000000000000000000000000000000000000000000000000000000000000014100100000000000000000000000000000000000000000000000000000000001410020000000000000000000000000000000000000000000000000000000000141003000000000000000000000000000000000000000000000000000000000014100400000000000000000000000000000000000000000000000000000000001410050000000000000000000000000000000000000000000000000000000000141006000000000000000000000000000000000000000000000000000000000014100700000000000000000000000000000000000000000000000000000000001410080000000000000000000000000000000000000000000000000000000000141009000000000000000000000000000000000000000000000000000000000014100a000000000000000000000000000000000000000000000000000000000014100b000000000000000000000000000000000000000000000000000000000014100c000000000000000000000000000000000000000000000000000000000014100d000000000000000000000000000000000000000000000000000000000014100e000000000000000000000000000000000000000000000000000000000014100f0000000000000000000000000000000000000000000000000000000000141010000000000000000000000000000000000000000000000000000000000014101100000000000000000000000000000000000000000000000000000000001410120000000000000000000000000000000000000000000000000000000000141013000000000000000000000000000000000000000000000000000000000014101400000000000000000000000000000000000000000000000000000000001410150000000000000000000000000000000000000000000000000000000000141016000000000000000000000000000000000000000000000000000000000014101700000000000000000000000000000000000000000000000000000000001410180000000000000000000000000000000000000000000000000000000000141019000000000000000000000000000000000000000000000000000000000014101a000000000000000000000000000000000000000000000000000000000014101b000000000000000000000000000000000000000000000000000000000014101c000000000000000000000000000000000000000000000000000000000014101d000000000000000000000000000000000000000000000000000000000014101e000000000000000000000000000000000000000000000000000000000014101f0000000000000000000000000000000000000000000000000000000000141020000000000000000000000000000000000000000000000000000000000014102100000000000000000000000000000000000000000000000000000000001410220000000000000000000000000000000000000000000000000000000000141023000000000000000000000000000000000000000000000000000000000014102400000000000000000000000000000000000000000000000000000000001410250000000000000000000000000000000000000000000000000000000000141026000000000000000000000000000000000000000000000000000000000014102700000000000000000000000000000000000000000000000000000000001410280000000000000000000000000000000000000000000000000000000000141029000000000000000000000000000000000000000000000000000000000014102a000000000000000000000000000000000000000000000000000000000014102b000000000000000000000000000000000000000000000000000000000014102c000000000000000000000000000000000000000000000000000000000014102d000000000000000000000000000000000000000000000000000000000014102e000000000000000000000000000000000000000000000000000000000014102f0000000000000000000000000000000000000000000000000000000000141030000000000000000000000000000000000000000000000000000000000014103100000000000000000000000000000000000000000000000000000000001410320000000000000000000000000000000000000000000000000000000000141033000000000000000000000000000000000000000000000000000000000014103400000000000000000000000000000000000000000000000000000000001410350000000000000000000000000000000000000000000000000000000000141036000000000000000000000000000000000000000000000000000000000014103700000000000000000000000000000000000000000000000000000000001410380000000000000000000000000000000000000000000000000000000000141039000000000000000000000000000000000000000000000000000000000014103a000000000000000000000000000000000000000000000000000000000014103b000000000000000000000000000000000000000000000000000000000014103c000000000000000000000000000000000000000000000000000000000014103d000000000000000000000000000000000000000000000000000000000014103e000000000000000000000000000000000000000000000000000000000014103f4000000000000000000000000000000000000000000000000000000000001400010000000000000000000000000000000000000000000000000000000000141100000000000000000000000000000000000000000000000000000000000014110100000000000000000000000000000000000000000000000000000000001411020000000000000000000000000000000000000000000000000000000000141103000000000000000000000000000000000000000000000000000000000014110400000000000000000000000000000000000000000000000000000000001411050000000000000000000000000000000000000000000000000000000000141106000000000000000000000000000000000000000000000000000000000014110700000000000000000000000000000000000000000000000000000000001411080000000000000000000000000000000000000000000000000000000000141109000000000000000000000000000000000000000000000000000000000014110a000000000000000000000000000000000000000000000000000000000014110b000000000000000000000000000000000000000000000000000000000014110c000000000000000000000000000000000000000000000000000000000014110d000000000000000000000000000000000000000000000000000000000014110e000000000000000000000000000000000000000000000000000000000014110f0000000000000000000000000000000000000000000000000000000000141110000000000000000000000000000000000000000000000000000000000014111100000000000000000000000000000000000000000000000000000000001411120000000000000000000000000000000000000000000000000000000000141113000000000000000000000000000000000000000000000000000000000014111400000000000000000000000000000000000000000000000000000000001411150000000000000000000000000000000000000000000000000000000000141116000000000000000000000000000000000000000000000000000000000014111700000000000000000000000000000000000000000000000000000000001411180000000000000000000000000000000000000000000000000000000000141119000000000000000000000000000000000000000000000000000000000014111a000000000000000000000000000000000000000000000000000000000014111b000000000000000000000000000000000000000000000000000000000014111c000000000000000000000000000000000000000000000000000000000014111d000000000000000000000000000000000000000000000000000000000014111e000000000000000000000000000000000000000000000000000000000014111f0000000000000000000000000000000000000000000000000000000000141120000000000000000000000000000000000000000000000000000000000014112100000000000000000000000000000000000000000000000000000000001411220000000000000000000000000000000000000000000000000000000000141123000000000000000000000000000000000000000000000000000000000014112400000000000000000000000000000000000000000000000000000000001411250000000000000000000000000000000000000000000000000000000000141126000000000000000000000000000000000000000000000000000000000014112700000000000000000000000000000000000000000000000000000000001411280000000000000000000000000000000000000000000000000000000000141129000000000000000000000000000000000000000000000000000000000014112a000000000000000000000000000000000000000000000000000000000014112b000000000000000000000000000000000000000000000000000000000014112c000000000000000000000000000000000000000000000000000000000014112d000000000000000000000000000000000000000000000000000000000014112e000000000000000000000000000000000000000000000000000000000014112f0000000000000000000000000000000000000000000000000000000000141130000000000000000000000000000000000000000000000000000000000014113100000000000000000000000000000000000000000000000000000000001411320000000000000000000000000000000000000000000000000000000000141133000000000000000000000000000000000000000000000000000000000014113400000000000000000000000000000000000000000000000000000000001411350000000000000000000000000000000000000000000000000000000000141136000000000000000000000000000000000000000000000000000000000014113700000000000000000000000000000000000000000000000000000000001411380000000000000000000000000000000000000000000000000000000000141139000000000000000000000000000000000000000000000000000000000014113a000000000000000000000000000000000000000000000000000000000014113b000000000000000000000000000000000000000000000000000000000014113c000000000000000000000000000000000000000000000000000000000014113d000000000000000000000000000000000000000000000000000000000014113e08005c015113cb57d67dd6c0febd596819ac0298b6a23fc80aba17d445d540059a00f20b7d1308051fe7b68031a7c336b0b4b56738928b6510133aff1b818d5a9a0063eec1883a4f95f4933f9275e850d84b3d035f5061ed986c437a07331fd30e00d3a32d6bbc4fd843686fd0c5e118a73b847529977dca5b9e0e81f6604f22ca00c2f4f5133d9194d41e853e5e951e16690babce8461f25342c0bad20f2aa1e3000a6bf4739e7eb387913d955dc2e8f14f8cce27696b9d2e128b6acefafb80ee005763f7e0648f958b559677622a648f318fc79ebc0cb539170d49c26456e69200302e2b8a92cda941e9af8761b89899a58a587656d9710594e1d865b1652299400000000000000000000000000000000000000000000000000000000000142000000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142001000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142002000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142003000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142004000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142005000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420060000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014200700000000000000000000000000000000000000000000000000000000001420110000000000000000000000000000000000000000000000000000000000142008000000000000000000000000000000000000000000000000000000000014201200000000000000000000000000000000000000000000000000000000001420090000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142016000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142017000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142011000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142012000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420160000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014201700000000000000000000000000000000000000000000000000000000001420210000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014202200000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142026000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142027000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142021000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142022000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420260000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014202700000000000000000000000000000000000000000000000000000000001420310000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014203200000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142036000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142037000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142031000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142032000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014203f00000000000000000000000000000000000000000000000000000000001420360000000000000000000000000000000000000000000000000000000000142040000000000000000000000000000000000000000000000000000000000014203700000000000000000000000000000000000000000000000000000000001420410000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014204200000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142043000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142044000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142045000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142046000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142047000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142048000000000000000000000000000000000000000000000000000000000014203f0000000000000000000000000000000000000000000000000000000000142049200000000000000000000000000000000000000000000000000000000000141700000000000000000000000000000000000000000000000000000000000014170100000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014170100000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014171800000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014171800000000000000000000000000000000000000000000000000000000001417190000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014172800000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014172800000000000000000000000000000000000000000000000000000000001417290000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014172f000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014172f0000000000000000000000000000000000000000000000000000000000141730000000138b0bf30cf6731d2aab5dc9f1afede3ac8f0ca0f54b9f3ca9a81c4e31c49ee20000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000181000000000000000000000000000000000000000000000000000000000000018100100000000000000000000000000000000000000000000000000000000001810020000000000000000000000000000000000000000000000000000000000181003000000000000000000000000000000000000000000000000000000000018100400000000000000000000000000000000000000000000000000000000001810050000000000000000000000000000000000000000000000000000000000181006000000000000000000000000000000000000000000000000000000000018100700000000000000000000000000000000000000000000000000000000001810080000000000000000000000000000000000000000000000000000000000181009000000000000000000000000000000000000000000000000000000000018100a000000000000000000000000000000000000000000000000000000000018100b000000000000000000000000000000000000000000000000000000000018100c000000000000000000000000000000000000000000000000000000000018100d000000000000000000000000000000000000000000000000000000000018100e000000000000000000000000000000000000000000000000000000000018100f0000000000000000000000000000000000000000000000000000000000181010000000000000000000000000000000000000000000000000000000000018101100000000000000000000000000000000000000000000000000000000001810120000000000000000000000000000000000000000000000000000000000181013000000000000000000000000000000000000000000000000000000000018101400000000000000000000000000000000000000000000000000000000001810150000000000000000000000000000000000000000000000000000000000181016000000000000000000000000000000000000000000000000000000000018101700000000000000000000000000000000000000000000000000000000001810180000000000000000000000000000000000000000000000000000000000181019000000000000000000000000000000000000000000000000000000000018101a000000000000000000000000000000000000000000000000000000000018101b000000000000000000000000000000000000000000000000000000000018101c000000000000000000000000000000000000000000000000000000000018101d000000000000000000000000000000000000000000000000000000000018101e000000000000000000000000000000000000000000000000000000000018101f0000000000000000000000000000000000000000000000000000000000181020000000000000000000000000000000000000000000000000000000000018102100000000000000000000000000000000000000000000000000000000001810220000000000000000000000000000000000000000000000000000000000181023000000000000000000000000000000000000000000000000000000000018102400000000000000000000000000000000000000000000000000000000001810250000000000000000000000000000000000000000000000000000000000181026000000000000000000000000000000000000000000000000000000000018102700000000000000000000000000000000000000000000000000000000001810280000000000000000000000000000000000000000000000000000000000181029000000000000000000000000000000000000000000000000000000000018102a000000000000000000000000000000000000000000000000000000000018102b000000000000000000000000000000000000000000000000000000000018102c000000000000000000000000000000000000000000000000000000000018102d000000000000000000000000000000000000000000000000000000000018102e000000000000000000000000000000000000000000000000000000000018102f0000000000000000000000000000000000000000000000000000000000181030000000000000000000000000000000000000000000000000000000000018103100000000000000000000000000000000000000000000000000000000001810320000000000000000000000000000000000000000000000000000000000181033000000000000000000000000000000000000000000000000000000000018103400000000000000000000000000000000000000000000000000000000001810350000000000000000000000000000000000000000000000000000000000181036000000000000000000000000000000000000000000000000000000000018103700000000000000000000000000000000000000000000000000000000001810380000000000000000000000000000000000000000000000000000000000181039000000000000000000000000000000000000000000000000000000000018103a000000000000000000000000000000000000000000000000000000000018103b000000000000000000000000000000000000000000000000000000000018103c000000000000000000000000000000000000000000000000000000000018103d000000000000000000000000000000000000000000000000000000000018103e000000000000000000000000000000000000000000000000000000000018103f4000000000000000000000000000000000000000000000000000000000001800010000000000000000000000000000000000000000000000000000000000181100000000000000000000000000000000000000000000000000000000000018110100000000000000000000000000000000000000000000000000000000001811020000000000000000000000000000000000000000000000000000000000181103000000000000000000000000000000000000000000000000000000000018110400000000000000000000000000000000000000000000000000000000001811050000000000000000000000000000000000000000000000000000000000181106000000000000000000000000000000000000000000000000000000000018110700000000000000000000000000000000000000000000000000000000001811080000000000000000000000000000000000000000000000000000000000181109000000000000000000000000000000000000000000000000000000000018110a000000000000000000000000000000000000000000000000000000000018110b000000000000000000000000000000000000000000000000000000000018110c000000000000000000000000000000000000000000000000000000000018110d000000000000000000000000000000000000000000000000000000000018110e000000000000000000000000000000000000000000000000000000000018110f0000000000000000000000000000000000000000000000000000000000181110000000000000000000000000000000000000000000000000000000000018111100000000000000000000000000000000000000000000000000000000001811120000000000000000000000000000000000000000000000000000000000181113000000000000000000000000000000000000000000000000000000000018111400000000000000000000000000000000000000000000000000000000001811150000000000000000000000000000000000000000000000000000000000181116000000000000000000000000000000000000000000000000000000000018111700000000000000000000000000000000000000000000000000000000001811180000000000000000000000000000000000000000000000000000000000181119000000000000000000000000000000000000000000000000000000000018111a000000000000000000000000000000000000000000000000000000000018111b000000000000000000000000000000000000000000000000000000000018111c000000000000000000000000000000000000000000000000000000000018111d000000000000000000000000000000000000000000000000000000000018111e000000000000000000000000000000000000000000000000000000000018111f0000000000000000000000000000000000000000000000000000000000181120000000000000000000000000000000000000000000000000000000000018112100000000000000000000000000000000000000000000000000000000001811220000000000000000000000000000000000000000000000000000000000181123000000000000000000000000000000000000000000000000000000000018112400000000000000000000000000000000000000000000000000000000001811250000000000000000000000000000000000000000000000000000000000181126000000000000000000000000000000000000000000000000000000000018112700000000000000000000000000000000000000000000000000000000001811280000000000000000000000000000000000000000000000000000000000181129000000000000000000000000000000000000000000000000000000000018112a000000000000000000000000000000000000000000000000000000000018112b000000000000000000000000000000000000000000000000000000000018112c000000000000000000000000000000000000000000000000000000000018112d000000000000000000000000000000000000000000000000000000000018112e000000000000000000000000000000000000000000000000000000000018112f0000000000000000000000000000000000000000000000000000000000181130000000000000000000000000000000000000000000000000000000000018113100000000000000000000000000000000000000000000000000000000001811320000000000000000000000000000000000000000000000000000000000181133000000000000000000000000000000000000000000000000000000000018113400000000000000000000000000000000000000000000000000000000001811350000000000000000000000000000000000000000000000000000000000181136000000000000000000000000000000000000000000000000000000000018113700000000000000000000000000000000000000000000000000000000001811380000000000000000000000000000000000000000000000000000000000181139000000000000000000000000000000000000000000000000000000000018113a000000000000000000000000000000000000000000000000000000000018113b000000000000000000000000000000000000000000000000000000000018113c000000000000000000000000000000000000000000000000000000000018113d000000000000000000000000000000000000000000000000000000000018113e0800f872eb9653f03af10f331da1361fa1524d3cd958cb72dacea1d424f19df3af00ffc548a17cd6ba1f2d228f30e4ddb19ecc46ad3b609977d52bb0f49e1206410032f8058bd779c520eabae2743b02ec4f71670428506fcceb2d4b69f26fb11800c0283e15fbf74ffa4eafb984030394f3c2ea6733cc0eacb0431a9475eff28f00b7f55314bfd9d441c1c624e241908228fe4da3d3a0a7fbd56814e1c8cd5d3e00f430f33a786675271736fd728c7bf7428b8c24ac948d7faf76ddb8783a496c0048fc235ead8d4b9d44929662a6384074fc4e5076bec5b7deb34f612393684300fd9b61cb1ad9b4b28f58399906e73933e3cccee8fc98a393f0eedb95b13ee6400000000000000000000000000000000000000000000000000000000000182000000000000000000000000000000000000000000000000000000000000018200a0000000000000000000000000000000000000000000000000000000000182001000000000000000000000000000000000000000000000000000000000018200b0000000000000000000000000000000000000000000000000000000000182002000000000000000000000000000000000000000000000000000000000018200c0000000000000000000000000000000000000000000000000000000000182003000000000000000000000000000000000000000000000000000000000018200d0000000000000000000000000000000000000000000000000000000000182004000000000000000000000000000000000000000000000000000000000018200e0000000000000000000000000000000000000000000000000000000000182005000000000000000000000000000000000000000000000000000000000018200f00000000000000000000000000000000000000000000000000000000001820060000000000000000000000000000000000000000000000000000000000182010000000000000000000000000000000000000000000000000000000000018200700000000000000000000000000000000000000000000000000000000001820110000000000000000000000000000000000000000000000000000000000182008000000000000000000000000000000000000000000000000000000000018201200000000000000000000000000000000000000000000000000000000001820090000000000000000000000000000000000000000000000000000000000182013000000000000000000000000000000000000000000000000000000000018200a0000000000000000000000000000000000000000000000000000000000182014000000000000000000000000000000000000000000000000000000000018200b0000000000000000000000000000000000000000000000000000000000182015000000000000000000000000000000000000000000000000000000000018200c0000000000000000000000000000000000000000000000000000000000182016000000000000000000000000000000000000000000000000000000000018200d0000000000000000000000000000000000000000000000000000000000182017000000000000000000000000000000000000000000000000000000000018200e0000000000000000000000000000000000000000000000000000000000182018000000000000000000000000000000000000000000000000000000000018200f00000000000000000000000000000000000000000000000000000000001820190000000000000000000000000000000000000000000000000000000000182010000000000000000000000000000000000000000000000000000000000018201a0000000000000000000000000000000000000000000000000000000000182011000000000000000000000000000000000000000000000000000000000018201b0000000000000000000000000000000000000000000000000000000000182012000000000000000000000000000000000000000000000000000000000018201c0000000000000000000000000000000000000000000000000000000000182013000000000000000000000000000000000000000000000000000000000018201d0000000000000000000000000000000000000000000000000000000000182014000000000000000000000000000000000000000000000000000000000018201e0000000000000000000000000000000000000000000000000000000000182015000000000000000000000000000000000000000000000000000000000018201f00000000000000000000000000000000000000000000000000000000001820160000000000000000000000000000000000000000000000000000000000182020000000000000000000000000000000000000000000000000000000000018201700000000000000000000000000000000000000000000000000000000001820210000000000000000000000000000000000000000000000000000000000182018000000000000000000000000000000000000000000000000000000000018202200000000000000000000000000000000000000000000000000000000001820190000000000000000000000000000000000000000000000000000000000182023000000000000000000000000000000000000000000000000000000000018201a0000000000000000000000000000000000000000000000000000000000182024000000000000000000000000000000000000000000000000000000000018201b0000000000000000000000000000000000000000000000000000000000182025000000000000000000000000000000000000000000000000000000000018201c0000000000000000000000000000000000000000000000000000000000182026000000000000000000000000000000000000000000000000000000000018201d0000000000000000000000000000000000000000000000000000000000182027000000000000000000000000000000000000000000000000000000000018201e0000000000000000000000000000000000000000000000000000000000182028000000000000000000000000000000000000000000000000000000000018201f00000000000000000000000000000000000000000000000000000000001820290000000000000000000000000000000000000000000000000000000000182020000000000000000000000000000000000000000000000000000000000018202a0000000000000000000000000000000000000000000000000000000000182021000000000000000000000000000000000000000000000000000000000018202b0000000000000000000000000000000000000000000000000000000000182022000000000000000000000000000000000000000000000000000000000018202c0000000000000000000000000000000000000000000000000000000000182023000000000000000000000000000000000000000000000000000000000018202d0000000000000000000000000000000000000000000000000000000000182024000000000000000000000000000000000000000000000000000000000018202e0000000000000000000000000000000000000000000000000000000000182025000000000000000000000000000000000000000000000000000000000018202f00000000000000000000000000000000000000000000000000000000001820260000000000000000000000000000000000000000000000000000000000182030000000000000000000000000000000000000000000000000000000000018202700000000000000000000000000000000000000000000000000000000001820310000000000000000000000000000000000000000000000000000000000182028000000000000000000000000000000000000000000000000000000000018203200000000000000000000000000000000000000000000000000000000001820290000000000000000000000000000000000000000000000000000000000182033000000000000000000000000000000000000000000000000000000000018202a0000000000000000000000000000000000000000000000000000000000182034000000000000000000000000000000000000000000000000000000000018202b0000000000000000000000000000000000000000000000000000000000182035000000000000000000000000000000000000000000000000000000000018202c0000000000000000000000000000000000000000000000000000000000182036000000000000000000000000000000000000000000000000000000000018202d0000000000000000000000000000000000000000000000000000000000182037000000000000000000000000000000000000000000000000000000000018202e0000000000000000000000000000000000000000000000000000000000182038000000000000000000000000000000000000000000000000000000000018202f00000000000000000000000000000000000000000000000000000000001820390000000000000000000000000000000000000000000000000000000000182030000000000000000000000000000000000000000000000000000000000018203a0000000000000000000000000000000000000000000000000000000000182031000000000000000000000000000000000000000000000000000000000018203b0000000000000000000000000000000000000000000000000000000000182032000000000000000000000000000000000000000000000000000000000018203c0000000000000000000000000000000000000000000000000000000000182033000000000000000000000000000000000000000000000000000000000018203d0000000000000000000000000000000000000000000000000000000000182034000000000000000000000000000000000000000000000000000000000018203e0000000000000000000000000000000000000000000000000000000000182035000000000000000000000000000000000000000000000000000000000018203f00000000000000000000000000000000000000000000000000000000001820360000000000000000000000000000000000000000000000000000000000182040000000000000000000000000000000000000000000000000000000000018203700000000000000000000000000000000000000000000000000000000001820410000000000000000000000000000000000000000000000000000000000182038000000000000000000000000000000000000000000000000000000000018204200000000000000000000000000000000000000000000000000000000001820390000000000000000000000000000000000000000000000000000000000182043000000000000000000000000000000000000000000000000000000000018203a0000000000000000000000000000000000000000000000000000000000182044000000000000000000000000000000000000000000000000000000000018203b0000000000000000000000000000000000000000000000000000000000182045000000000000000000000000000000000000000000000000000000000018203c0000000000000000000000000000000000000000000000000000000000182046000000000000000000000000000000000000000000000000000000000018203d0000000000000000000000000000000000000000000000000000000000182047000000000000000000000000000000000000000000000000000000000018203e0000000000000000000000000000000000000000000000000000000000182048000000000000000000000000000000000000000000000000000000000018203f0000000000000000000000000000000000000000000000000000000000182049200000000000000000000000000000000000000000000000000000000000181700000000000000000000000000000000000000000000000000000000000018170100000000000000000000000000000000000000000000000000000000001817020000000000000000000000000000000000000000000000000000000000181703000000000000000000000000000000000000000000000000000000000018170400000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018170100000000000000000000000000000000000000000000000000000000001817020000000000000000000000000000000000000000000000000000000000181703000000000000000000000000000000000000000000000000000000000018170400000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817020000000000000000000000000000000000000000000000000000000000181703000000000000000000000000000000000000000000000000000000000018170400000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181703000000000000000000000000000000000000000000000000000000000018170400000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018170400000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018171500000000000000000000000000000000000000000000000000000000001817050000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018171500000000000000000000000000000000000000000000000000000000001817160000000000000000000000000000000000000000000000000000000000181706000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018171500000000000000000000000000000000000000000000000000000000001817160000000000000000000000000000000000000000000000000000000000181717000000000000000000000000000000000000000000000000000000000018170700000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018171500000000000000000000000000000000000000000000000000000000001817160000000000000000000000000000000000000000000000000000000000181717000000000000000000000000000000000000000000000000000000000018171800000000000000000000000000000000000000000000000000000000001817080000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f00000000000000000000000000000000000000000000000000000000001817100000000000000000000000000000000000000000000000000000000000181711000000000000000000000000000000000000000000000000000000000018171200000000000000000000000000000000000000000000000000000000001817130000000000000000000000000000000000000000000000000000000000181714000000000000000000000000000000000000000000000000000000000018171500000000000000000000000000000000000000000000000000000000001817160000000000000000000000000000000000000000000000000000000000181717000000000000000000000000000000000000000000000000000000000018171800000000000000000000000000000000000000000000000000000000001817190000000000000000000000000000000000000000000000000000000000181709000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018170a000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018170b000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018170c000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018170d000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018170e000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f000000000000000000000000000000000000000000000000000000000018170f0000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181710000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018171100000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817120000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181713000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018171400000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018172500000000000000000000000000000000000000000000000000000000001817150000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018172500000000000000000000000000000000000000000000000000000000001817260000000000000000000000000000000000000000000000000000000000181716000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018172500000000000000000000000000000000000000000000000000000000001817260000000000000000000000000000000000000000000000000000000000181727000000000000000000000000000000000000000000000000000000000018171700000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018172500000000000000000000000000000000000000000000000000000000001817260000000000000000000000000000000000000000000000000000000000181727000000000000000000000000000000000000000000000000000000000018172800000000000000000000000000000000000000000000000000000000001817180000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f00000000000000000000000000000000000000000000000000000000001817200000000000000000000000000000000000000000000000000000000000181721000000000000000000000000000000000000000000000000000000000018172200000000000000000000000000000000000000000000000000000000001817230000000000000000000000000000000000000000000000000000000000181724000000000000000000000000000000000000000000000000000000000018172500000000000000000000000000000000000000000000000000000000001817260000000000000000000000000000000000000000000000000000000000181727000000000000000000000000000000000000000000000000000000000018172800000000000000000000000000000000000000000000000000000000001817290000000000000000000000000000000000000000000000000000000000181719000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018171a000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018171b000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018172c000000000000000000000000000000000000000000000000000000000018171c000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018172c000000000000000000000000000000000000000000000000000000000018172d000000000000000000000000000000000000000000000000000000000018171d000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018172c000000000000000000000000000000000000000000000000000000000018172d000000000000000000000000000000000000000000000000000000000018172e000000000000000000000000000000000000000000000000000000000018171e000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018172c000000000000000000000000000000000000000000000000000000000018172d000000000000000000000000000000000000000000000000000000000018172e000000000000000000000000000000000000000000000000000000000018172f000000000000000000000000000000000000000000000000000000000018171f0000000000000000000000000000000000000000000000000000000000181720000000000000000000000000000000000000000000000000000000000018172100000000000000000000000000000000000000000000000000000000001817220000000000000000000000000000000000000000000000000000000000181723000000000000000000000000000000000000000000000000000000000018172400000000000000000000000000000000000000000000000000000000001817250000000000000000000000000000000000000000000000000000000000181726000000000000000000000000000000000000000000000000000000000018172700000000000000000000000000000000000000000000000000000000001817280000000000000000000000000000000000000000000000000000000000181729000000000000000000000000000000000000000000000000000000000018172a000000000000000000000000000000000000000000000000000000000018172b000000000000000000000000000000000000000000000000000000000018172c000000000000000000000000000000000000000000000000000000000018172d000000000000000000000000000000000000000000000000000000000018172e000000000000000000000000000000000000000000000000000000000018172f0000000000000000000000000000000000000000000000000000000000181730000000140ab3d85fb5d53ed57e5e520b14f7a2532ee1b2e77c9f31277e6d3d49c727fe00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000001c100000000000000000000000000000000000000000000000000000000000001c100100000000000000000000000000000000000000000000000000000000001c100200000000000000000000000000000000000000000000000000000000001c100300000000000000000000000000000000000000000000000000000000001c100400000000000000000000000000000000000000000000000000000000001c100500000000000000000000000000000000000000000000000000000000001c100600000000000000000000000000000000000000000000000000000000001c100700000000000000000000000000000000000000000000000000000000001c100800000000000000000000000000000000000000000000000000000000001c100900000000000000000000000000000000000000000000000000000000001c100a00000000000000000000000000000000000000000000000000000000001c100b00000000000000000000000000000000000000000000000000000000001c100c00000000000000000000000000000000000000000000000000000000001c100d00000000000000000000000000000000000000000000000000000000001c100e00000000000000000000000000000000000000000000000000000000001c100f00000000000000000000000000000000000000000000000000000000001c101000000000000000000000000000000000000000000000000000000000001c101100000000000000000000000000000000000000000000000000000000001c101200000000000000000000000000000000000000000000000000000000001c101300000000000000000000000000000000000000000000000000000000001c101400000000000000000000000000000000000000000000000000000000001c101500000000000000000000000000000000000000000000000000000000001c101600000000000000000000000000000000000000000000000000000000001c101700000000000000000000000000000000000000000000000000000000001c101800000000000000000000000000000000000000000000000000000000001c101900000000000000000000000000000000000000000000000000000000001c101a00000000000000000000000000000000000000000000000000000000001c101b00000000000000000000000000000000000000000000000000000000001c101c00000000000000000000000000000000000000000000000000000000001c101d00000000000000000000000000000000000000000000000000000000001c101e00000000000000000000000000000000000000000000000000000000001c101f00000000000000000000000000000000000000000000000000000000001c102000000000000000000000000000000000000000000000000000000000001c102100000000000000000000000000000000000000000000000000000000001c102200000000000000000000000000000000000000000000000000000000001c102300000000000000000000000000000000000000000000000000000000001c102400000000000000000000000000000000000000000000000000000000001c102500000000000000000000000000000000000000000000000000000000001c102600000000000000000000000000000000000000000000000000000000001c102700000000000000000000000000000000000000000000000000000000001c102800000000000000000000000000000000000000000000000000000000001c102900000000000000000000000000000000000000000000000000000000001c102a00000000000000000000000000000000000000000000000000000000001c102b00000000000000000000000000000000000000000000000000000000001c102c00000000000000000000000000000000000000000000000000000000001c102d00000000000000000000000000000000000000000000000000000000001c102e00000000000000000000000000000000000000000000000000000000001c102f00000000000000000000000000000000000000000000000000000000001c103000000000000000000000000000000000000000000000000000000000001c103100000000000000000000000000000000000000000000000000000000001c103200000000000000000000000000000000000000000000000000000000001c103300000000000000000000000000000000000000000000000000000000001c103400000000000000000000000000000000000000000000000000000000001c103500000000000000000000000000000000000000000000000000000000001c103600000000000000000000000000000000000000000000000000000000001c103700000000000000000000000000000000000000000000000000000000001c103800000000000000000000000000000000000000000000000000000000001c103900000000000000000000000000000000000000000000000000000000001c103a00000000000000000000000000000000000000000000000000000000001c103b00000000000000000000000000000000000000000000000000000000001c103c00000000000000000000000000000000000000000000000000000000001c103d00000000000000000000000000000000000000000000000000000000001c103e00000000000000000000000000000000000000000000000000000000001c103f4000000000000000000000000000000000000000000000000000000000001c000100000000000000000000000000000000000000000000000000000000001c110000000000000000000000000000000000000000000000000000000000001c110100000000000000000000000000000000000000000000000000000000001c110200000000000000000000000000000000000000000000000000000000001c110300000000000000000000000000000000000000000000000000000000001c110400000000000000000000000000000000000000000000000000000000001c110500000000000000000000000000000000000000000000000000000000001c110600000000000000000000000000000000000000000000000000000000001c110700000000000000000000000000000000000000000000000000000000001c110800000000000000000000000000000000000000000000000000000000001c110900000000000000000000000000000000000000000000000000000000001c110a00000000000000000000000000000000000000000000000000000000001c110b00000000000000000000000000000000000000000000000000000000001c110c00000000000000000000000000000000000000000000000000000000001c110d00000000000000000000000000000000000000000000000000000000001c110e00000000000000000000000000000000000000000000000000000000001c110f00000000000000000000000000000000000000000000000000000000001c111000000000000000000000000000000000000000000000000000000000001c111100000000000000000000000000000000000000000000000000000000001c111200000000000000000000000000000000000000000000000000000000001c111300000000000000000000000000000000000000000000000000000000001c111400000000000000000000000000000000000000000000000000000000001c111500000000000000000000000000000000000000000000000000000000001c111600000000000000000000000000000000000000000000000000000000001c111700000000000000000000000000000000000000000000000000000000001c111800000000000000000000000000000000000000000000000000000000001c111900000000000000000000000000000000000000000000000000000000001c111a00000000000000000000000000000000000000000000000000000000001c111b00000000000000000000000000000000000000000000000000000000001c111c00000000000000000000000000000000000000000000000000000000001c111d00000000000000000000000000000000000000000000000000000000001c111e00000000000000000000000000000000000000000000000000000000001c111f00000000000000000000000000000000000000000000000000000000001c112000000000000000000000000000000000000000000000000000000000001c112100000000000000000000000000000000000000000000000000000000001c112200000000000000000000000000000000000000000000000000000000001c112300000000000000000000000000000000000000000000000000000000001c112400000000000000000000000000000000000000000000000000000000001c112500000000000000000000000000000000000000000000000000000000001c112600000000000000000000000000000000000000000000000000000000001c112700000000000000000000000000000000000000000000000000000000001c112800000000000000000000000000000000000000000000000000000000001c112900000000000000000000000000000000000000000000000000000000001c112a00000000000000000000000000000000000000000000000000000000001c112b00000000000000000000000000000000000000000000000000000000001c112c00000000000000000000000000000000000000000000000000000000001c112d00000000000000000000000000000000000000000000000000000000001c112e00000000000000000000000000000000000000000000000000000000001c112f00000000000000000000000000000000000000000000000000000000001c113000000000000000000000000000000000000000000000000000000000001c113100000000000000000000000000000000000000000000000000000000001c113200000000000000000000000000000000000000000000000000000000001c113300000000000000000000000000000000000000000000000000000000001c113400000000000000000000000000000000000000000000000000000000001c113500000000000000000000000000000000000000000000000000000000001c113600000000000000000000000000000000000000000000000000000000001c113700000000000000000000000000000000000000000000000000000000001c113800000000000000000000000000000000000000000000000000000000001c113900000000000000000000000000000000000000000000000000000000001c113a00000000000000000000000000000000000000000000000000000000001c113b00000000000000000000000000000000000000000000000000000000001c113c00000000000000000000000000000000000000000000000000000000001c113d00000000000000000000000000000000000000000000000000000000001c113e08006838aa99533bea0d4204cad17cb3c147e99c2f9089e54a4289d54733eeada2002ab314bd11ace2494a3fb0970d276da39f0fe7da19c9a2438b9c7c334d32470071703d79d8425a7eca52006df6a8f9728508a83639e3e1c2ebae2b853a087c00c9501ac04a78ac5413c9131b08708064ed2c2515b8893f12c2d1cda15a44f100a0955f93e109778d26f9e5b0d46e45c539e59b0941517bfa888eb2d7d2d8a6005adc3be9406cc5f102c6adb44746e8529a256e2396353a8659344cc3e914c4007a5fe572cf6af804f472dabf095c5eb6b30efc5fd627ad3245a8ef0f3f578c003dcaa91dfc9fdad7ba8da68a48fc662dfc0a995cbb0c1bc62099c8257d240d4000000000000000000000000000000000000000000000000000000000001c200000000000000000000000000000000000000000000000000000000000001c200a00000000000000000000000000000000000000000000000000000000001c200100000000000000000000000000000000000000000000000000000000001c200b00000000000000000000000000000000000000000000000000000000001c200200000000000000000000000000000000000000000000000000000000001c200c00000000000000000000000000000000000000000000000000000000001c200300000000000000000000000000000000000000000000000000000000001c200d00000000000000000000000000000000000000000000000000000000001c200400000000000000000000000000000000000000000000000000000000001c200e00000000000000000000000000000000000000000000000000000000001c200500000000000000000000000000000000000000000000000000000000001c200f00000000000000000000000000000000000000000000000000000000001c200600000000000000000000000000000000000000000000000000000000001c201000000000000000000000000000000000000000000000000000000000001c200700000000000000000000000000000000000000000000000000000000001c201100000000000000000000000000000000000000000000000000000000001c200800000000000000000000000000000000000000000000000000000000001c201200000000000000000000000000000000000000000000000000000000001c200900000000000000000000000000000000000000000000000000000000001c201300000000000000000000000000000000000000000000000000000000001c200a00000000000000000000000000000000000000000000000000000000001c201400000000000000000000000000000000000000000000000000000000001c200b00000000000000000000000000000000000000000000000000000000001c201500000000000000000000000000000000000000000000000000000000001c200c00000000000000000000000000000000000000000000000000000000001c201600000000000000000000000000000000000000000000000000000000001c200d00000000000000000000000000000000000000000000000000000000001c201700000000000000000000000000000000000000000000000000000000001c200e00000000000000000000000000000000000000000000000000000000001c201800000000000000000000000000000000000000000000000000000000001c200f00000000000000000000000000000000000000000000000000000000001c201900000000000000000000000000000000000000000000000000000000001c201000000000000000000000000000000000000000000000000000000000001c201a00000000000000000000000000000000000000000000000000000000001c201100000000000000000000000000000000000000000000000000000000001c201b00000000000000000000000000000000000000000000000000000000001c201200000000000000000000000000000000000000000000000000000000001c201c00000000000000000000000000000000000000000000000000000000001c201300000000000000000000000000000000000000000000000000000000001c201d00000000000000000000000000000000000000000000000000000000001c201400000000000000000000000000000000000000000000000000000000001c201e00000000000000000000000000000000000000000000000000000000001c201500000000000000000000000000000000000000000000000000000000001c201f00000000000000000000000000000000000000000000000000000000001c201600000000000000000000000000000000000000000000000000000000001c202000000000000000000000000000000000000000000000000000000000001c201700000000000000000000000000000000000000000000000000000000001c202100000000000000000000000000000000000000000000000000000000001c201800000000000000000000000000000000000000000000000000000000001c202200000000000000000000000000000000000000000000000000000000001c201900000000000000000000000000000000000000000000000000000000001c202300000000000000000000000000000000000000000000000000000000001c201a00000000000000000000000000000000000000000000000000000000001c202400000000000000000000000000000000000000000000000000000000001c201b00000000000000000000000000000000000000000000000000000000001c202500000000000000000000000000000000000000000000000000000000001c201c00000000000000000000000000000000000000000000000000000000001c202600000000000000000000000000000000000000000000000000000000001c201d00000000000000000000000000000000000000000000000000000000001c202700000000000000000000000000000000000000000000000000000000001c201e00000000000000000000000000000000000000000000000000000000001c202800000000000000000000000000000000000000000000000000000000001c201f00000000000000000000000000000000000000000000000000000000001c202900000000000000000000000000000000000000000000000000000000001c202000000000000000000000000000000000000000000000000000000000001c202a00000000000000000000000000000000000000000000000000000000001c202100000000000000000000000000000000000000000000000000000000001c202b00000000000000000000000000000000000000000000000000000000001c202200000000000000000000000000000000000000000000000000000000001c202c00000000000000000000000000000000000000000000000000000000001c202300000000000000000000000000000000000000000000000000000000001c202d00000000000000000000000000000000000000000000000000000000001c202400000000000000000000000000000000000000000000000000000000001c202e00000000000000000000000000000000000000000000000000000000001c202500000000000000000000000000000000000000000000000000000000001c202f00000000000000000000000000000000000000000000000000000000001c202600000000000000000000000000000000000000000000000000000000001c203000000000000000000000000000000000000000000000000000000000001c202700000000000000000000000000000000000000000000000000000000001c203100000000000000000000000000000000000000000000000000000000001c202800000000000000000000000000000000000000000000000000000000001c203200000000000000000000000000000000000000000000000000000000001c202900000000000000000000000000000000000000000000000000000000001c203300000000000000000000000000000000000000000000000000000000001c202a00000000000000000000000000000000000000000000000000000000001c203400000000000000000000000000000000000000000000000000000000001c202b00000000000000000000000000000000000000000000000000000000001c203500000000000000000000000000000000000000000000000000000000001c202c00000000000000000000000000000000000000000000000000000000001c203600000000000000000000000000000000000000000000000000000000001c202d00000000000000000000000000000000000000000000000000000000001c203700000000000000000000000000000000000000000000000000000000001c202e00000000000000000000000000000000000000000000000000000000001c203800000000000000000000000000000000000000000000000000000000001c202f00000000000000000000000000000000000000000000000000000000001c203900000000000000000000000000000000000000000000000000000000001c203000000000000000000000000000000000000000000000000000000000001c203a00000000000000000000000000000000000000000000000000000000001c203100000000000000000000000000000000000000000000000000000000001c203b00000000000000000000000000000000000000000000000000000000001c203200000000000000000000000000000000000000000000000000000000001c203c00000000000000000000000000000000000000000000000000000000001c203300000000000000000000000000000000000000000000000000000000001c203d00000000000000000000000000000000000000000000000000000000001c203400000000000000000000000000000000000000000000000000000000001c203e00000000000000000000000000000000000000000000000000000000001c203500000000000000000000000000000000000000000000000000000000001c203f00000000000000000000000000000000000000000000000000000000001c203600000000000000000000000000000000000000000000000000000000001c204000000000000000000000000000000000000000000000000000000000001c203700000000000000000000000000000000000000000000000000000000001c204100000000000000000000000000000000000000000000000000000000001c203800000000000000000000000000000000000000000000000000000000001c204200000000000000000000000000000000000000000000000000000000001c203900000000000000000000000000000000000000000000000000000000001c204300000000000000000000000000000000000000000000000000000000001c203a00000000000000000000000000000000000000000000000000000000001c204400000000000000000000000000000000000000000000000000000000001c203b00000000000000000000000000000000000000000000000000000000001c204500000000000000000000000000000000000000000000000000000000001c203c00000000000000000000000000000000000000000000000000000000001c204600000000000000000000000000000000000000000000000000000000001c203d00000000000000000000000000000000000000000000000000000000001c204700000000000000000000000000000000000000000000000000000000001c203e00000000000000000000000000000000000000000000000000000000001c204800000000000000000000000000000000000000000000000000000000001c203f00000000000000000000000000000000000000000000000000000000001c20492000000000000000000000000000000000000000000000000000000000001c170000000000000000000000000000000000000000000000000000000000001c170100000000000000000000000000000000000000000000000000000000001c170200000000000000000000000000000000000000000000000000000000001c170300000000000000000000000000000000000000000000000000000000001c170400000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c170100000000000000000000000000000000000000000000000000000000001c170200000000000000000000000000000000000000000000000000000000001c170300000000000000000000000000000000000000000000000000000000001c170400000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c170200000000000000000000000000000000000000000000000000000000001c170300000000000000000000000000000000000000000000000000000000001c170400000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c170300000000000000000000000000000000000000000000000000000000001c170400000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c170400000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c170500000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c170600000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c170700000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c170800000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c170900000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c170a00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c170b00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c170c00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c170d00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c170e00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c170f00000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c171000000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c171100000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c171200000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c171300000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c171400000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c171500000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c171600000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c171700000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c171800000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c171900000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c171a00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c171b00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c172c00000000000000000000000000000000000000000000000000000000001c171c00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c172c00000000000000000000000000000000000000000000000000000000001c172d00000000000000000000000000000000000000000000000000000000001c171d00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c172c00000000000000000000000000000000000000000000000000000000001c172d00000000000000000000000000000000000000000000000000000000001c172e00000000000000000000000000000000000000000000000000000000001c171e00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c172c00000000000000000000000000000000000000000000000000000000001c172d00000000000000000000000000000000000000000000000000000000001c172e00000000000000000000000000000000000000000000000000000000001c172f00000000000000000000000000000000000000000000000000000000001c171f00000000000000000000000000000000000000000000000000000000001c172000000000000000000000000000000000000000000000000000000000001c172100000000000000000000000000000000000000000000000000000000001c172200000000000000000000000000000000000000000000000000000000001c172300000000000000000000000000000000000000000000000000000000001c172400000000000000000000000000000000000000000000000000000000001c172500000000000000000000000000000000000000000000000000000000001c172600000000000000000000000000000000000000000000000000000000001c172700000000000000000000000000000000000000000000000000000000001c172800000000000000000000000000000000000000000000000000000000001c172900000000000000000000000000000000000000000000000000000000001c172a00000000000000000000000000000000000000000000000000000000001c172b00000000000000000000000000000000000000000000000000000000001c172c00000000000000000000000000000000000000000000000000000000001c172d00000000000000000000000000000000000000000000000000000000001c172e00000000000000000000000000000000000000000000000000000000001c172f00000000000000000000000000000000000000000000000000000000001c1730000000260caf731821f6ac6c02c9880591c2a11e24343eaa28359fa78aaa1bcf3574ca0000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000201000000000000000000000000000000000000000000000000000000000000020100100000000000000000000000000000000000000000000000000000000002010020000000000000000000000000000000000000000000000000000000000201003000000000000000000000000000000000000000000000000000000000020100400000000000000000000000000000000000000000000000000000000002010050000000000000000000000000000000000000000000000000000000000201006000000000000000000000000000000000000000000000000000000000020100700000000000000000000000000000000000000000000000000000000002010080000000000000000000000000000000000000000000000000000000000201009000000000000000000000000000000000000000000000000000000000020100a000000000000000000000000000000000000000000000000000000000020100b000000000000000000000000000000000000000000000000000000000020100c000000000000000000000000000000000000000000000000000000000020100d000000000000000000000000000000000000000000000000000000000020100e000000000000000000000000000000000000000000000000000000000020100f0000000000000000000000000000000000000000000000000000000000201010000000000000000000000000000000000000000000000000000000000020101100000000000000000000000000000000000000000000000000000000002010120000000000000000000000000000000000000000000000000000000000201013000000000000000000000000000000000000000000000000000000000020101400000000000000000000000000000000000000000000000000000000002010150000000000000000000000000000000000000000000000000000000000201016000000000000000000000000000000000000000000000000000000000020101700000000000000000000000000000000000000000000000000000000002010180000000000000000000000000000000000000000000000000000000000201019000000000000000000000000000000000000000000000000000000000020101a000000000000000000000000000000000000000000000000000000000020101b000000000000000000000000000000000000000000000000000000000020101c000000000000000000000000000000000000000000000000000000000020101d000000000000000000000000000000000000000000000000000000000020101e000000000000000000000000000000000000000000000000000000000020101f0000000000000000000000000000000000000000000000000000000000201020000000000000000000000000000000000000000000000000000000000020102100000000000000000000000000000000000000000000000000000000002010220000000000000000000000000000000000000000000000000000000000201023000000000000000000000000000000000000000000000000000000000020102400000000000000000000000000000000000000000000000000000000002010250000000000000000000000000000000000000000000000000000000000201026000000000000000000000000000000000000000000000000000000000020102700000000000000000000000000000000000000000000000000000000002010280000000000000000000000000000000000000000000000000000000000201029000000000000000000000000000000000000000000000000000000000020102a000000000000000000000000000000000000000000000000000000000020102b000000000000000000000000000000000000000000000000000000000020102c000000000000000000000000000000000000000000000000000000000020102d000000000000000000000000000000000000000000000000000000000020102e000000000000000000000000000000000000000000000000000000000020102f0000000000000000000000000000000000000000000000000000000000201030000000000000000000000000000000000000000000000000000000000020103100000000000000000000000000000000000000000000000000000000002010320000000000000000000000000000000000000000000000000000000000201033000000000000000000000000000000000000000000000000000000000020103400000000000000000000000000000000000000000000000000000000002010350000000000000000000000000000000000000000000000000000000000201036000000000000000000000000000000000000000000000000000000000020103700000000000000000000000000000000000000000000000000000000002010380000000000000000000000000000000000000000000000000000000000201039000000000000000000000000000000000000000000000000000000000020103a000000000000000000000000000000000000000000000000000000000020103b000000000000000000000000000000000000000000000000000000000020103c000000000000000000000000000000000000000000000000000000000020103d000000000000000000000000000000000000000000000000000000000020103e000000000000000000000000000000000000000000000000000000000020103f4000000000000000000000000000000000000000000000000000000000002000010000000000000000000000000000000000000000000000000000000000201100000000000000000000000000000000000000000000000000000000000020110100000000000000000000000000000000000000000000000000000000002011020000000000000000000000000000000000000000000000000000000000201103000000000000000000000000000000000000000000000000000000000020110400000000000000000000000000000000000000000000000000000000002011050000000000000000000000000000000000000000000000000000000000201106000000000000000000000000000000000000000000000000000000000020110700000000000000000000000000000000000000000000000000000000002011080000000000000000000000000000000000000000000000000000000000201109000000000000000000000000000000000000000000000000000000000020110a000000000000000000000000000000000000000000000000000000000020110b000000000000000000000000000000000000000000000000000000000020110c000000000000000000000000000000000000000000000000000000000020110d000000000000000000000000000000000000000000000000000000000020110e000000000000000000000000000000000000000000000000000000000020110f0000000000000000000000000000000000000000000000000000000000201110000000000000000000000000000000000000000000000000000000000020111100000000000000000000000000000000000000000000000000000000002011120000000000000000000000000000000000000000000000000000000000201113000000000000000000000000000000000000000000000000000000000020111400000000000000000000000000000000000000000000000000000000002011150000000000000000000000000000000000000000000000000000000000201116000000000000000000000000000000000000000000000000000000000020111700000000000000000000000000000000000000000000000000000000002011180000000000000000000000000000000000000000000000000000000000201119000000000000000000000000000000000000000000000000000000000020111a000000000000000000000000000000000000000000000000000000000020111b000000000000000000000000000000000000000000000000000000000020111c000000000000000000000000000000000000000000000000000000000020111d000000000000000000000000000000000000000000000000000000000020111e000000000000000000000000000000000000000000000000000000000020111f0000000000000000000000000000000000000000000000000000000000201120000000000000000000000000000000000000000000000000000000000020112100000000000000000000000000000000000000000000000000000000002011220000000000000000000000000000000000000000000000000000000000201123000000000000000000000000000000000000000000000000000000000020112400000000000000000000000000000000000000000000000000000000002011250000000000000000000000000000000000000000000000000000000000201126000000000000000000000000000000000000000000000000000000000020112700000000000000000000000000000000000000000000000000000000002011280000000000000000000000000000000000000000000000000000000000201129000000000000000000000000000000000000000000000000000000000020112a000000000000000000000000000000000000000000000000000000000020112b000000000000000000000000000000000000000000000000000000000020112c000000000000000000000000000000000000000000000000000000000020112d000000000000000000000000000000000000000000000000000000000020112e000000000000000000000000000000000000000000000000000000000020112f0000000000000000000000000000000000000000000000000000000000201130000000000000000000000000000000000000000000000000000000000020113100000000000000000000000000000000000000000000000000000000002011320000000000000000000000000000000000000000000000000000000000201133000000000000000000000000000000000000000000000000000000000020113400000000000000000000000000000000000000000000000000000000002011350000000000000000000000000000000000000000000000000000000000201136000000000000000000000000000000000000000000000000000000000020113700000000000000000000000000000000000000000000000000000000002011380000000000000000000000000000000000000000000000000000000000201139000000000000000000000000000000000000000000000000000000000020113a000000000000000000000000000000000000000000000000000000000020113b000000000000000000000000000000000000000000000000000000000020113c000000000000000000000000000000000000000000000000000000000020113d000000000000000000000000000000000000000000000000000000000020113e0800e9805e8a4faa87fc419af08a6d956f18976c46ea694bbd4cf6946e6d02033200e0925a6b172b4b01bb76eb1d3f7dd2ced118bca70d223a6d61afa1b75915ae00383590492d2f99a0283d1de57015b4b6b0759a8023af2c68fb4929dee2f303007ed57100dd77e2b6405f780503ef61b7b53e13f344b6e6a6eff3e3c13de0d0001ab1b0c348c46184dbc86ff79f248e7da1b09d3f9c6a986e98fe45389f060d0023d134bc68d7efa25e255001069827dc0bee766c08c988d6300071ed27fe6c0031cbb780b07f632cbaf767dc80608cc0a8e1d1df3ecd6f5d8bc0ca6703e4f4002c7dc9e731fc5f6456b2a70b4e636ac17d5e0cd36d3a591116a9e124f73586400000000000000000000000000000000000000000000000000000000000202000000000000000000000000000000000000000000000000000000000000020200a0000000000000000000000000000000000000000000000000000000000202001000000000000000000000000000000000000000000000000000000000020200b0000000000000000000000000000000000000000000000000000000000202002000000000000000000000000000000000000000000000000000000000020200c0000000000000000000000000000000000000000000000000000000000202003000000000000000000000000000000000000000000000000000000000020200d0000000000000000000000000000000000000000000000000000000000202004000000000000000000000000000000000000000000000000000000000020200e0000000000000000000000000000000000000000000000000000000000202005000000000000000000000000000000000000000000000000000000000020200f00000000000000000000000000000000000000000000000000000000002020060000000000000000000000000000000000000000000000000000000000202010000000000000000000000000000000000000000000000000000000000020200700000000000000000000000000000000000000000000000000000000002020110000000000000000000000000000000000000000000000000000000000202008000000000000000000000000000000000000000000000000000000000020201200000000000000000000000000000000000000000000000000000000002020090000000000000000000000000000000000000000000000000000000000202013000000000000000000000000000000000000000000000000000000000020200a0000000000000000000000000000000000000000000000000000000000202014000000000000000000000000000000000000000000000000000000000020200b0000000000000000000000000000000000000000000000000000000000202015000000000000000000000000000000000000000000000000000000000020200c0000000000000000000000000000000000000000000000000000000000202016000000000000000000000000000000000000000000000000000000000020200d0000000000000000000000000000000000000000000000000000000000202017000000000000000000000000000000000000000000000000000000000020200e0000000000000000000000000000000000000000000000000000000000202018000000000000000000000000000000000000000000000000000000000020200f00000000000000000000000000000000000000000000000000000000002020190000000000000000000000000000000000000000000000000000000000202010000000000000000000000000000000000000000000000000000000000020201a0000000000000000000000000000000000000000000000000000000000202011000000000000000000000000000000000000000000000000000000000020201b0000000000000000000000000000000000000000000000000000000000202012000000000000000000000000000000000000000000000000000000000020201c0000000000000000000000000000000000000000000000000000000000202013000000000000000000000000000000000000000000000000000000000020201d0000000000000000000000000000000000000000000000000000000000202014000000000000000000000000000000000000000000000000000000000020201e0000000000000000000000000000000000000000000000000000000000202015000000000000000000000000000000000000000000000000000000000020201f00000000000000000000000000000000000000000000000000000000002020160000000000000000000000000000000000000000000000000000000000202020000000000000000000000000000000000000000000000000000000000020201700000000000000000000000000000000000000000000000000000000002020210000000000000000000000000000000000000000000000000000000000202018000000000000000000000000000000000000000000000000000000000020202200000000000000000000000000000000000000000000000000000000002020190000000000000000000000000000000000000000000000000000000000202023000000000000000000000000000000000000000000000000000000000020201a0000000000000000000000000000000000000000000000000000000000202024000000000000000000000000000000000000000000000000000000000020201b0000000000000000000000000000000000000000000000000000000000202025000000000000000000000000000000000000000000000000000000000020201c0000000000000000000000000000000000000000000000000000000000202026000000000000000000000000000000000000000000000000000000000020201d0000000000000000000000000000000000000000000000000000000000202027000000000000000000000000000000000000000000000000000000000020201e0000000000000000000000000000000000000000000000000000000000202028000000000000000000000000000000000000000000000000000000000020201f00000000000000000000000000000000000000000000000000000000002020290000000000000000000000000000000000000000000000000000000000202020000000000000000000000000000000000000000000000000000000000020202a0000000000000000000000000000000000000000000000000000000000202021000000000000000000000000000000000000000000000000000000000020202b0000000000000000000000000000000000000000000000000000000000202022000000000000000000000000000000000000000000000000000000000020202c0000000000000000000000000000000000000000000000000000000000202023000000000000000000000000000000000000000000000000000000000020202d0000000000000000000000000000000000000000000000000000000000202024000000000000000000000000000000000000000000000000000000000020202e0000000000000000000000000000000000000000000000000000000000202025000000000000000000000000000000000000000000000000000000000020202f00000000000000000000000000000000000000000000000000000000002020260000000000000000000000000000000000000000000000000000000000202030000000000000000000000000000000000000000000000000000000000020202700000000000000000000000000000000000000000000000000000000002020310000000000000000000000000000000000000000000000000000000000202028000000000000000000000000000000000000000000000000000000000020203200000000000000000000000000000000000000000000000000000000002020290000000000000000000000000000000000000000000000000000000000202033000000000000000000000000000000000000000000000000000000000020202a0000000000000000000000000000000000000000000000000000000000202034000000000000000000000000000000000000000000000000000000000020202b0000000000000000000000000000000000000000000000000000000000202035000000000000000000000000000000000000000000000000000000000020202c0000000000000000000000000000000000000000000000000000000000202036000000000000000000000000000000000000000000000000000000000020202d0000000000000000000000000000000000000000000000000000000000202037000000000000000000000000000000000000000000000000000000000020202e0000000000000000000000000000000000000000000000000000000000202038000000000000000000000000000000000000000000000000000000000020202f00000000000000000000000000000000000000000000000000000000002020390000000000000000000000000000000000000000000000000000000000202030000000000000000000000000000000000000000000000000000000000020203a0000000000000000000000000000000000000000000000000000000000202031000000000000000000000000000000000000000000000000000000000020203b0000000000000000000000000000000000000000000000000000000000202032000000000000000000000000000000000000000000000000000000000020203c0000000000000000000000000000000000000000000000000000000000202033000000000000000000000000000000000000000000000000000000000020203d0000000000000000000000000000000000000000000000000000000000202034000000000000000000000000000000000000000000000000000000000020203e0000000000000000000000000000000000000000000000000000000000202035000000000000000000000000000000000000000000000000000000000020203f00000000000000000000000000000000000000000000000000000000002020360000000000000000000000000000000000000000000000000000000000202040000000000000000000000000000000000000000000000000000000000020203700000000000000000000000000000000000000000000000000000000002020410000000000000000000000000000000000000000000000000000000000202038000000000000000000000000000000000000000000000000000000000020204200000000000000000000000000000000000000000000000000000000002020390000000000000000000000000000000000000000000000000000000000202043000000000000000000000000000000000000000000000000000000000020203a0000000000000000000000000000000000000000000000000000000000202044000000000000000000000000000000000000000000000000000000000020203b0000000000000000000000000000000000000000000000000000000000202045000000000000000000000000000000000000000000000000000000000020203c0000000000000000000000000000000000000000000000000000000000202046000000000000000000000000000000000000000000000000000000000020203d0000000000000000000000000000000000000000000000000000000000202047000000000000000000000000000000000000000000000000000000000020203e0000000000000000000000000000000000000000000000000000000000202048000000000000000000000000000000000000000000000000000000000020203f0000000000000000000000000000000000000000000000000000000000202049200000000000000000000000000000000000000000000000000000000000201700000000000000000000000000000000000000000000000000000000000020170100000000000000000000000000000000000000000000000000000000002017020000000000000000000000000000000000000000000000000000000000201703000000000000000000000000000000000000000000000000000000000020170400000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020170100000000000000000000000000000000000000000000000000000000002017020000000000000000000000000000000000000000000000000000000000201703000000000000000000000000000000000000000000000000000000000020170400000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017020000000000000000000000000000000000000000000000000000000000201703000000000000000000000000000000000000000000000000000000000020170400000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201703000000000000000000000000000000000000000000000000000000000020170400000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020170400000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020171500000000000000000000000000000000000000000000000000000000002017050000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020171500000000000000000000000000000000000000000000000000000000002017160000000000000000000000000000000000000000000000000000000000201706000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020171500000000000000000000000000000000000000000000000000000000002017160000000000000000000000000000000000000000000000000000000000201717000000000000000000000000000000000000000000000000000000000020170700000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020171500000000000000000000000000000000000000000000000000000000002017160000000000000000000000000000000000000000000000000000000000201717000000000000000000000000000000000000000000000000000000000020171800000000000000000000000000000000000000000000000000000000002017080000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f00000000000000000000000000000000000000000000000000000000002017100000000000000000000000000000000000000000000000000000000000201711000000000000000000000000000000000000000000000000000000000020171200000000000000000000000000000000000000000000000000000000002017130000000000000000000000000000000000000000000000000000000000201714000000000000000000000000000000000000000000000000000000000020171500000000000000000000000000000000000000000000000000000000002017160000000000000000000000000000000000000000000000000000000000201717000000000000000000000000000000000000000000000000000000000020171800000000000000000000000000000000000000000000000000000000002017190000000000000000000000000000000000000000000000000000000000201709000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020170a000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020170b000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020170c000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020170d000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020170e000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f000000000000000000000000000000000000000000000000000000000020170f0000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201710000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020171100000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017120000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201713000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020171400000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020172500000000000000000000000000000000000000000000000000000000002017150000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020172500000000000000000000000000000000000000000000000000000000002017260000000000000000000000000000000000000000000000000000000000201716000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020172500000000000000000000000000000000000000000000000000000000002017260000000000000000000000000000000000000000000000000000000000201727000000000000000000000000000000000000000000000000000000000020171700000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020172500000000000000000000000000000000000000000000000000000000002017260000000000000000000000000000000000000000000000000000000000201727000000000000000000000000000000000000000000000000000000000020172800000000000000000000000000000000000000000000000000000000002017180000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f00000000000000000000000000000000000000000000000000000000002017200000000000000000000000000000000000000000000000000000000000201721000000000000000000000000000000000000000000000000000000000020172200000000000000000000000000000000000000000000000000000000002017230000000000000000000000000000000000000000000000000000000000201724000000000000000000000000000000000000000000000000000000000020172500000000000000000000000000000000000000000000000000000000002017260000000000000000000000000000000000000000000000000000000000201727000000000000000000000000000000000000000000000000000000000020172800000000000000000000000000000000000000000000000000000000002017290000000000000000000000000000000000000000000000000000000000201719000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020171a000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020171b000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020172c000000000000000000000000000000000000000000000000000000000020171c000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020172c000000000000000000000000000000000000000000000000000000000020172d000000000000000000000000000000000000000000000000000000000020171d000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020172c000000000000000000000000000000000000000000000000000000000020172d000000000000000000000000000000000000000000000000000000000020172e000000000000000000000000000000000000000000000000000000000020171e000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020172c000000000000000000000000000000000000000000000000000000000020172d000000000000000000000000000000000000000000000000000000000020172e000000000000000000000000000000000000000000000000000000000020172f000000000000000000000000000000000000000000000000000000000020171f0000000000000000000000000000000000000000000000000000000000201720000000000000000000000000000000000000000000000000000000000020172100000000000000000000000000000000000000000000000000000000002017220000000000000000000000000000000000000000000000000000000000201723000000000000000000000000000000000000000000000000000000000020172400000000000000000000000000000000000000000000000000000000002017250000000000000000000000000000000000000000000000000000000000201726000000000000000000000000000000000000000000000000000000000020172700000000000000000000000000000000000000000000000000000000002017280000000000000000000000000000000000000000000000000000000000201729000000000000000000000000000000000000000000000000000000000020172a000000000000000000000000000000000000000000000000000000000020172b000000000000000000000000000000000000000000000000000000000020172c000000000000000000000000000000000000000000000000000000000020172d000000000000000000000000000000000000000000000000000000000020172e000000000000000000000000000000000000000000000000000000000020172f00000000000000000000000000000000000000000000000000000000002017300000", "decodedHeader": { "contentCommitment": { - "blobsHash": "0x00a8d4c0dee4901c68458881b925b4576bd140599cbae6a3cb9d7f1e1b6d197d", + "blobsHash": "0x0042a7cffd7591f823ec8fa49858e9f3b03e748b2b9cd6cbdcd948a40028eec6", "inHash": "0x00e1371045bd7d2c3e1f19cba5f536f0e82042ba4bc257d4ba19c146215e8242", "outHash": "0x00a5c37986316b1f5f2df53fa9ddf4965f539e872f5e1374f28d225540faca26", "numTxs": 4 @@ -74,18 +73,18 @@ "chainId": 31337, "timestamp": 1736365276, "version": 1, - "coinbase": "0x47a5c7b19f878b54220ac956fb944fcfb5f6b2e6", - "feeRecipient": "0x0ffa0bf0720b8a60f9ff8083ccc832d2667594435c2a611ee678c145019d282e", + "coinbase": "0xd000439d68f416a72188f6c91df9835e23d1619d", + "feeRecipient": "0x27f4b7fbf6f8db148d464396089d97cb994ababc3e1923d24b1e6076b0431b00", "gasFees": { "feePerDaGas": 0, - "feePerL2Gas": 54153579570 + "feePerL2Gas": 1020 } }, "totalFees": "0x0000000000000000000000000000000000000000000000000000000000000000", "totalManaUsed": "0x0000000000000000000000000000000000000000000000000000000000000000", "lastArchive": { "nextAvailableLeafIndex": 2, - "root": "0x180cfc8087a03f6b75c2de9c483d3284caa57bd6c56e2bd88e276ba0b9abe1c7" + "root": "0x155210fd3188716162b2f6c650aa5874466280eb49e68f21f392d746919f6e1b" }, "stateReference": { "l1ToL2MessageTree": { @@ -108,9 +107,9 @@ } } }, - "header": "0x180cfc8087a03f6b75c2de9c483d3284caa57bd6c56e2bd88e276ba0b9abe1c700000002000000000000000000000000000000000000000000000000000000000000000400a8d4c0dee4901c68458881b925b4576bd140599cbae6a3cb9d7f1e1b6d197d00e1371045bd7d2c3e1f19cba5f536f0e82042ba4bc257d4ba19c146215e824200a5c37986316b1f5f2df53fa9ddf4965f539e872f5e1374f28d225540faca26026efb6c2a517de2448119d0f1255757265dbec7cdd2952df929ede666e10944000000202494d2575971bca59a28ddc774d19136f4a294951ab67258c7e9c2d8f980592400000200137a2b2aa3dc64677f9670d964242d8fbf9fbabaa6b05e2c910eb0cb0f7cc3be0000028027d5aa7e8c9cc259ee91c6b2a712904c93d1d1293118fae7026302a75c84d61e000002800000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000677ed4dc47a5c7b19f878b54220ac956fb944fcfb5f6b2e60ffa0bf0720b8a60f9ff8083ccc832d2667594435c2a611ee678c145019d282e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c9bce0c3200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "publicInputsHash": "0x00041860cd757320ffae492dbc1d9525bcc12cfd668be22f6599059df03ffc35", - "blobInputs": "0x01014448ff81ac90d329de0b7182bc7f444692c279989245a11c8144eff78cd5bd171c5ca343e29fe5028baf63594e2ed170e8f664e7a5a838129effe22387a05107f779345866dedee97d0d4cf49e310ef4e525031fcd95ff7c29da6f1df1d9c296274e174114aa677b9a175fe69e1a01b0864aaf0dad092d511644764112cf0563c2944aa6fb89aa65e425beaafb241aa0d57240a3bf269b0e19b6b44a1924db158d223b66eaca177cb9fb33e1be38154b1a0d4c7ecf1ed8df60a5d0acc8404f", + "header": "0x155210fd3188716162b2f6c650aa5874466280eb49e68f21f392d746919f6e1b0000000200000000000000000000000000000000000000000000000000000000000000040042a7cffd7591f823ec8fa49858e9f3b03e748b2b9cd6cbdcd948a40028eec600e1371045bd7d2c3e1f19cba5f536f0e82042ba4bc257d4ba19c146215e824200a5c37986316b1f5f2df53fa9ddf4965f539e872f5e1374f28d225540faca26026efb6c2a517de2448119d0f1255757265dbec7cdd2952df929ede666e10944000000202494d2575971bca59a28ddc774d19136f4a294951ab67258c7e9c2d8f980592400000200137a2b2aa3dc64677f9670d964242d8fbf9fbabaa6b05e2c910eb0cb0f7cc3be0000028027d5aa7e8c9cc259ee91c6b2a712904c93d1d1293118fae7026302a75c84d61e000002800000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000677ed4dcd000439d68f416a72188f6c91df9835e23d1619d27f4b7fbf6f8db148d464396089d97cb994ababc3e1923d24b1e6076b0431b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003fc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "publicInputsHash": "0x00e4dc66a369a61cde70f33427261c0364d2da863c68482345d59f8d2101124b", + "blobInputs": "0x01017cc9c82841a1d9d8d26e294a1c91b4dd0d731a5a4ea7f8b5cc9e1e0e79b3b0210173d836288004a169ce0164d5260b3916a8322c2e10d767c2cd88bf259de604307f2585ab89042782f6d71a0803c3473773eb1f1496e588abc88f598bcfdeb0def1e7863bb049829d2becab7e29bced7a0c2ddf9e28c398a90d6fba74c5ae8926fc0e4db0002b05ab1bcdb8da59d9ae9b47ac7f4d0b94291442d59902483b167f42cdd7ae92611e46cdfd211f14a2dfdffd98ee363eb40a45a3612f5b773f", "numTxs": 4 } } \ No newline at end of file diff --git a/l1-contracts/test/fixtures/single_tx_block_1.json b/l1-contracts/test/fixtures/single_tx_block_1.json index 26b09d6e6bcd..13b84b5ea370 100644 --- a/l1-contracts/test/fixtures/single_tx_block_1.json +++ b/l1-contracts/test/fixtures/single_tx_block_1.json @@ -34,27 +34,26 @@ ] }, "block": { - "archive": "0x018b2a76a24f5703f68fd1fb585b12d48e48c7c85857a338a3826941a74b2fa6", - "blockHash": "0x08b88f6825aaad92592bba16c7e686efa0656abb7a2a7d0123ab3f885b049e08", - "body": "0x00000001000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000041000000000000000000000000000000000000000000000000000000000000004100100000000000000000000000000000000000000000000000000000000000410020000000000000000000000000000000000000000000000000000000000041003000000000000000000000000000000000000000000000000000000000004100400000000000000000000000000000000000000000000000000000000000410050000000000000000000000000000000000000000000000000000000000041006000000000000000000000000000000000000000000000000000000000004100700000000000000000000000000000000000000000000000000000000000410080000000000000000000000000000000000000000000000000000000000041009000000000000000000000000000000000000000000000000000000000004100a000000000000000000000000000000000000000000000000000000000004100b000000000000000000000000000000000000000000000000000000000004100c000000000000000000000000000000000000000000000000000000000004100d000000000000000000000000000000000000000000000000000000000004100e000000000000000000000000000000000000000000000000000000000004100f0000000000000000000000000000000000000000000000000000000000041010000000000000000000000000000000000000000000000000000000000004101100000000000000000000000000000000000000000000000000000000000410120000000000000000000000000000000000000000000000000000000000041013000000000000000000000000000000000000000000000000000000000004101400000000000000000000000000000000000000000000000000000000000410150000000000000000000000000000000000000000000000000000000000041016000000000000000000000000000000000000000000000000000000000004101700000000000000000000000000000000000000000000000000000000000410180000000000000000000000000000000000000000000000000000000000041019000000000000000000000000000000000000000000000000000000000004101a000000000000000000000000000000000000000000000000000000000004101b000000000000000000000000000000000000000000000000000000000004101c000000000000000000000000000000000000000000000000000000000004101d000000000000000000000000000000000000000000000000000000000004101e000000000000000000000000000000000000000000000000000000000004101f0000000000000000000000000000000000000000000000000000000000041020000000000000000000000000000000000000000000000000000000000004102100000000000000000000000000000000000000000000000000000000000410220000000000000000000000000000000000000000000000000000000000041023000000000000000000000000000000000000000000000000000000000004102400000000000000000000000000000000000000000000000000000000000410250000000000000000000000000000000000000000000000000000000000041026000000000000000000000000000000000000000000000000000000000004102700000000000000000000000000000000000000000000000000000000000410280000000000000000000000000000000000000000000000000000000000041029000000000000000000000000000000000000000000000000000000000004102a000000000000000000000000000000000000000000000000000000000004102b000000000000000000000000000000000000000000000000000000000004102c000000000000000000000000000000000000000000000000000000000004102d000000000000000000000000000000000000000000000000000000000004102e000000000000000000000000000000000000000000000000000000000004102f0000000000000000000000000000000000000000000000000000000000041030000000000000000000000000000000000000000000000000000000000004103100000000000000000000000000000000000000000000000000000000000410320000000000000000000000000000000000000000000000000000000000041033000000000000000000000000000000000000000000000000000000000004103400000000000000000000000000000000000000000000000000000000000410350000000000000000000000000000000000000000000000000000000000041036000000000000000000000000000000000000000000000000000000000004103700000000000000000000000000000000000000000000000000000000000410380000000000000000000000000000000000000000000000000000000000041039000000000000000000000000000000000000000000000000000000000004103a000000000000000000000000000000000000000000000000000000000004103b000000000000000000000000000000000000000000000000000000000004103c000000000000000000000000000000000000000000000000000000000004103d000000000000000000000000000000000000000000000000000000000004103e000000000000000000000000000000000000000000000000000000000004103f4000000000000000000000000000000000000000000000000000000000000400010000000000000000000000000000000000000000000000000000000000041100000000000000000000000000000000000000000000000000000000000004110100000000000000000000000000000000000000000000000000000000000411020000000000000000000000000000000000000000000000000000000000041103000000000000000000000000000000000000000000000000000000000004110400000000000000000000000000000000000000000000000000000000000411050000000000000000000000000000000000000000000000000000000000041106000000000000000000000000000000000000000000000000000000000004110700000000000000000000000000000000000000000000000000000000000411080000000000000000000000000000000000000000000000000000000000041109000000000000000000000000000000000000000000000000000000000004110a000000000000000000000000000000000000000000000000000000000004110b000000000000000000000000000000000000000000000000000000000004110c000000000000000000000000000000000000000000000000000000000004110d000000000000000000000000000000000000000000000000000000000004110e000000000000000000000000000000000000000000000000000000000004110f0000000000000000000000000000000000000000000000000000000000041110000000000000000000000000000000000000000000000000000000000004111100000000000000000000000000000000000000000000000000000000000411120000000000000000000000000000000000000000000000000000000000041113000000000000000000000000000000000000000000000000000000000004111400000000000000000000000000000000000000000000000000000000000411150000000000000000000000000000000000000000000000000000000000041116000000000000000000000000000000000000000000000000000000000004111700000000000000000000000000000000000000000000000000000000000411180000000000000000000000000000000000000000000000000000000000041119000000000000000000000000000000000000000000000000000000000004111a000000000000000000000000000000000000000000000000000000000004111b000000000000000000000000000000000000000000000000000000000004111c000000000000000000000000000000000000000000000000000000000004111d000000000000000000000000000000000000000000000000000000000004111e000000000000000000000000000000000000000000000000000000000004111f0000000000000000000000000000000000000000000000000000000000041120000000000000000000000000000000000000000000000000000000000004112100000000000000000000000000000000000000000000000000000000000411220000000000000000000000000000000000000000000000000000000000041123000000000000000000000000000000000000000000000000000000000004112400000000000000000000000000000000000000000000000000000000000411250000000000000000000000000000000000000000000000000000000000041126000000000000000000000000000000000000000000000000000000000004112700000000000000000000000000000000000000000000000000000000000411280000000000000000000000000000000000000000000000000000000000041129000000000000000000000000000000000000000000000000000000000004112a000000000000000000000000000000000000000000000000000000000004112b000000000000000000000000000000000000000000000000000000000004112c000000000000000000000000000000000000000000000000000000000004112d000000000000000000000000000000000000000000000000000000000004112e000000000000000000000000000000000000000000000000000000000004112f0000000000000000000000000000000000000000000000000000000000041130000000000000000000000000000000000000000000000000000000000004113100000000000000000000000000000000000000000000000000000000000411320000000000000000000000000000000000000000000000000000000000041133000000000000000000000000000000000000000000000000000000000004113400000000000000000000000000000000000000000000000000000000000411350000000000000000000000000000000000000000000000000000000000041136000000000000000000000000000000000000000000000000000000000004113700000000000000000000000000000000000000000000000000000000000411380000000000000000000000000000000000000000000000000000000000041139000000000000000000000000000000000000000000000000000000000004113a000000000000000000000000000000000000000000000000000000000004113b000000000000000000000000000000000000000000000000000000000004113c000000000000000000000000000000000000000000000000000000000004113d000000000000000000000000000000000000000000000000000000000004113e080097a6ec570e9b8e257647c9c74c5ad3edc57ca5ef6ae44d80b3c30d1d99b9b300ce48ec41d1edde0066fab553a456ae2f380d14fa8f956af1fb0217513a598900619ff12eaf97f63aa2a2311de3b6571a7b880a5247cb33b6a74787bf3f9bd5007854a2fad4e1801c6404394bf3d37ab08c135ea38a1974242e39a21273685f000f55796e72957a819e68a22e8602d73c3ba3718a5a4bd92b80b0aa444b182a00788b6e9874fb040ee679a7fae257190099a605229b948334e54a57739535d4004f1658ee3c1a91627e5d72f5a731f0796299df82ab41e72c88eee0c82fa85e003ee802add96628c693ed71afa9908138ba5a6fbf0a5f29a9c74e4e42aba671400000000000000000000000000000000000000000000000000000000000042000000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042001000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042002000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042003000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042004000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042005000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420060000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004200700000000000000000000000000000000000000000000000000000000000420110000000000000000000000000000000000000000000000000000000000042008000000000000000000000000000000000000000000000000000000000004201200000000000000000000000000000000000000000000000000000000000420090000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042016000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042017000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042011000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042012000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420160000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004201700000000000000000000000000000000000000000000000000000000000420210000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004202200000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042026000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042027000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042021000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042022000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420260000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004202700000000000000000000000000000000000000000000000000000000000420310000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004203200000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042036000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042037000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042031000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042032000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004203f00000000000000000000000000000000000000000000000000000000000420360000000000000000000000000000000000000000000000000000000000042040000000000000000000000000000000000000000000000000000000000004203700000000000000000000000000000000000000000000000000000000000420410000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004204200000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042043000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042044000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042045000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042046000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042047000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042048000000000000000000000000000000000000000000000000000000000004203f0000000000000000000000000000000000000000000000000000000000042049200000000000000000000000000000000000000000000000000000000000041700000000000000000000000000000000000000000000000000000000000004170100000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004170100000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004171800000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004171800000000000000000000000000000000000000000000000000000000000417190000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004172800000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004172800000000000000000000000000000000000000000000000000000000000417290000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004172f000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004172f0000000000000000000000000000000000000000000000000000000000041730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "archive": "0x0597ee46e1331f63212f835b2d78b119be4d71b850172cec33fe279168a96a78", + "body": "0x000000010017be1340b1d588a74f982b8a2e26421f73f45a84c90103de3d5bf6a609785f3e0000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000041000000000000000000000000000000000000000000000000000000000000004100100000000000000000000000000000000000000000000000000000000000410020000000000000000000000000000000000000000000000000000000000041003000000000000000000000000000000000000000000000000000000000004100400000000000000000000000000000000000000000000000000000000000410050000000000000000000000000000000000000000000000000000000000041006000000000000000000000000000000000000000000000000000000000004100700000000000000000000000000000000000000000000000000000000000410080000000000000000000000000000000000000000000000000000000000041009000000000000000000000000000000000000000000000000000000000004100a000000000000000000000000000000000000000000000000000000000004100b000000000000000000000000000000000000000000000000000000000004100c000000000000000000000000000000000000000000000000000000000004100d000000000000000000000000000000000000000000000000000000000004100e000000000000000000000000000000000000000000000000000000000004100f0000000000000000000000000000000000000000000000000000000000041010000000000000000000000000000000000000000000000000000000000004101100000000000000000000000000000000000000000000000000000000000410120000000000000000000000000000000000000000000000000000000000041013000000000000000000000000000000000000000000000000000000000004101400000000000000000000000000000000000000000000000000000000000410150000000000000000000000000000000000000000000000000000000000041016000000000000000000000000000000000000000000000000000000000004101700000000000000000000000000000000000000000000000000000000000410180000000000000000000000000000000000000000000000000000000000041019000000000000000000000000000000000000000000000000000000000004101a000000000000000000000000000000000000000000000000000000000004101b000000000000000000000000000000000000000000000000000000000004101c000000000000000000000000000000000000000000000000000000000004101d000000000000000000000000000000000000000000000000000000000004101e000000000000000000000000000000000000000000000000000000000004101f0000000000000000000000000000000000000000000000000000000000041020000000000000000000000000000000000000000000000000000000000004102100000000000000000000000000000000000000000000000000000000000410220000000000000000000000000000000000000000000000000000000000041023000000000000000000000000000000000000000000000000000000000004102400000000000000000000000000000000000000000000000000000000000410250000000000000000000000000000000000000000000000000000000000041026000000000000000000000000000000000000000000000000000000000004102700000000000000000000000000000000000000000000000000000000000410280000000000000000000000000000000000000000000000000000000000041029000000000000000000000000000000000000000000000000000000000004102a000000000000000000000000000000000000000000000000000000000004102b000000000000000000000000000000000000000000000000000000000004102c000000000000000000000000000000000000000000000000000000000004102d000000000000000000000000000000000000000000000000000000000004102e000000000000000000000000000000000000000000000000000000000004102f0000000000000000000000000000000000000000000000000000000000041030000000000000000000000000000000000000000000000000000000000004103100000000000000000000000000000000000000000000000000000000000410320000000000000000000000000000000000000000000000000000000000041033000000000000000000000000000000000000000000000000000000000004103400000000000000000000000000000000000000000000000000000000000410350000000000000000000000000000000000000000000000000000000000041036000000000000000000000000000000000000000000000000000000000004103700000000000000000000000000000000000000000000000000000000000410380000000000000000000000000000000000000000000000000000000000041039000000000000000000000000000000000000000000000000000000000004103a000000000000000000000000000000000000000000000000000000000004103b000000000000000000000000000000000000000000000000000000000004103c000000000000000000000000000000000000000000000000000000000004103d000000000000000000000000000000000000000000000000000000000004103e000000000000000000000000000000000000000000000000000000000004103f4000000000000000000000000000000000000000000000000000000000000400010000000000000000000000000000000000000000000000000000000000041100000000000000000000000000000000000000000000000000000000000004110100000000000000000000000000000000000000000000000000000000000411020000000000000000000000000000000000000000000000000000000000041103000000000000000000000000000000000000000000000000000000000004110400000000000000000000000000000000000000000000000000000000000411050000000000000000000000000000000000000000000000000000000000041106000000000000000000000000000000000000000000000000000000000004110700000000000000000000000000000000000000000000000000000000000411080000000000000000000000000000000000000000000000000000000000041109000000000000000000000000000000000000000000000000000000000004110a000000000000000000000000000000000000000000000000000000000004110b000000000000000000000000000000000000000000000000000000000004110c000000000000000000000000000000000000000000000000000000000004110d000000000000000000000000000000000000000000000000000000000004110e000000000000000000000000000000000000000000000000000000000004110f0000000000000000000000000000000000000000000000000000000000041110000000000000000000000000000000000000000000000000000000000004111100000000000000000000000000000000000000000000000000000000000411120000000000000000000000000000000000000000000000000000000000041113000000000000000000000000000000000000000000000000000000000004111400000000000000000000000000000000000000000000000000000000000411150000000000000000000000000000000000000000000000000000000000041116000000000000000000000000000000000000000000000000000000000004111700000000000000000000000000000000000000000000000000000000000411180000000000000000000000000000000000000000000000000000000000041119000000000000000000000000000000000000000000000000000000000004111a000000000000000000000000000000000000000000000000000000000004111b000000000000000000000000000000000000000000000000000000000004111c000000000000000000000000000000000000000000000000000000000004111d000000000000000000000000000000000000000000000000000000000004111e000000000000000000000000000000000000000000000000000000000004111f0000000000000000000000000000000000000000000000000000000000041120000000000000000000000000000000000000000000000000000000000004112100000000000000000000000000000000000000000000000000000000000411220000000000000000000000000000000000000000000000000000000000041123000000000000000000000000000000000000000000000000000000000004112400000000000000000000000000000000000000000000000000000000000411250000000000000000000000000000000000000000000000000000000000041126000000000000000000000000000000000000000000000000000000000004112700000000000000000000000000000000000000000000000000000000000411280000000000000000000000000000000000000000000000000000000000041129000000000000000000000000000000000000000000000000000000000004112a000000000000000000000000000000000000000000000000000000000004112b000000000000000000000000000000000000000000000000000000000004112c000000000000000000000000000000000000000000000000000000000004112d000000000000000000000000000000000000000000000000000000000004112e000000000000000000000000000000000000000000000000000000000004112f0000000000000000000000000000000000000000000000000000000000041130000000000000000000000000000000000000000000000000000000000004113100000000000000000000000000000000000000000000000000000000000411320000000000000000000000000000000000000000000000000000000000041133000000000000000000000000000000000000000000000000000000000004113400000000000000000000000000000000000000000000000000000000000411350000000000000000000000000000000000000000000000000000000000041136000000000000000000000000000000000000000000000000000000000004113700000000000000000000000000000000000000000000000000000000000411380000000000000000000000000000000000000000000000000000000000041139000000000000000000000000000000000000000000000000000000000004113a000000000000000000000000000000000000000000000000000000000004113b000000000000000000000000000000000000000000000000000000000004113c000000000000000000000000000000000000000000000000000000000004113d000000000000000000000000000000000000000000000000000000000004113e080097a6ec570e9b8e257647c9c74c5ad3edc57ca5ef6ae44d80b3c30d1d99b9b300ce48ec41d1edde0066fab553a456ae2f380d14fa8f956af1fb0217513a598900619ff12eaf97f63aa2a2311de3b6571a7b880a5247cb33b6a74787bf3f9bd5007854a2fad4e1801c6404394bf3d37ab08c135ea38a1974242e39a21273685f000f55796e72957a819e68a22e8602d73c3ba3718a5a4bd92b80b0aa444b182a00788b6e9874fb040ee679a7fae257190099a605229b948334e54a57739535d4004f1658ee3c1a91627e5d72f5a731f0796299df82ab41e72c88eee0c82fa85e003ee802add96628c693ed71afa9908138ba5a6fbf0a5f29a9c74e4e42aba671400000000000000000000000000000000000000000000000000000000000042000000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042001000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042002000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042003000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042004000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042005000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420060000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004200700000000000000000000000000000000000000000000000000000000000420110000000000000000000000000000000000000000000000000000000000042008000000000000000000000000000000000000000000000000000000000004201200000000000000000000000000000000000000000000000000000000000420090000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004200a0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004200b0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004200c0000000000000000000000000000000000000000000000000000000000042016000000000000000000000000000000000000000000000000000000000004200d0000000000000000000000000000000000000000000000000000000000042017000000000000000000000000000000000000000000000000000000000004200e0000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004200f00000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042010000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042011000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042012000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042013000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042014000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042015000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420160000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004201700000000000000000000000000000000000000000000000000000000000420210000000000000000000000000000000000000000000000000000000000042018000000000000000000000000000000000000000000000000000000000004202200000000000000000000000000000000000000000000000000000000000420190000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004201a0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004201b0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004201c0000000000000000000000000000000000000000000000000000000000042026000000000000000000000000000000000000000000000000000000000004201d0000000000000000000000000000000000000000000000000000000000042027000000000000000000000000000000000000000000000000000000000004201e0000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004201f00000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042020000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042021000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042022000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042023000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042024000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042025000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420260000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004202700000000000000000000000000000000000000000000000000000000000420310000000000000000000000000000000000000000000000000000000000042028000000000000000000000000000000000000000000000000000000000004203200000000000000000000000000000000000000000000000000000000000420290000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004202a0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004202b0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004202c0000000000000000000000000000000000000000000000000000000000042036000000000000000000000000000000000000000000000000000000000004202d0000000000000000000000000000000000000000000000000000000000042037000000000000000000000000000000000000000000000000000000000004202e0000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004202f00000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042030000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042031000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042032000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042033000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042034000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042035000000000000000000000000000000000000000000000000000000000004203f00000000000000000000000000000000000000000000000000000000000420360000000000000000000000000000000000000000000000000000000000042040000000000000000000000000000000000000000000000000000000000004203700000000000000000000000000000000000000000000000000000000000420410000000000000000000000000000000000000000000000000000000000042038000000000000000000000000000000000000000000000000000000000004204200000000000000000000000000000000000000000000000000000000000420390000000000000000000000000000000000000000000000000000000000042043000000000000000000000000000000000000000000000000000000000004203a0000000000000000000000000000000000000000000000000000000000042044000000000000000000000000000000000000000000000000000000000004203b0000000000000000000000000000000000000000000000000000000000042045000000000000000000000000000000000000000000000000000000000004203c0000000000000000000000000000000000000000000000000000000000042046000000000000000000000000000000000000000000000000000000000004203d0000000000000000000000000000000000000000000000000000000000042047000000000000000000000000000000000000000000000000000000000004203e0000000000000000000000000000000000000000000000000000000000042048000000000000000000000000000000000000000000000000000000000004203f0000000000000000000000000000000000000000000000000000000000042049200000000000000000000000000000000000000000000000000000000000041700000000000000000000000000000000000000000000000000000000000004170100000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004170100000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417020000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041703000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004170400000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417050000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041706000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004170700000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004171800000000000000000000000000000000000000000000000000000000000417080000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f00000000000000000000000000000000000000000000000000000000000417100000000000000000000000000000000000000000000000000000000000041711000000000000000000000000000000000000000000000000000000000004171200000000000000000000000000000000000000000000000000000000000417130000000000000000000000000000000000000000000000000000000000041714000000000000000000000000000000000000000000000000000000000004171500000000000000000000000000000000000000000000000000000000000417160000000000000000000000000000000000000000000000000000000000041717000000000000000000000000000000000000000000000000000000000004171800000000000000000000000000000000000000000000000000000000000417190000000000000000000000000000000000000000000000000000000000041709000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004170a000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004170b000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004170c000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004170d000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004170e000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f000000000000000000000000000000000000000000000000000000000004170f0000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041710000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004171100000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417120000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041713000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004171400000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417150000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041716000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004171700000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004172800000000000000000000000000000000000000000000000000000000000417180000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f00000000000000000000000000000000000000000000000000000000000417200000000000000000000000000000000000000000000000000000000000041721000000000000000000000000000000000000000000000000000000000004172200000000000000000000000000000000000000000000000000000000000417230000000000000000000000000000000000000000000000000000000000041724000000000000000000000000000000000000000000000000000000000004172500000000000000000000000000000000000000000000000000000000000417260000000000000000000000000000000000000000000000000000000000041727000000000000000000000000000000000000000000000000000000000004172800000000000000000000000000000000000000000000000000000000000417290000000000000000000000000000000000000000000000000000000000041719000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004171a000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004171b000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004171c000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004171d000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004171e000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004172f000000000000000000000000000000000000000000000000000000000004171f0000000000000000000000000000000000000000000000000000000000041720000000000000000000000000000000000000000000000000000000000004172100000000000000000000000000000000000000000000000000000000000417220000000000000000000000000000000000000000000000000000000000041723000000000000000000000000000000000000000000000000000000000004172400000000000000000000000000000000000000000000000000000000000417250000000000000000000000000000000000000000000000000000000000041726000000000000000000000000000000000000000000000000000000000004172700000000000000000000000000000000000000000000000000000000000417280000000000000000000000000000000000000000000000000000000000041729000000000000000000000000000000000000000000000000000000000004172a000000000000000000000000000000000000000000000000000000000004172b000000000000000000000000000000000000000000000000000000000004172c000000000000000000000000000000000000000000000000000000000004172d000000000000000000000000000000000000000000000000000000000004172e000000000000000000000000000000000000000000000000000000000004172f00000000000000000000000000000000000000000000000000000000000417300000", "decodedHeader": { "contentCommitment": { - "blobsHash": "0x00233f47eaf69dbedbc52fe59b8d303cdf0b196ab081188192c05b593144163b", + "blobsHash": "0x00eebff001f99da234e03b7f71e498b8ebc91691232c43b8a3e94d645b754f93", "inHash": "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c", "outHash": "0x0077d7a5d20132e30e08855aaf9b57d3a10464d72915830307af3eed373a218e", "numTxs": 1 }, "globalVariables": { "blockNumber": 1, - "slotNumber": "0x000000000000000000000000000000000000000000000000000000000000001b", + "slotNumber": "0x0000000000000000000000000000000000000000000000000000000000000019", "chainId": 31337, - "timestamp": 1736364040, + "timestamp": 1742998681, "version": 1, - "coinbase": "0x17329afd428cfac91863962ac3c61b37d71d10a6", - "feeRecipient": "0x19a7636e17e068437e6f2b5662c09d13d40416a6e2db7bb951f0d6c21f2bb13b", + "coinbase": "0x509ad28f57e7c48f407ba8817e09f8c5a35cd99e", + "feeRecipient": "0x2a8b4b30849ccc6eff72262562dbb6fcd77104acce75f162fdfb30b6d4997580", "gasFees": { "feePerDaGas": 0, - "feePerL2Gas": 54153579570 + "feePerL2Gas": 4330 } }, "totalFees": "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -84,9 +83,9 @@ } } }, - "header": "0x0237797d6a2c04d20d4fa06b74482bd970ccd51a43d9b05b57e9b91fa1ae1cae00000001000000000000000000000000000000000000000000000000000000000000000100233f47eaf69dbedbc52fe59b8d303cdf0b196ab081188192c05b593144163b00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c0077d7a5d20132e30e08855aaf9b57d3a10464d72915830307af3eed373a218e2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d600000010142a1312a8dacc58c97d5dc0f9bc949ef0fe4d153c13ffcbe094665405b3c9a80000004001d6d73ea906b0b733dc3826affeb3eb6a54d5645f6e3b4ddab7830e9a1f48df000000c0080039323b94fe18c2d9e8fe4939b636b71dcd05a426a2426549b99d3fdbea99000000c00000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001b00000000000000000000000000000000000000000000000000000000677ed00817329afd428cfac91863962ac3c61b37d71d10a619a7636e17e068437e6f2b5662c09d13d40416a6e2db7bb951f0d6c21f2bb13b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c9bce0c3200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "publicInputsHash": "0x00f49a0ef63379e9e554204159cadbd63dbb6475330513a9d2b0856968f36cf3", - "blobInputs": "0x010103f972b0030a23bbdc8771d97aa76ef098e0762f0e826fd81aa30a1a83de691f70128a9cb2b754f85121ed78e86d6da16b6548c5d3dd3c1769ffc90e7a75743a98e9f5da0b9071def05c23d193aa52a385f29ed5bab0aa90437873affc32efa9f4967cc6826b175b2343cdf0e5f264afe5c28e30aef24e2d4a2905c7381f57533d59950eb92142aa1133dc4924d28da29741ec4cb1d66740587a9f773aa753f3b039365495e13627c342997536ad27eb57accc55010d009dcd5c5f32f1e141", + "header": "0x0237797d6a2c04d20d4fa06b74482bd970ccd51a43d9b05b57e9b91fa1ae1cae00000001000000000000000000000000000000000000000000000000000000000000000100eebff001f99da234e03b7f71e498b8ebc91691232c43b8a3e94d645b754f9300089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c0077d7a5d20132e30e08855aaf9b57d3a10464d72915830307af3eed373a218e2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d600000010142a1312a8dacc58c97d5dc0f9bc949ef0fe4d153c13ffcbe094665405b3c9a80000004001d6d73ea906b0b733dc3826affeb3eb6a54d5645f6e3b4ddab7830e9a1f48df000000c0080039323b94fe18c2d9e8fe4939b636b71dcd05a426a2426549b99d3fdbea99000000c00000000000000000000000000000000000000000000000000000000000007a690000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000067e40c99509ad28f57e7c48f407ba8817e09f8c5a35cd99e2a8b4b30849ccc6eff72262562dbb6fcd77104acce75f162fdfb30b6d4997580000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010ea00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "publicInputsHash": "0x004fda64dcba29dcd58d08e19fcb8d443f2014e91c28222a644ac34b8524f521", + "blobInputs": "0x0101623303d9585258da3df278232450a9b9e22ad63eaa1827943145d8e1a940c70f95095b11f9befd26b3128bc12e9303c7d9464b20d8de0cd41b411d4513bda70e1725bdbb4481ee3d13896fb8a6d5a5d3a03cc509dca716f5ecefd3e5415caaa3db7607c2959337a0ee03bb26a4bd02f55b579f9ddeef15f6629f5259684aa9bd2e82fba54fb1b70fb0bba620a92cd9a36d8e4880185e875f430f7babfd35f1d78853e684df666d2b5b152e1ef34bf9575fe1a7f8523534eee0b5508120d4cd", "numTxs": 1 } } \ No newline at end of file diff --git a/l1-contracts/test/fixtures/single_tx_block_2.json b/l1-contracts/test/fixtures/single_tx_block_2.json index adc6ebb28a71..420d91b3aa52 100644 --- a/l1-contracts/test/fixtures/single_tx_block_2.json +++ b/l1-contracts/test/fixtures/single_tx_block_2.json @@ -34,34 +34,33 @@ ] }, "block": { - "archive": "0x21461ce338a53dc8e4bc370237f054d24c428e456fcc9192261356cfb48d61bf", - "blockHash": "0x0cf15fee29151f5d95d0c69afdd7a75656d704deffa8075ba372500061af49b9", - "body": "0x00000001000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000141000000000000000000000000000000000000000000000000000000000000014100100000000000000000000000000000000000000000000000000000000001410020000000000000000000000000000000000000000000000000000000000141003000000000000000000000000000000000000000000000000000000000014100400000000000000000000000000000000000000000000000000000000001410050000000000000000000000000000000000000000000000000000000000141006000000000000000000000000000000000000000000000000000000000014100700000000000000000000000000000000000000000000000000000000001410080000000000000000000000000000000000000000000000000000000000141009000000000000000000000000000000000000000000000000000000000014100a000000000000000000000000000000000000000000000000000000000014100b000000000000000000000000000000000000000000000000000000000014100c000000000000000000000000000000000000000000000000000000000014100d000000000000000000000000000000000000000000000000000000000014100e000000000000000000000000000000000000000000000000000000000014100f0000000000000000000000000000000000000000000000000000000000141010000000000000000000000000000000000000000000000000000000000014101100000000000000000000000000000000000000000000000000000000001410120000000000000000000000000000000000000000000000000000000000141013000000000000000000000000000000000000000000000000000000000014101400000000000000000000000000000000000000000000000000000000001410150000000000000000000000000000000000000000000000000000000000141016000000000000000000000000000000000000000000000000000000000014101700000000000000000000000000000000000000000000000000000000001410180000000000000000000000000000000000000000000000000000000000141019000000000000000000000000000000000000000000000000000000000014101a000000000000000000000000000000000000000000000000000000000014101b000000000000000000000000000000000000000000000000000000000014101c000000000000000000000000000000000000000000000000000000000014101d000000000000000000000000000000000000000000000000000000000014101e000000000000000000000000000000000000000000000000000000000014101f0000000000000000000000000000000000000000000000000000000000141020000000000000000000000000000000000000000000000000000000000014102100000000000000000000000000000000000000000000000000000000001410220000000000000000000000000000000000000000000000000000000000141023000000000000000000000000000000000000000000000000000000000014102400000000000000000000000000000000000000000000000000000000001410250000000000000000000000000000000000000000000000000000000000141026000000000000000000000000000000000000000000000000000000000014102700000000000000000000000000000000000000000000000000000000001410280000000000000000000000000000000000000000000000000000000000141029000000000000000000000000000000000000000000000000000000000014102a000000000000000000000000000000000000000000000000000000000014102b000000000000000000000000000000000000000000000000000000000014102c000000000000000000000000000000000000000000000000000000000014102d000000000000000000000000000000000000000000000000000000000014102e000000000000000000000000000000000000000000000000000000000014102f0000000000000000000000000000000000000000000000000000000000141030000000000000000000000000000000000000000000000000000000000014103100000000000000000000000000000000000000000000000000000000001410320000000000000000000000000000000000000000000000000000000000141033000000000000000000000000000000000000000000000000000000000014103400000000000000000000000000000000000000000000000000000000001410350000000000000000000000000000000000000000000000000000000000141036000000000000000000000000000000000000000000000000000000000014103700000000000000000000000000000000000000000000000000000000001410380000000000000000000000000000000000000000000000000000000000141039000000000000000000000000000000000000000000000000000000000014103a000000000000000000000000000000000000000000000000000000000014103b000000000000000000000000000000000000000000000000000000000014103c000000000000000000000000000000000000000000000000000000000014103d000000000000000000000000000000000000000000000000000000000014103e000000000000000000000000000000000000000000000000000000000014103f4000000000000000000000000000000000000000000000000000000000001400010000000000000000000000000000000000000000000000000000000000141100000000000000000000000000000000000000000000000000000000000014110100000000000000000000000000000000000000000000000000000000001411020000000000000000000000000000000000000000000000000000000000141103000000000000000000000000000000000000000000000000000000000014110400000000000000000000000000000000000000000000000000000000001411050000000000000000000000000000000000000000000000000000000000141106000000000000000000000000000000000000000000000000000000000014110700000000000000000000000000000000000000000000000000000000001411080000000000000000000000000000000000000000000000000000000000141109000000000000000000000000000000000000000000000000000000000014110a000000000000000000000000000000000000000000000000000000000014110b000000000000000000000000000000000000000000000000000000000014110c000000000000000000000000000000000000000000000000000000000014110d000000000000000000000000000000000000000000000000000000000014110e000000000000000000000000000000000000000000000000000000000014110f0000000000000000000000000000000000000000000000000000000000141110000000000000000000000000000000000000000000000000000000000014111100000000000000000000000000000000000000000000000000000000001411120000000000000000000000000000000000000000000000000000000000141113000000000000000000000000000000000000000000000000000000000014111400000000000000000000000000000000000000000000000000000000001411150000000000000000000000000000000000000000000000000000000000141116000000000000000000000000000000000000000000000000000000000014111700000000000000000000000000000000000000000000000000000000001411180000000000000000000000000000000000000000000000000000000000141119000000000000000000000000000000000000000000000000000000000014111a000000000000000000000000000000000000000000000000000000000014111b000000000000000000000000000000000000000000000000000000000014111c000000000000000000000000000000000000000000000000000000000014111d000000000000000000000000000000000000000000000000000000000014111e000000000000000000000000000000000000000000000000000000000014111f0000000000000000000000000000000000000000000000000000000000141120000000000000000000000000000000000000000000000000000000000014112100000000000000000000000000000000000000000000000000000000001411220000000000000000000000000000000000000000000000000000000000141123000000000000000000000000000000000000000000000000000000000014112400000000000000000000000000000000000000000000000000000000001411250000000000000000000000000000000000000000000000000000000000141126000000000000000000000000000000000000000000000000000000000014112700000000000000000000000000000000000000000000000000000000001411280000000000000000000000000000000000000000000000000000000000141129000000000000000000000000000000000000000000000000000000000014112a000000000000000000000000000000000000000000000000000000000014112b000000000000000000000000000000000000000000000000000000000014112c000000000000000000000000000000000000000000000000000000000014112d000000000000000000000000000000000000000000000000000000000014112e000000000000000000000000000000000000000000000000000000000014112f0000000000000000000000000000000000000000000000000000000000141130000000000000000000000000000000000000000000000000000000000014113100000000000000000000000000000000000000000000000000000000001411320000000000000000000000000000000000000000000000000000000000141133000000000000000000000000000000000000000000000000000000000014113400000000000000000000000000000000000000000000000000000000001411350000000000000000000000000000000000000000000000000000000000141136000000000000000000000000000000000000000000000000000000000014113700000000000000000000000000000000000000000000000000000000001411380000000000000000000000000000000000000000000000000000000000141139000000000000000000000000000000000000000000000000000000000014113a000000000000000000000000000000000000000000000000000000000014113b000000000000000000000000000000000000000000000000000000000014113c000000000000000000000000000000000000000000000000000000000014113d000000000000000000000000000000000000000000000000000000000014113e08005c015113cb57d67dd6c0febd596819ac0298b6a23fc80aba17d445d540059a00f20b7d1308051fe7b68031a7c336b0b4b56738928b6510133aff1b818d5a9a0063eec1883a4f95f4933f9275e850d84b3d035f5061ed986c437a07331fd30e00d3a32d6bbc4fd843686fd0c5e118a73b847529977dca5b9e0e81f6604f22ca00c2f4f5133d9194d41e853e5e951e16690babce8461f25342c0bad20f2aa1e3000a6bf4739e7eb387913d955dc2e8f14f8cce27696b9d2e128b6acefafb80ee005763f7e0648f958b559677622a648f318fc79ebc0cb539170d49c26456e69200302e2b8a92cda941e9af8761b89899a58a587656d9710594e1d865b1652299400000000000000000000000000000000000000000000000000000000000142000000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142001000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142002000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142003000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142004000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142005000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420060000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014200700000000000000000000000000000000000000000000000000000000001420110000000000000000000000000000000000000000000000000000000000142008000000000000000000000000000000000000000000000000000000000014201200000000000000000000000000000000000000000000000000000000001420090000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142016000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142017000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142011000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142012000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420160000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014201700000000000000000000000000000000000000000000000000000000001420210000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014202200000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142026000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142027000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142021000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142022000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420260000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014202700000000000000000000000000000000000000000000000000000000001420310000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014203200000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142036000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142037000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142031000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142032000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014203f00000000000000000000000000000000000000000000000000000000001420360000000000000000000000000000000000000000000000000000000000142040000000000000000000000000000000000000000000000000000000000014203700000000000000000000000000000000000000000000000000000000001420410000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014204200000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142043000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142044000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142045000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142046000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142047000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142048000000000000000000000000000000000000000000000000000000000014203f0000000000000000000000000000000000000000000000000000000000142049200000000000000000000000000000000000000000000000000000000000141700000000000000000000000000000000000000000000000000000000000014170100000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014170100000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014171800000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014171800000000000000000000000000000000000000000000000000000000001417190000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014172800000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014172800000000000000000000000000000000000000000000000000000000001417290000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014172f000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014172f0000000000000000000000000000000000000000000000000000000000141730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "archive": "0x11e5e8a656d5dd9f7406b22fc7ee5a442ba5e6e1c2ac8e89b56e4957a5250b32", + "body": "0x0000000100021dd25b45b6b5d3adc1e289ec9295fac847fe36a25282a28fae507ddd09b97f0000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000141000000000000000000000000000000000000000000000000000000000000014100100000000000000000000000000000000000000000000000000000000001410020000000000000000000000000000000000000000000000000000000000141003000000000000000000000000000000000000000000000000000000000014100400000000000000000000000000000000000000000000000000000000001410050000000000000000000000000000000000000000000000000000000000141006000000000000000000000000000000000000000000000000000000000014100700000000000000000000000000000000000000000000000000000000001410080000000000000000000000000000000000000000000000000000000000141009000000000000000000000000000000000000000000000000000000000014100a000000000000000000000000000000000000000000000000000000000014100b000000000000000000000000000000000000000000000000000000000014100c000000000000000000000000000000000000000000000000000000000014100d000000000000000000000000000000000000000000000000000000000014100e000000000000000000000000000000000000000000000000000000000014100f0000000000000000000000000000000000000000000000000000000000141010000000000000000000000000000000000000000000000000000000000014101100000000000000000000000000000000000000000000000000000000001410120000000000000000000000000000000000000000000000000000000000141013000000000000000000000000000000000000000000000000000000000014101400000000000000000000000000000000000000000000000000000000001410150000000000000000000000000000000000000000000000000000000000141016000000000000000000000000000000000000000000000000000000000014101700000000000000000000000000000000000000000000000000000000001410180000000000000000000000000000000000000000000000000000000000141019000000000000000000000000000000000000000000000000000000000014101a000000000000000000000000000000000000000000000000000000000014101b000000000000000000000000000000000000000000000000000000000014101c000000000000000000000000000000000000000000000000000000000014101d000000000000000000000000000000000000000000000000000000000014101e000000000000000000000000000000000000000000000000000000000014101f0000000000000000000000000000000000000000000000000000000000141020000000000000000000000000000000000000000000000000000000000014102100000000000000000000000000000000000000000000000000000000001410220000000000000000000000000000000000000000000000000000000000141023000000000000000000000000000000000000000000000000000000000014102400000000000000000000000000000000000000000000000000000000001410250000000000000000000000000000000000000000000000000000000000141026000000000000000000000000000000000000000000000000000000000014102700000000000000000000000000000000000000000000000000000000001410280000000000000000000000000000000000000000000000000000000000141029000000000000000000000000000000000000000000000000000000000014102a000000000000000000000000000000000000000000000000000000000014102b000000000000000000000000000000000000000000000000000000000014102c000000000000000000000000000000000000000000000000000000000014102d000000000000000000000000000000000000000000000000000000000014102e000000000000000000000000000000000000000000000000000000000014102f0000000000000000000000000000000000000000000000000000000000141030000000000000000000000000000000000000000000000000000000000014103100000000000000000000000000000000000000000000000000000000001410320000000000000000000000000000000000000000000000000000000000141033000000000000000000000000000000000000000000000000000000000014103400000000000000000000000000000000000000000000000000000000001410350000000000000000000000000000000000000000000000000000000000141036000000000000000000000000000000000000000000000000000000000014103700000000000000000000000000000000000000000000000000000000001410380000000000000000000000000000000000000000000000000000000000141039000000000000000000000000000000000000000000000000000000000014103a000000000000000000000000000000000000000000000000000000000014103b000000000000000000000000000000000000000000000000000000000014103c000000000000000000000000000000000000000000000000000000000014103d000000000000000000000000000000000000000000000000000000000014103e000000000000000000000000000000000000000000000000000000000014103f4000000000000000000000000000000000000000000000000000000000001400010000000000000000000000000000000000000000000000000000000000141100000000000000000000000000000000000000000000000000000000000014110100000000000000000000000000000000000000000000000000000000001411020000000000000000000000000000000000000000000000000000000000141103000000000000000000000000000000000000000000000000000000000014110400000000000000000000000000000000000000000000000000000000001411050000000000000000000000000000000000000000000000000000000000141106000000000000000000000000000000000000000000000000000000000014110700000000000000000000000000000000000000000000000000000000001411080000000000000000000000000000000000000000000000000000000000141109000000000000000000000000000000000000000000000000000000000014110a000000000000000000000000000000000000000000000000000000000014110b000000000000000000000000000000000000000000000000000000000014110c000000000000000000000000000000000000000000000000000000000014110d000000000000000000000000000000000000000000000000000000000014110e000000000000000000000000000000000000000000000000000000000014110f0000000000000000000000000000000000000000000000000000000000141110000000000000000000000000000000000000000000000000000000000014111100000000000000000000000000000000000000000000000000000000001411120000000000000000000000000000000000000000000000000000000000141113000000000000000000000000000000000000000000000000000000000014111400000000000000000000000000000000000000000000000000000000001411150000000000000000000000000000000000000000000000000000000000141116000000000000000000000000000000000000000000000000000000000014111700000000000000000000000000000000000000000000000000000000001411180000000000000000000000000000000000000000000000000000000000141119000000000000000000000000000000000000000000000000000000000014111a000000000000000000000000000000000000000000000000000000000014111b000000000000000000000000000000000000000000000000000000000014111c000000000000000000000000000000000000000000000000000000000014111d000000000000000000000000000000000000000000000000000000000014111e000000000000000000000000000000000000000000000000000000000014111f0000000000000000000000000000000000000000000000000000000000141120000000000000000000000000000000000000000000000000000000000014112100000000000000000000000000000000000000000000000000000000001411220000000000000000000000000000000000000000000000000000000000141123000000000000000000000000000000000000000000000000000000000014112400000000000000000000000000000000000000000000000000000000001411250000000000000000000000000000000000000000000000000000000000141126000000000000000000000000000000000000000000000000000000000014112700000000000000000000000000000000000000000000000000000000001411280000000000000000000000000000000000000000000000000000000000141129000000000000000000000000000000000000000000000000000000000014112a000000000000000000000000000000000000000000000000000000000014112b000000000000000000000000000000000000000000000000000000000014112c000000000000000000000000000000000000000000000000000000000014112d000000000000000000000000000000000000000000000000000000000014112e000000000000000000000000000000000000000000000000000000000014112f0000000000000000000000000000000000000000000000000000000000141130000000000000000000000000000000000000000000000000000000000014113100000000000000000000000000000000000000000000000000000000001411320000000000000000000000000000000000000000000000000000000000141133000000000000000000000000000000000000000000000000000000000014113400000000000000000000000000000000000000000000000000000000001411350000000000000000000000000000000000000000000000000000000000141136000000000000000000000000000000000000000000000000000000000014113700000000000000000000000000000000000000000000000000000000001411380000000000000000000000000000000000000000000000000000000000141139000000000000000000000000000000000000000000000000000000000014113a000000000000000000000000000000000000000000000000000000000014113b000000000000000000000000000000000000000000000000000000000014113c000000000000000000000000000000000000000000000000000000000014113d000000000000000000000000000000000000000000000000000000000014113e08005c015113cb57d67dd6c0febd596819ac0298b6a23fc80aba17d445d540059a00f20b7d1308051fe7b68031a7c336b0b4b56738928b6510133aff1b818d5a9a0063eec1883a4f95f4933f9275e850d84b3d035f5061ed986c437a07331fd30e00d3a32d6bbc4fd843686fd0c5e118a73b847529977dca5b9e0e81f6604f22ca00c2f4f5133d9194d41e853e5e951e16690babce8461f25342c0bad20f2aa1e3000a6bf4739e7eb387913d955dc2e8f14f8cce27696b9d2e128b6acefafb80ee005763f7e0648f958b559677622a648f318fc79ebc0cb539170d49c26456e69200302e2b8a92cda941e9af8761b89899a58a587656d9710594e1d865b1652299400000000000000000000000000000000000000000000000000000000000142000000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142001000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142002000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142003000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142004000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142005000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420060000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014200700000000000000000000000000000000000000000000000000000000001420110000000000000000000000000000000000000000000000000000000000142008000000000000000000000000000000000000000000000000000000000014201200000000000000000000000000000000000000000000000000000000001420090000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014200a0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014200b0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014200c0000000000000000000000000000000000000000000000000000000000142016000000000000000000000000000000000000000000000000000000000014200d0000000000000000000000000000000000000000000000000000000000142017000000000000000000000000000000000000000000000000000000000014200e0000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014200f00000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142010000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142011000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142012000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142013000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142014000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142015000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420160000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014201700000000000000000000000000000000000000000000000000000000001420210000000000000000000000000000000000000000000000000000000000142018000000000000000000000000000000000000000000000000000000000014202200000000000000000000000000000000000000000000000000000000001420190000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014201a0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014201b0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014201c0000000000000000000000000000000000000000000000000000000000142026000000000000000000000000000000000000000000000000000000000014201d0000000000000000000000000000000000000000000000000000000000142027000000000000000000000000000000000000000000000000000000000014201e0000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014201f00000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142020000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142021000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142022000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142023000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142024000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142025000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420260000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014202700000000000000000000000000000000000000000000000000000000001420310000000000000000000000000000000000000000000000000000000000142028000000000000000000000000000000000000000000000000000000000014203200000000000000000000000000000000000000000000000000000000001420290000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014202a0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014202b0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014202c0000000000000000000000000000000000000000000000000000000000142036000000000000000000000000000000000000000000000000000000000014202d0000000000000000000000000000000000000000000000000000000000142037000000000000000000000000000000000000000000000000000000000014202e0000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014202f00000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142030000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142031000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142032000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142033000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142034000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142035000000000000000000000000000000000000000000000000000000000014203f00000000000000000000000000000000000000000000000000000000001420360000000000000000000000000000000000000000000000000000000000142040000000000000000000000000000000000000000000000000000000000014203700000000000000000000000000000000000000000000000000000000001420410000000000000000000000000000000000000000000000000000000000142038000000000000000000000000000000000000000000000000000000000014204200000000000000000000000000000000000000000000000000000000001420390000000000000000000000000000000000000000000000000000000000142043000000000000000000000000000000000000000000000000000000000014203a0000000000000000000000000000000000000000000000000000000000142044000000000000000000000000000000000000000000000000000000000014203b0000000000000000000000000000000000000000000000000000000000142045000000000000000000000000000000000000000000000000000000000014203c0000000000000000000000000000000000000000000000000000000000142046000000000000000000000000000000000000000000000000000000000014203d0000000000000000000000000000000000000000000000000000000000142047000000000000000000000000000000000000000000000000000000000014203e0000000000000000000000000000000000000000000000000000000000142048000000000000000000000000000000000000000000000000000000000014203f0000000000000000000000000000000000000000000000000000000000142049200000000000000000000000000000000000000000000000000000000000141700000000000000000000000000000000000000000000000000000000000014170100000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014170100000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417020000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141703000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014170400000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417050000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141706000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014170700000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014171800000000000000000000000000000000000000000000000000000000001417080000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f00000000000000000000000000000000000000000000000000000000001417100000000000000000000000000000000000000000000000000000000000141711000000000000000000000000000000000000000000000000000000000014171200000000000000000000000000000000000000000000000000000000001417130000000000000000000000000000000000000000000000000000000000141714000000000000000000000000000000000000000000000000000000000014171500000000000000000000000000000000000000000000000000000000001417160000000000000000000000000000000000000000000000000000000000141717000000000000000000000000000000000000000000000000000000000014171800000000000000000000000000000000000000000000000000000000001417190000000000000000000000000000000000000000000000000000000000141709000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014170a000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014170b000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014170c000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014170d000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014170e000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f000000000000000000000000000000000000000000000000000000000014170f0000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141710000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014171100000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417120000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141713000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014171400000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417150000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141716000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014171700000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014172800000000000000000000000000000000000000000000000000000000001417180000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f00000000000000000000000000000000000000000000000000000000001417200000000000000000000000000000000000000000000000000000000000141721000000000000000000000000000000000000000000000000000000000014172200000000000000000000000000000000000000000000000000000000001417230000000000000000000000000000000000000000000000000000000000141724000000000000000000000000000000000000000000000000000000000014172500000000000000000000000000000000000000000000000000000000001417260000000000000000000000000000000000000000000000000000000000141727000000000000000000000000000000000000000000000000000000000014172800000000000000000000000000000000000000000000000000000000001417290000000000000000000000000000000000000000000000000000000000141719000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014171a000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014171b000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014171c000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014171d000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014171e000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014172f000000000000000000000000000000000000000000000000000000000014171f0000000000000000000000000000000000000000000000000000000000141720000000000000000000000000000000000000000000000000000000000014172100000000000000000000000000000000000000000000000000000000001417220000000000000000000000000000000000000000000000000000000000141723000000000000000000000000000000000000000000000000000000000014172400000000000000000000000000000000000000000000000000000000001417250000000000000000000000000000000000000000000000000000000000141726000000000000000000000000000000000000000000000000000000000014172700000000000000000000000000000000000000000000000000000000001417280000000000000000000000000000000000000000000000000000000000141729000000000000000000000000000000000000000000000000000000000014172a000000000000000000000000000000000000000000000000000000000014172b000000000000000000000000000000000000000000000000000000000014172c000000000000000000000000000000000000000000000000000000000014172d000000000000000000000000000000000000000000000000000000000014172e000000000000000000000000000000000000000000000000000000000014172f00000000000000000000000000000000000000000000000000000000001417300000", "decodedHeader": { "contentCommitment": { - "blobsHash": "0x004639cd8944ff2ac8d037b38b23cb5e5cff4d83ec1cd3c672029fea5f76446c", + "blobsHash": "0x009233fdfe2f50d7176a1a9e22c7bba211a92369eb904d3154e7e66a047dcfbf", "inHash": "0x00e1371045bd7d2c3e1f19cba5f536f0e82042ba4bc257d4ba19c146215e8242", "outHash": "0x001b1d8b076a65df0f4a11ad667192987442f031c34f639c843dfec49c425602", "numTxs": 1 }, "globalVariables": { "blockNumber": 2, - "slotNumber": "0x0000000000000000000000000000000000000000000000000000000000000024", + "slotNumber": "0x0000000000000000000000000000000000000000000000000000000000000022", "chainId": 31337, - "timestamp": 1736364256, + "timestamp": 1742998897, "version": 1, - "coinbase": "0x17329afd428cfac91863962ac3c61b37d71d10a6", - "feeRecipient": "0x19a7636e17e068437e6f2b5662c09d13d40416a6e2db7bb951f0d6c21f2bb13b", + "coinbase": "0x509ad28f57e7c48f407ba8817e09f8c5a35cd99e", + "feeRecipient": "0x2a8b4b30849ccc6eff72262562dbb6fcd77104acce75f162fdfb30b6d4997580", "gasFees": { "feePerDaGas": 0, - "feePerL2Gas": 54153579570 + "feePerL2Gas": 1230 } }, "totalFees": "0x0000000000000000000000000000000000000000000000000000000000000000", "totalManaUsed": "0x0000000000000000000000000000000000000000000000000000000000000000", "lastArchive": { "nextAvailableLeafIndex": 2, - "root": "0x018b2a76a24f5703f68fd1fb585b12d48e48c7c85857a338a3826941a74b2fa6" + "root": "0x0597ee46e1331f63212f835b2d78b119be4d71b850172cec33fe279168a96a78" }, "stateReference": { "l1ToL2MessageTree": { @@ -84,9 +83,9 @@ } } }, - "header": "0x018b2a76a24f5703f68fd1fb585b12d48e48c7c85857a338a3826941a74b2fa6000000020000000000000000000000000000000000000000000000000000000000000001004639cd8944ff2ac8d037b38b23cb5e5cff4d83ec1cd3c672029fea5f76446c00e1371045bd7d2c3e1f19cba5f536f0e82042ba4bc257d4ba19c146215e8242001b1d8b076a65df0f4a11ad667192987442f031c34f639c843dfec49c425602026efb6c2a517de2448119d0f1255757265dbec7cdd2952df929ede666e109440000002001aec0a148df6b4001468783cf50a3c6c99904144835d44408a7af869c46b2330000008001ee8f0bd3649ecd235fb31eb3b63c1a2f8d61c7f9bd3af681e39046ab0ddca00000010013db3951032fbb6a9ae4aa3195954e4d4137410373576365fdc8dff93d3595b0000001000000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000677ed0e017329afd428cfac91863962ac3c61b37d71d10a619a7636e17e068437e6f2b5662c09d13d40416a6e2db7bb951f0d6c21f2bb13b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c9bce0c3200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "publicInputsHash": "0x000d099a35a0e2d7b789966b3f5d8f66a847a8098926356034e82f8360ac0ed9", - "blobInputs": "0x01011a89a63a3a8ea3060030726a00f9f35f4435f97188f18b620d2a52710fbd1b249b21786b102d4bd6385bb4afdfa530de2169cb9133924bafae8b38b2e0f66e47e614828c3d6a0e408e7438f5a18c74b94d8c0adbe3c98f95886f56059046cd915a87aaf870af7edf160ca857527416bdd182c9c9bd30779d4b9fe95fae9458ee16cb7cb34f12ed674de990dd7988c8922e1f32b809c005140444f875b0555ad12064e4db9124ee405b8dd3a3f08538e24df6c3cb8152b9f434f401d78c47e4", + "header": "0x0597ee46e1331f63212f835b2d78b119be4d71b850172cec33fe279168a96a78000000020000000000000000000000000000000000000000000000000000000000000001009233fdfe2f50d7176a1a9e22c7bba211a92369eb904d3154e7e66a047dcfbf00e1371045bd7d2c3e1f19cba5f536f0e82042ba4bc257d4ba19c146215e8242001b1d8b076a65df0f4a11ad667192987442f031c34f639c843dfec49c425602026efb6c2a517de2448119d0f1255757265dbec7cdd2952df929ede666e109440000002001aec0a148df6b4001468783cf50a3c6c99904144835d44408a7af869c46b2330000008001ee8f0bd3649ecd235fb31eb3b63c1a2f8d61c7f9bd3af681e39046ab0ddca00000010013db3951032fbb6a9ae4aa3195954e4d4137410373576365fdc8dff93d3595b0000001000000000000000000000000000000000000000000000000000000000000007a690000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000067e40d71509ad28f57e7c48f407ba8817e09f8c5a35cd99e2a8b4b30849ccc6eff72262562dbb6fcd77104acce75f162fdfb30b6d4997580000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004ce00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "publicInputsHash": "0x001287a3e5c1dd74c00cd1f259b18bd0225464a62ecc032af6037e1b9fbb44fc", + "blobInputs": "0x0101852dcd453197df573bbb7bb74389a65531e51fe3817ad4686be68f610406a617806603c07f7ae6aeab3b6d5bae90768ce8b5630efdebfbcc817b19d885647562785179e873bf2c74774604783bdb4f90f43c25a5e32efb54bd51b5523882d5991573f5a6b6efd195da4f1e8420d759dd3bffd3025095ae5db88f71fba5d4a4ac1dedac6da3b2a8dff6d4c8c2312b738f3ff79ea6ce6602fca4220f9dfa05d124b96e771917e2096376ab8c5f0f79ded34c73e2b3d49ae838ce5f4d3526dbfa", "numTxs": 1 } } \ No newline at end of file diff --git a/l1-contracts/test/harnesses/TestConstants.sol b/l1-contracts/test/harnesses/TestConstants.sol index 432395225cfc..77c2297e25fc 100644 --- a/l1-contracts/test/harnesses/TestConstants.sol +++ b/l1-contracts/test/harnesses/TestConstants.sol @@ -20,7 +20,6 @@ library TestConstants { // Genesis state bytes32 internal constant GENESIS_ARCHIVE_ROOT = bytes32(Constants.GENESIS_ARCHIVE_ROOT); - bytes32 internal constant GENESIS_BLOCK_HASH = bytes32(Constants.GENESIS_BLOCK_HASH); bytes32 internal constant GENESIS_VK_TREE_ROOT = bytes32(0); bytes32 internal constant GENESIS_PROTOCOL_CONTRACT_TREE_ROOT = bytes32(0); @@ -28,8 +27,7 @@ library TestConstants { return GenesisState({ vkTreeRoot: GENESIS_VK_TREE_ROOT, protocolContractTreeRoot: GENESIS_PROTOCOL_CONTRACT_TREE_ROOT, - genesisArchiveRoot: GENESIS_ARCHIVE_ROOT, - genesisBlockHash: GENESIS_BLOCK_HASH + genesisArchiveRoot: GENESIS_ARCHIVE_ROOT }); } diff --git a/l1-contracts/test/validator-selection/ValidatorSelection.t.sol b/l1-contracts/test/validator-selection/ValidatorSelection.t.sol index 53783a1c1011..48e55f31fb5a 100644 --- a/l1-contracts/test/validator-selection/ValidatorSelection.t.sol +++ b/l1-contracts/test/validator-selection/ValidatorSelection.t.sol @@ -290,7 +290,6 @@ contract ValidatorSelectionTest is DecoderBase { ProposeArgs memory args = ProposeArgs({ header: header, archive: full.block.archive, - blockHash: bytes32(0), oracleInput: OracleInput(0), txHashes: txHashes }); diff --git a/noir-projects/noir-protocol-circuits/crates/private-kernel-init/Prover.toml b/noir-projects/noir-protocol-circuits/crates/private-kernel-init/Prover.toml index 42a8f0ce24b5..9dc4bce85eaa 100644 --- a/noir-projects/noir-protocol-circuits/crates/private-kernel-init/Prover.toml +++ b/noir-projects/noir-protocol-circuits/crates/private-kernel-init/Prover.toml @@ -1,17 +1,17 @@ -vk_tree_root = "0x0f41ca517c1c4dabab14d88d50dcbaa9638b23bfdbc28fa3a94d7260ef0c7427" -protocol_contract_tree_root = "0x0af0a7a13726bd13afe2a3fbfa52690c43ca774227d6c2bfe86fce93c387953a" +vk_tree_root = "0x18c54e1814ecadeffcd11feed9049f02d31148f4457ddcf84e4d580bbc5ccb0f" +protocol_contract_tree_root = "0x2098b90e2b21f02ad7a1fc6afcf944ef3685236caeb015b51a502471c492cdfb" is_private_only = false first_nullifier_hint = "0x0000000000000000000000000000000000000000000000000000000000000000" [tx_request] -args_hash = "0x0a4078b6c90b06103550b0d4439637b26c358b3647dd2b90093c418dd30873ac" +args_hash = "0x28134e7c5b93e5fdcca3cd033227c7d884654b6260e35fe79a62c2875cc1f012" [tx_request.origin] - inner = "0x0d276f24617f511e59fd25490f3cfbf48d2da5316bbe844093e4e2a81cd506bb" + inner = "0x2767f9570de8773ff9c0ee7316694a7959e85930a452a3b991946494c036e37f" [tx_request.tx_context] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" [tx_request.tx_context.gas_settings.gas_limits] da_gas = "0x000000000000000000000000000000000000000000000000000000003b9aca00" @@ -23,7 +23,7 @@ l2_gas = "0x00000000000000000000000000000000000000000000000000000000005b8d80" [tx_request.tx_context.gas_settings.max_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" -fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000002fd0" +fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000002fc1" [tx_request.tx_context.gas_settings.max_priority_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -57,134 +57,134 @@ key = [ "0x000000000000000000000000000000000000000000000000000000000000000d", "0x000000000000000000000000000000000000000000000000000000000000000e", "0x000000000000000000000000000000000000000000000000000000000000000f", + "0x00000000000000000000000000000000000000000000000000000000ffffffff", + "0x00000000000000000000000000000000000000000000000000000000ffffffff", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000000000d07848ec3c6f5bf07b2ecaf0f9df31848b", + "0x00000000000000000000000000000000000f047593b0e2c1d74637596a063830", + "0x000000000000000000000000000000027de8369e90ed6f423abae4511146af1e", + "0x0000000000000000000000000000000000106b29a0a5361840f9c47d45da051f", + "0x000000000000000000000000000000c9771ea157dbe0ccd6a93b561ab7279e4c", + "0x0000000000000000000000000000000000026f532848423eb3df9b7e211e4095", + "0x000000000000000000000000000000e33691021d0235bce4aeed971909fb8be3", + "0x000000000000000000000000000000000021b4dd08ecf98014e8d7d659fc827f", + "0x0000000000000000000000000000008b226c162b5cf33ab4e03d363b51e9fd52", + "0x00000000000000000000000000000000003035f2f519bc64c2010a0aee56feff", + "0x0000000000000000000000000000006682d33f336559c696cbad85e56a197eab", + "0x0000000000000000000000000000000000230a88f56104ebfbf4b08f7d788a8c", + "0x00000000000000000000000000000010f1f92ae4de68dadf42248599bb8feba4", + "0x000000000000000000000000000000000017be09978043b394179f4976643914", + "0x000000000000000000000000000000910e1bae199b849d4e3c78b2bc031d3c37", + "0x00000000000000000000000000000000001b29754f7da53f25ee54d9bd5c96a4", + "0x000000000000000000000000000000daff69391f04a4f4b758a42ea44ed06031", + "0x00000000000000000000000000000000003021aa0294eaa9cfbca82ec74b6eb2", + "0x0000000000000000000000000000001674fc7e3033fdbf0259558d82adb0c1e6", + "0x00000000000000000000000000000000000315250eb906c2dc2a27c63a3a7904", + "0x000000000000000000000000000000355189a61241cb0d27b8e6b6784f5e9410", + "0x00000000000000000000000000000000002e837874d8955d6a09d328604c4cfc", + "0x0000000000000000000000000000001ba97fc6d5cde26c4bf189f0d36a3e00d5", + "0x00000000000000000000000000000000001a44a93227d9ca397b5c4b627e33d6", + "0x00000000000000000000000000000066aa9c8d7ab7581b9810eda73e53e17ddf", + "0x000000000000000000000000000000000022e4a62d589f5dc58e003e17d2c29e", + "0x00000000000000000000000000000052acb0956df6fa77996db824b0a1fe6270", + "0x00000000000000000000000000000000000e3f83d3c9ffa6247c0ba515ce2e6f", + "0x000000000000000000000000000000d0a00080cd8f34ba0e37546c102665c8fe", + "0x00000000000000000000000000000000000d56bbef147278fdc057f9a336d984", + "0x000000000000000000000000000000f11f3eaed8726026211d2ee0f83e32e453", + "0x0000000000000000000000000000000000291fbbe0b7f6f2823d5469cf981a1e", + "0x000000000000000000000000000000f9e46def9848e21d6cfc1cb9eb7467c334", + "0x0000000000000000000000000000000000199d04cff100cf2ea3378a2dff9e96", + "0x000000000000000000000000000000e12cd4348c0fee5f408603a93bbdd5a189", + "0x000000000000000000000000000000000003a7b70aa9ac2216a6c441645070c4", + "0x000000000000000000000000000000e1f6cd0eed1d0a2c4b62ebf9e3d89f4282", + "0x000000000000000000000000000000000012757e995a5f031876f98b81c151ce", + "0x00000000000000000000000000000007c8ee2896992e13e3e6bebe763369f0a3", + "0x0000000000000000000000000000000000062f91dffa68b920efd83aabe7618d", + "0x000000000000000000000000000000057ddcb73090cb416aeff42f51f63937e4", + "0x000000000000000000000000000000000020bd69436ac42738bbb39a72b9253b", + "0x0000000000000000000000000000009d92c3dea3b5731bf5aa01fac303db41c2", + "0x00000000000000000000000000000000001ae83164727e4f841a1aaf1ddf1f83", + "0x0000000000000000000000000000001f3e02d193e08f48e8cda7980ee69aa41c", + "0x000000000000000000000000000000000016cf9d30048eeb548a401f8a0525cf", + "0x0000000000000000000000000000008e15507df6461abe076cbd08b5cb573e8a", + "0x000000000000000000000000000000000006317ef1022d23a76f5613052f0150", + "0x00000000000000000000000000000068c38b1cbbc187ed876db29119b21fefc9", + "0x000000000000000000000000000000000011b6989170787d0ec6e790bbf44f2e", + "0x0000000000000000000000000000001d84d583f8b9223fe3deda1752f94ee111", + "0x00000000000000000000000000000000001d4e221a563f093c6f3a6202a1bb16", + "0x0000000000000000000000000000006051cef375a22a225c8d65dec619a67a38", + "0x0000000000000000000000000000000000110b407173b1ea857c1474ae3d2f6b", + "0x000000000000000000000000000000ec2ae3a1f0435e087188ac7d6e45a1ae7d", + "0x000000000000000000000000000000000010d8a71d9e49c33a30ad24ec50ca19", + "0x000000000000000000000000000000b2113610c4a73d1c8a7f05b55332dcac1b", + "0x000000000000000000000000000000000029afa31837b7cc89f2a3adf938f708", + "0x000000000000000000000000000000cb2af3e2736e55d8b48e2fe09c1c2aedd0", + "0x000000000000000000000000000000000005c36bccea38ab802de4d65c5fd0bc", + "0x000000000000000000000000000000e1baa383594e409d541e9ce7433377c6e8", + "0x000000000000000000000000000000000013a953efe86c2d1e64ae018c7d4b1f", + "0x000000000000000000000000000000fc788d8c88244dcfaba1c93f6eca4a50c9", + "0x00000000000000000000000000000000001ff58f3963bacea82212c9aa13fa87", + "0x0000000000000000000000000000008f3bf53f6a5df57df7baaeac5791e58f1b", + "0x000000000000000000000000000000000027d0fa4bc4f9ce5d619397bc2fd1db", + "0x0000000000000000000000000000005482f9be63305287310bfbfcac10e9d5fb", + "0x000000000000000000000000000000000011a0679ef255c9bcec2e169b322c37", + "0x00000000000000000000000000000079842dadc4cd50a8345c0b0b03344facd4", + "0x000000000000000000000000000000000026f439e4b5d784501e1489b840190a", + "0x000000000000000000000000000000169b2c21fc4cba3e76087ccf4c0a8b0610", + "0x00000000000000000000000000000000002d0d50d7c8f5cf88ed2ce1f3f9c8fc", + "0x000000000000000000000000000000682f8e066039e7f6c312ffde6debd05e38", + "0x00000000000000000000000000000000002eb853119dd2592f38dee1ba5fa799", + "0x00000000000000000000000000000036f9cbe6d783325ba64932c775e512183b", + "0x00000000000000000000000000000000002eda7ad63304d6d47b611fbd51648d", + "0x000000000000000000000000000000af43be2b285ac68e158b14bdd2e1936ab4", + "0x00000000000000000000000000000000001732e69909e408596fa68ea9a3648e", + "0x0000000000000000000000000000002c517b98652060b6175f2deff034a8e12a", + "0x0000000000000000000000000000000000071e0e7e4f1ccaf9b457696c07a43f", + "0x000000000000000000000000000000396536877ca317966883003d823fd2d19a", + "0x0000000000000000000000000000000000152c278e593ab353bb41ab282c4f41", + "0x000000000000000000000000000000618b0464544c1d469fa9d38b01a8bdb552", + "0x000000000000000000000000000000000028aba13ae29c19a8e32da83889378a", + "0x000000000000000000000000000000a73624e2afe22d4294d383c8ffc5f0c32b", + "0x000000000000000000000000000000000016e7929eda9d577b701ad9ec519140", + "0x000000000000000000000000000000422f4e1829d7281b1c2c148fcd3ac320ba", + "0x0000000000000000000000000000000000002c2a79c29fb84c3704d8852654c1", + "0x00000000000000000000000000000084a9b3527cd2ebff62b245a04aab258f92", + "0x00000000000000000000000000000000000a85019e1252699312cbd5ec6a23b2", + "0x00000000000000000000000000000000b5eee72336430c3feb7da6b8b57e1551", + "0x00000000000000000000000000000000001bba1a6e49f0ba66643e8b32fd090e", + "0x0000000000000000000000000000004d612c80fc91a269aaaaa975c84c8e58d6", + "0x000000000000000000000000000000000000b34e0082bc5aed819a81bb36744c", + "0x000000000000000000000000000000beb969e0f2c7856270dc5fda2c5d399dcc", + "0x00000000000000000000000000000000000013aea3bcc0841ec6d94b285f1beb", + "0x0000000000000000000000000000002671782a93372aad369530ae4b75c22bdb", + "0x000000000000000000000000000000000002d9f0465ef4b2b116d4b88625344f", + "0x00000000000000000000000000000026e9839942d72920141febdab07e4c20c3", + "0x0000000000000000000000000000000000265f0c70536ec02f7c9be4ce19c29d", + "0x0000000000000000000000000000003a339e8cb8c648d07c34ddcb4ef4452783", + "0x000000000000000000000000000000000027807a4f7b23d9cc1c865ef9930999", + "0x000000000000000000000000000000bc4fd810c781d7b239a47a086361686edc", + "0x00000000000000000000000000000000000cbf9d6e0b6faa609ddbd5817f5d10", + "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000003830d07848ec3c6f5bf07b2ecaf0f9df31", - "0x000000000000000000000000000000000000000f047593b0e2c1d74637596a06", - "0x00000000000000000000000000000049efffa8c565bafbd2f701228d335716b8", - "0x000000000000000000000000000000000023c27385673d64e2a7a06e577a4329", - "0x00000000000000000000000000000027cf45376a68027c39187504f6cca3bf52", - "0x00000000000000000000000000000000001df11716af9367c515c30e77f99d15", - "0x00000000000000000000000000000069b95ef6dcc8c7a28e08830aa90da21226", - "0x00000000000000000000000000000000000d1f365c39740c7c572417b451d5f3", - "0x00000000000000000000000000000043d0884d494547c7d8c273c80f8541575b", - "0x00000000000000000000000000000000002b1a93503091d968f421759d07eba6", - "0x000000000000000000000000000000b696df6dfc34fa709799f40f3b4b7477b6", - "0x00000000000000000000000000000000000b5c9acc22fd4034526a982007f6be", - "0x0000000000000000000000000000007de50e1cd65a01494e629e29f6d49fc101", - "0x00000000000000000000000000000000001de27ad847343ff042f38c324673b3", - "0x00000000000000000000000000000020468b63d60c52714faccc0c1d50c80e01", - "0x00000000000000000000000000000000002a12e15df088fcfe5de4d77ad3b7fb", - "0x000000000000000000000000000000111b5994d7d0ad3a17b896cc8d56275189", - "0x00000000000000000000000000000000000bd2e1aec8d0f4c0f17f76f1ad45f3", - "0x0000000000000000000000000000001b6c950a6b15be697082e1cd3eb505b069", - "0x00000000000000000000000000000000002fccb4a243dd18dd0a8be47144b8e2", - "0x000000000000000000000000000000d69e2fa744044b17961ca5888b54845a42", - "0x00000000000000000000000000000000000054f4b7f3ae57ee7c28f2f9225aea", - "0x0000000000000000000000000000001b0f9769cb8d806e3ab7ea4d45675c7269", - "0x000000000000000000000000000000000002e32eec059d475ca148aa38c6de75", - "0x000000000000000000000000000000c29e66aa9c8d7ab7581b9810eda73e53e1", - "0x000000000000000000000000000000000000d522e4a62d589f5dc58e003e17d2", - "0x00000000000000000000000000000073404fd78dc48a61dfff58558a73b6a770", - "0x00000000000000000000000000000000001d167159c17089ac3583f09ea2131d", - "0x0000000000000000000000000000001e55cdcaddafe9fa1a41cd1f26bb162bd7", - "0x000000000000000000000000000000000001a77070f98bd41f085d34eaf6a086", - "0x000000000000000000000000000000a3c0eb74f90d11482b359eecd37f044916", - "0x0000000000000000000000000000000000076cef54371a37501141267a63ca36", - "0x0000000000000000000000000000002838f43a284dd11ead2ceacbc157f77f4b", - "0x000000000000000000000000000000000022c1dfd180097059eded8c5d84289e", - "0x000000000000000000000000000000fa66db828e92c4e5b96ebe55a84747c8b9", - "0x000000000000000000000000000000000001a2c9dc3244290540d58fea3b5eee", - "0x00000000000000000000000000000039085db718d597bd6277e9bea7706ce0ca", - "0x0000000000000000000000000000000000105c271cdb0479e1da27a5d606fdb8", - "0x00000000000000000000000000000003f5865e5cc024cea0d7c35aa7e5f93622", - "0x0000000000000000000000000000000000121db7bcb0ae5a3f00d0aa21b92a8f", - "0x000000000000000000000000000000aedcffd3971569669650e8bf98cd5e011d", - "0x00000000000000000000000000000000002f11e6f1e47cea1d45f7a4d9946d57", - "0x000000000000000000000000000000c1ec1c28327631eae5dfd51deb22460694", - "0x0000000000000000000000000000000000077fcc755032d2549733d4642d9c86", - "0x000000000000000000000000000000c8379dd371692216020cc84190bf91e953", - "0x0000000000000000000000000000000000115dc85cbbfe6465330444899e08ac", - "0x000000000000000000000000000000e88a09d59c44a0e67309a5c8787f3ed382", - "0x000000000000000000000000000000000012ef1ad8db5c21affab69e328e8125", - "0x000000000000000000000000000000f196e758f9b449f6fab166e19bb89cb4d8", - "0x00000000000000000000000000000000000e25c343b75fd04ec4be81310f3a9b", - "0x00000000000000000000000000000044b817da8fe2318eed4f61ae7eb55f0432", - "0x00000000000000000000000000000000002e37e3829d53d59827fb58605bfd40", - "0x000000000000000000000000000000b90d5aa78951ae77f531da5d0a7cd2248a", - "0x00000000000000000000000000000000001f7fd73fbbaaf30b0944653a6ea8db", - "0x0000000000000000000000000000000eeae955c0d10cae439030707ecc744b13", - "0x0000000000000000000000000000000000196f73f2e4ba5df65299a54021e9a0", - "0x000000000000000000000000000000de422dd181d76f47956828dac12bdc3b07", - "0x00000000000000000000000000000000001d503e56ff83573aa399218029752f", - "0x000000000000000000000000000000b7f646eb3fa91e0eae2452e9eb57252455", - "0x00000000000000000000000000000000001aee1a6ac83809bb828f5cc151d856", - "0x000000000000000000000000000000d4c1dc105de192240bacd1ee41854f3e5b", - "0x00000000000000000000000000000000002c3ed9ddcf2967c54bdd4dd3fb871b", - "0x0000000000000000000000000000008429f6ce47eac0fa18df29716ddd7ad52e", - "0x00000000000000000000000000000000000556e62a0a72e313ed670b38c3a4b2", - "0x00000000000000000000000000000074440dd163d6f8936841d72e97d3da949e", - "0x00000000000000000000000000000000002064d95e191a24d0160d1bdd163ad7", - "0x000000000000000000000000000000710851add6ed7f9b380eeff3ce4bb2165b", - "0x00000000000000000000000000000000002e5274baa53bb202591c60c1139881", - "0x000000000000000000000000000000a2ac73d9e80bfda31bb7b22bafa90f3f33", - "0x00000000000000000000000000000000001469ed28b51e3530a30f073a83b2de", - "0x000000000000000000000000000000b035925b77e8a6ed128a14643845d512b6", - "0x00000000000000000000000000000000001ba741b4ad42e878a6981c095d6ff0", - "0x000000000000000000000000000000a799682f8e066039e7f6c312ffde6debd0", - "0x000000000000000000000000000000000006102eb853119dd2592f38dee1ba5f", - "0x00000000000000000000000000000006f5b58f3a7e65b8a51f85bd1beef8e7cb", - "0x00000000000000000000000000000000002dd3e06799a492db1e8435aa9e3bf9", - "0x000000000000000000000000000000648eaf43be2b285ac68e158b14bdd2e193", - "0x0000000000000000000000000000000000183b1732e69909e408596fa68ea9a3", - "0x000000000000000000000000000000e910297c58c7818b463dd647003ef63a1a", - "0x000000000000000000000000000000000009eb6a384c1b0ec95a5928ea666956", - "0x000000000000000000000000000000d8e333baf0e5b578e2a5e652a4db8e4ab6", - "0x00000000000000000000000000000000001f98db60a2c7d893d212a467a522ca", - "0x000000000000000000000000000000c12c5be0bec28d21e8561d7978290db3a1", - "0x00000000000000000000000000000000001008eee01c7461f53867cc53a23327", - "0x000000000000000000000000000000787a22f670a95a82858e332f3f3f88ce1b", - "0x000000000000000000000000000000000024252b8eef09fa202e8a9ef7556848", - "0x000000000000000000000000000000de633c85087662acf32a99fbb92dd945a7", - "0x00000000000000000000000000000000000199c660a5b341f8d70b202ad27fc4", - "0x00000000000000000000000000000023b284a9b3527cd2ebff62b245a04aab25", - "0x000000000000000000000000000000000020ba0a85019e1252699312cbd5ec6a", - "0x0000000000000000000000000000004ddefde0cc163fa12893fed34ff5bebaf0", - "0x00000000000000000000000000000000002ec97ed4580b099d49c5d8d188304c", - "0x000000000000000000000000000000744c4d612c80fc91a269aaaaa975c84c8e", - "0x0000000000000000000000000000000000155100b34e0082bc5aed819a81bb36", - "0x000000000000000000000000000000be543d4ed87880fcf82650504901af5ff2", - "0x00000000000000000000000000000000002871b1a0cd721c96cbce8122c9a706", - "0x0000000000000000000000000000001b88a231c3f13dd782f8d4f0ec24d47ded", - "0x00000000000000000000000000000000000c9f17814cb17e7789c045b134021c", - "0x000000000000000000000000000000c29d26e9839942d72920141febdab07e4c", - "0x00000000000000000000000000000000002bdb265f0c70536ec02f7c9be4ce19", - "0x00000000000000000000000000000009993a339e8cb8c648d07c34ddcb4ef445", - "0x000000000000000000000000000000000020c327807a4f7b23d9cc1c865ef993", - "0x0000000000000000000000000000005d10bc4fd810c781d7b239a47a08636168", - "0x000000000000000000000000000000000027830cbf9d6e0b6faa609ddbd5817f", - "0x00000000000000000000000000000044d0fd2add2f1c6ae587bee7d24f060572", - "0x00000000000000000000000000000000000e13631a3d9cbfac8f5f7492fcfd4f", - "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000000000000100000000000000000000000000", - "0x00000000000000000000000000000088ecae20cb6dc8874f7723ac21f5c5984c", - "0x000000000000000000000000000000000000021835527ffc970b894780b151db", - "0x0000000000000000000000000000001528c5f49f061e395055ff5907cb66ea02", - "0x00000000000000000000000000000000000232be4e65cdae06fd90eedd6a3d32", - "0x0000000000000000000000000000000bb5e4b7a2fbc6a0e73e85d7b28b864104", - "0x000000000000000000000000000000000009f37885d12ed68ad648b151a55a27", - "0x000000000000000000000000000000aa7d1d0a09d7178ec93bad7858f96e64f0", - "0x00000000000000000000000000000000000d962f9b6e0b4e2c01968de5c32482", - "0x0000000000000000000000000000000953611bed5dfc4e56b7d48e08b63fcb05", - "0x00000000000000000000000000000000002360320006cce5cdac313319f54077", - "0x000000000000000000000000000000a86a78f4b3bc61f19d6e7069359bbf47e7", - "0x000000000000000000000000000000000009892d7c18a93c3dae58809faaeec6" + "0x000000000000000000000000000000ae20cb6dc8874f7723ac21f5c5984c3297", + "0x00000000000000000000000000000000001835527ffc970b894780b151db88ec", + "0x000000000000000000000000000000475f306e9003dd921fe51ea3e3e749fbe9", + "0x00000000000000000000000000000000000cc146ff4e30b5e13493ebbe8a72c0", + "0x0000000000000000000000000000006bcc7a05ff95a96b289424c5f733670d96", + "0x000000000000000000000000000000000000c43726f75b6fda0de22ce0e0dfab", + "0x0000000000000000000000000000001d0a09d7178ec93bad7858f96e64f0b48d", + "0x00000000000000000000000000000000002f9b6e0b4e2c01968de5c32482aa7d", + "0x000000000000000000000000000000e55ba19751adfe6c36324d3fb6c2da0989", + "0x00000000000000000000000000000000001d58aa61c64ad522043d79c4802219", + "0x00000000000000000000000000000078f4b3bc61f19d6e7069359bbf47e7f907", + "0x00000000000000000000000000000000002d7c18a93c3dae58809faaeec6a86a" ] -hash = "0x255c972c41db6d8fed290bbd4d4e82ff5c1a771ab780f1482c5ef1f74243b82a" +hash = "0x2802ec2b714705724c9cd75defadfcea1bfdbd3cc9f8fe351aac6c49cde86cc6" [private_call.verification_key_hints] -contract_class_artifact_hash = "0x12fb19bcf20aaa4534f5c9efa0fa5f9213989986f6c07eb46914afca0f3a2880" +contract_class_artifact_hash = "0x1758d5cf4772c1c7f9fcc6bfa04674c9ea52f973cbaeeb6574dfd0fe4317a046" contract_class_public_bytecode_commitment = "0x19b2e250d3238792f10f574756e12c6f46105e0c39de72ded6a0f7265b429708" updated_class_id_shared_mutable_values = [ "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -195,59 +195,59 @@ updated_class_id_shared_mutable_values = [ [private_call.verification_key_hints.function_leaf_membership_witness] leaf_index = "0" sibling_path = [ - "0x0e427c78becb6806244afdedc860263ade5d6f26af01f223cec3cf4309376a19", - "0x2ff91d7f463d52290d420392d38ab5eb951acac3214249e58dfda7fae1659362", + "0x19c87d1d27de12ffe767c24b7ed99f706d75aa13651b973ec673225ba7b3965a", + "0x00309a6c24724efc3cb259f45cf7999f35381860978490460c9a5ca7957d49f1", "0x0e1ce4f11f4d51a7d3136abbd625315fff3876d322e46ad8401da96f8e43a614", "0x1a0ca5eecb1430479902264f04e557160a4666fb42bb8b283c6397e3d17ac937", "0x2a6595890719fef7967c209488728aa5342438ba52058a3c770202f55acf6854" ] [private_call.verification_key_hints.public_keys.npk_m.inner] -x = "0x09b74809a76ba59fd642676761a29efb9b8bca4e50a5b905ab3f348b01534466" -y = "0x23f06fa5928d91c661636def8fade2f5575f5b2522d6a9104ed39a6ec96a1725" +x = "0x166a909a118950e27f7d77bebf2100a8c6ede3c3d980734edaa50a370c0d556a" +y = "0x2b8b3cb702ecdd4c87853e7fef89c026d9134409612428ea7eb5d8b50a190830" is_infinite = false [private_call.verification_key_hints.public_keys.ivpk_m.inner] -x = "0x11f142c68016db6ad53b6baada771944fe6bca0edc53266063a2ad6146c24848" -y = "0x0eafb914d00f0767a43129e07c36bd1126890dc18f7af1ebe4d03427cbb98511" +x = "0x2216016da338d06d819d13673e387128396ea20a0d7bad4318ca43cbdf746088" +y = "0x00d53b727ceaf7cf2102bb654812c3e2021fe0cd9e759a69ad4d17cf08fc47ea" is_infinite = false [private_call.verification_key_hints.public_keys.ovpk_m.inner] -x = "0x00019b22eb68812c682ccacd62f77f34d4a1508163fb06fe130fe7896cd40713" -y = "0x156e48da13e55038195026121075d46c29fca0d64c982f6e1f86616d593964f4" +x = "0x1e2d624e72153941376418e75aeba9f80f8af63c080f0fb67b5afbec9116247a" +y = "0x121404fa708bde1769b432e7c17ff00774431091345ae52ad237c5cab70a6083" is_infinite = false [private_call.verification_key_hints.public_keys.tpk_m.inner] -x = "0x03fe98c0c6321e5d183cee2d42af6890b3e2b0532f6a2b99775ba98df7585a97" -y = "0x20be6f47c2e11cc3ce8142343c2fc5bf7d369df9161979bf37f156305e1828f3" +x = "0x19b6ed050f5c7de615a3316276d2962f048c288f033325f8a448dbdcfc6e370d" +y = "0x26f89fa81c4ef6ac92c9a4e8c49f4d75b9c5d34bb5c5b8fa2c059adf1f37d2ec" is_infinite = false [private_call.verification_key_hints.salted_initialization_hash] - inner = "0x02a6c0581d9c00b9f0edbb61adab24991d34b488fe71004e355fc73ad2848938" + inner = "0x2298b4f484535ad6ed96c82ee334bdfe0777f802a00b4ad0a431af277f01f3bf" [private_call.verification_key_hints.protocol_contract_membership_witness] - leaf_index = "0" + leaf_index = "3" sibling_path = [ - "0x1492d598f76e2ad7f55dea407d079e82a307eb07cf5dad79b92419861edc1fae", - "0x226ed6071e3507bba38d27647d706d72bb0c0a99d7d598411a28de3bc35c85ed", - "0x20f06640764c17f6e39bd7c8cf643ef7ee75b31eb9519b61bd804ab464389525" + "0x02ca7b29cc4ad8cac6ab8f8e15755367f09df6aae605eb78d515d3c9854eb506", + "0x07416677001aa3c5a17d8fc7fb01c903a94519c347d5a19e0df984f26d52c282", + "0x10d10d96dc8e1092a32f13d5f9721a770b224096ac4c85587538131ba65cf3b1" ] [private_call.verification_key_hints.protocol_contract_leaf] - address = "0x0000000000000000000000000000000000000000000000000000000000000000" - next_address = "0x0e6c7e8db47140da3f87ca48ae448e4cf400a29747ddabe374b9cf652035860d" + address = "0x21b1e47351031fbfc98331a4bdf6a7bb88f4f46e0302476b4bca684f8228ae61" + next_address = "0x2cf7fc7ccdf59722c59c05ff6f5aa94130e325ac06867ed3f9a4d73fc5d998d7" [private_call.verification_key_hints.updated_class_id_witness] - leaf_index = "141" + leaf_index = "117" sibling_path = [ - "0x15f87a841d495b6028553c2942c4f65223cb797251f2400c2858e8821342ed7e", - "0x0b63a53787021a4a962a452c2921b3663aff1ffd8d5510540f8e659e782956f1", - "0x104167dcb01ce6fe4c03099da4f58ba435f9bd3702e8c58f717e44c135342dee", - "0x0ac4fcae82466e6db2dedf1d29f231c0a8aa06e1c83ac7e488513a2e596a82fa", - "0x2373ea368857ec7af97e7b470d705848e2bf93ed7bef142a490f2119bcf82d8e", - "0x120157cfaaa49ce3da30f8b47879114977c24b266d58b0ac18b325d878aafddf", - "0x01c28fe1059ae0237b72334700697bdf465e03df03986fe05200cadeda66bd76", - "0x0b5d252a103b343b7e12284df4f07fbe9a6c2f43133702ce2e704fc149b153af", + "0x105a225940ba2faadd5e3aa7952634239511e3ae958d141e98b84ea226fb6c48", + "0x11e4e0f3728dd4c61790345a1112462fc40b1d1568ff60755023106b8bb6d913", + "0x29208ecc66c5a3f559855bd44866e51a9e1b053fe1b60786941ab50664c75667", + "0x27cd3aef5c95635063babffad9f264bc89a06a1acb3af8066efd51befe6a9b83", + "0x179d7b5df7a65a4bdda408605c069b3ea175a5f4e2b0fccc9f2ebcb5d12c7c28", + "0x19e2b3449d24e57ea4d6948048220d0756f93b6aaca968960b173df69903160a", + "0x1a35cf71ad31b7058db0cec41776442412ccd9f75276205dcd8fd0ffc4bbfaab", + "0x1f6530bcb070a2a82b07f777efd4131537da992f8961b36c668e8d9e8617d7cf", "0x067243231eddf4222f3911defbba7705aff06ed45960b27f6f91319196ef97e1", "0x1849b85f3c693693e732dfc4577217acc18295193bede09ce8b97ad910310972", "0x2a775ea761d20435b31fa2c33ff07663e24542ffb9e7b293dfce3042eb104686", @@ -283,13 +283,13 @@ is_infinite = false ] [private_call.verification_key_hints.updated_class_id_leaf] - slot = "0x20cde8173ea2b20919678f07abae5da29aa26ed08edad53831456c0509b11576" - value = "0x0000000000000000000000000000000000000000000000000000000000000001" - next_slot = "0x2132891de6e6992867143b20ce6cf1c8cb005c85b4967340c3e39b74cf9c6bb7" - next_index = "0x000000000000000000000000000000000000000000000000000000000000008b" + slot = "0x02fbdb303c826b62fb830b2523ea1e0a221e1e9dfb00d285b5618bf6bcf03ec5" + value = "0x00000000000000000000000000000000000000000000021e19e0c9bab2400000" + next_slot = "0x054016215fb57930dead9a73f1073bee7b81ebc6e3d8a3f0a386f3b82f7cedf5" + next_index = "0x0000000000000000000000000000000000000000000000000000000000000076" [app_public_inputs] -args_hash = "0x0a4078b6c90b06103550b0d4439637b26c358b3647dd2b90093c418dd30873ac" +args_hash = "0x28134e7c5b93e5fdcca3cd033227c7d884654b6260e35fe79a62c2875cc1f012" returns_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" start_side_effect_counter = "0x0000000000000000000000000000000000000000000000000000000000000001" end_side_effect_counter = "0x0000000000000000000000000000000000000000000000000000000000000004" @@ -307,13 +307,13 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" inner = "0x30644e72e131a029b85045b68181585d2833e84879b9709143e1f593f0000000" [app_public_inputs.call_context.contract_address] - inner = "0x0d276f24617f511e59fd25490f3cfbf48d2da5316bbe844093e4e2a81cd506bb" + inner = "0x2767f9570de8773ff9c0ee7316694a7959e85930a452a3b991946494c036e37f" [app_public_inputs.call_context.function_selector] inner = "0x0000000000000000000000000000000000000000000000000000000027e740b2" [[app_public_inputs.note_hash_read_requests]] - value = "0x192d37d841b06f83904e06fbccfa99cd5c3d51a58b574901f206c3c2b35fc07c" + value = "0x090e3c92b33874aa2c00c8d3e46ea329d557122be0cf8a335e823d7c48200533" counter = "0x0000000000000000000000000000000000000000000000000000000000000002" [[app_public_inputs.note_hash_read_requests]] @@ -855,13 +855,13 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" [app_public_inputs.public_call_requests.inner] is_static_call = true - calldata_hash = "0x11bfffe6b653e0ad64946bfb3c65e037eb9f617b7fc0c1c3c70655d43e61348e" + calldata_hash = "0x2defd00bf269b7391e46320a4fc005b50585a46cdd8ba1c2b0858fea947d7039" [app_public_inputs.public_call_requests.inner.msg_sender] - inner = "0x0d276f24617f511e59fd25490f3cfbf48d2da5316bbe844093e4e2a81cd506bb" + inner = "0x2767f9570de8773ff9c0ee7316694a7959e85930a452a3b991946494c036e37f" [app_public_inputs.public_call_requests.inner.contract_address] - inner = "0x1b82bc8ac38ebcab85669f740dcefe4888097634e91446aed50bcb3a795e6f58" + inner = "0x1a3a98220a436a1096c5bcfb137a95786dd057109e5e8f50b778fdbfdfd7ba88" [[app_public_inputs.public_call_requests]] counter = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -1504,16 +1504,16 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" length = "0x0000000000000000000000000000000000000000000000000000000000000000" [app_public_inputs.historical_header] - total_fees = "0x0000000000000000000000000000000000000000000000000000000152ca47ae" - total_mana_used = "0x00000000000000000000000000000000000000000000000000000000000190d9" + total_fees = "0x00000000000000000000000000000000000000000000000000000001419ea740" + total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000017cbd" [app_public_inputs.historical_header.last_archive] - root = "0x1b35d3693fceacad9c55613f198ade07687a8185638c482ab0163f78b142a5e5" + root = "0x0e8ef7f12683462ce5482c5c79c7a7bded4a0b57bd8233615b344388d0db6f39" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000006" [app_public_inputs.historical_header.content_commitment] num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" - blobs_hash = "0x0096c1e55b51be1e8bc9bb298b9ec7c371dd2c29bbbe22104ac8c77bbc898a47" + blobs_hash = "0x008c7cd47a688e5b2021e9f2b9dbcf7365dec5a004311ad5c5138303cf6d76f1" in_hash = "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -1522,37 +1522,37 @@ root = "0x2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000060" [app_public_inputs.historical_header.state.partial.note_hash_tree] -root = "0x1ded02f3086425317a03c41c7eef64de59bc94c1897f1913aa27ab4bcb0ebffa" +root = "0x1dee6637bc05b1fd02c2d8a42eab028959018f5b086d0637007ba626ab826e84" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000180" [app_public_inputs.historical_header.state.partial.nullifier_tree] -root = "0x098562545b0330d0811209e5288c5c475f226de51ac351a716cc1a6408c2b211" +root = "0x1a443dd12842b2c2f4fadbfa63351ff72577b12b0059bdc634ede1a83d51e5fa" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" [app_public_inputs.historical_header.state.partial.public_data_tree] -root = "0x13d83910c6484f046a8424f78fe7fa8d0366fe56a7ba2a5764cc8972f238cde9" +root = "0x189e9a705c609addf8f5c6dcac63e9a18ee30a94330b79656a1ee99b0c57fede" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" [app_public_inputs.historical_header.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000006" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000008" - timestamp = "0x00000000000000000000000000000000000000000000000000000000680687a3" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680783c5" [app_public_inputs.historical_header.global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [app_public_inputs.historical_header.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [app_public_inputs.historical_header.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000d85e" + fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000d840" [app_public_inputs.tx_context] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" [app_public_inputs.tx_context.gas_settings.gas_limits] da_gas = "0x000000000000000000000000000000000000000000000000000000003b9aca00" @@ -1564,7 +1564,7 @@ l2_gas = "0x00000000000000000000000000000000000000000000000000000000005b8d80" [app_public_inputs.tx_context.gas_settings.max_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" -fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000002fd0" +fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000002fc1" [app_public_inputs.tx_context.gas_settings.max_priority_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" diff --git a/noir-projects/noir-protocol-circuits/crates/private-kernel-inner/Prover.toml b/noir-projects/noir-protocol-circuits/crates/private-kernel-inner/Prover.toml index b433bf2d2df7..d095320ea9eb 100644 --- a/noir-projects/noir-protocol-circuits/crates/private-kernel-inner/Prover.toml +++ b/noir-projects/noir-protocol-circuits/crates/private-kernel-inner/Prover.toml @@ -3,8 +3,8 @@ vk_index = "0x0000000000000000000000000000000000000000000000000000000000000000" vk_path = [ "0x2f7990492fb38523aa684577903d0bd007b968530c8e40387fcd1574e02a63cc", "0x162832a9703d2788b5221ff51bcb8bfe5b55cbe2bbb917fc13faeea857e77096", - "0x14659e3d45349d5233a08a6a0fa381261345c4a7ce46c6c4b59dc1f4a21cae8c", - "0x1392b27d933b41fb9e36e29ac5d45040893997a526088cfa50d707fc2d5fa986", + "0x0c3072a0660f951b5a4fdddf5c2d9132547f01bef6df9b662f3620c19f50997e", + "0x1a8c157a307350dc57f06625e220057348008c02bc50c04154826acb1153bb77", "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] @@ -160,23 +160,23 @@ vk_path = [ [previous_kernel_public_inputs] min_revertible_side_effect_counter = "0x0000000000000000000000000000000000000000000000000000000000000003" is_private_only = true -claimed_first_nullifier = "0x21ffbca5e229ce1c97c32c088eae7789a726999430cc02a5410f5fd505b82f67" +claimed_first_nullifier = "0x0a16a75643092d5aef61c9eb71ff79714f17615f924f1ba3fa5a547816549f2c" [previous_kernel_public_inputs.constants] - vk_tree_root = "0x0f41ca517c1c4dabab14d88d50dcbaa9638b23bfdbc28fa3a94d7260ef0c7427" - protocol_contract_tree_root = "0x0af0a7a13726bd13afe2a3fbfa52690c43ca774227d6c2bfe86fce93c387953a" + vk_tree_root = "0x18c54e1814ecadeffcd11feed9049f02d31148f4457ddcf84e4d580bbc5ccb0f" + protocol_contract_tree_root = "0x2098b90e2b21f02ad7a1fc6afcf944ef3685236caeb015b51a502471c492cdfb" [previous_kernel_public_inputs.constants.historical_header] - total_fees = "0x0000000000000000000000000000000000000000000000000000000152ca47ae" - total_mana_used = "0x00000000000000000000000000000000000000000000000000000000000190d9" + total_fees = "0x00000000000000000000000000000000000000000000000000000001419ea740" + total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000017cbd" [previous_kernel_public_inputs.constants.historical_header.last_archive] - root = "0x1b35d3693fceacad9c55613f198ade07687a8185638c482ab0163f78b142a5e5" + root = "0x0e8ef7f12683462ce5482c5c79c7a7bded4a0b57bd8233615b344388d0db6f39" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000006" [previous_kernel_public_inputs.constants.historical_header.content_commitment] num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" - blobs_hash = "0x0096c1e55b51be1e8bc9bb298b9ec7c371dd2c29bbbe22104ac8c77bbc898a47" + blobs_hash = "0x008c7cd47a688e5b2021e9f2b9dbcf7365dec5a004311ad5c5138303cf6d76f1" in_hash = "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -185,37 +185,37 @@ root = "0x2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000060" [previous_kernel_public_inputs.constants.historical_header.state.partial.note_hash_tree] -root = "0x1ded02f3086425317a03c41c7eef64de59bc94c1897f1913aa27ab4bcb0ebffa" +root = "0x1dee6637bc05b1fd02c2d8a42eab028959018f5b086d0637007ba626ab826e84" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000180" [previous_kernel_public_inputs.constants.historical_header.state.partial.nullifier_tree] -root = "0x098562545b0330d0811209e5288c5c475f226de51ac351a716cc1a6408c2b211" +root = "0x1a443dd12842b2c2f4fadbfa63351ff72577b12b0059bdc634ede1a83d51e5fa" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" [previous_kernel_public_inputs.constants.historical_header.state.partial.public_data_tree] -root = "0x13d83910c6484f046a8424f78fe7fa8d0366fe56a7ba2a5764cc8972f238cde9" +root = "0x189e9a705c609addf8f5c6dcac63e9a18ee30a94330b79656a1ee99b0c57fede" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" [previous_kernel_public_inputs.constants.historical_header.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000006" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000008" - timestamp = "0x00000000000000000000000000000000000000000000000000000000680687a3" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680783c5" [previous_kernel_public_inputs.constants.historical_header.global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [previous_kernel_public_inputs.constants.historical_header.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [previous_kernel_public_inputs.constants.historical_header.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000d85e" + fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000d840" [previous_kernel_public_inputs.constants.tx_context] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" [previous_kernel_public_inputs.constants.tx_context.gas_settings.gas_limits] da_gas = "0x000000000000000000000000000000000000000000000000000000003b9aca00" @@ -227,7 +227,7 @@ l2_gas = "0x00000000000000000000000000000000000000000000000000000000005b8d80" [previous_kernel_public_inputs.constants.tx_context.gas_settings.max_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" -fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000002fd0" +fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000002fc1" [previous_kernel_public_inputs.constants.tx_context.gas_settings.max_priority_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -239,11 +239,11 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000e16" [[previous_kernel_public_inputs.validation_requests.note_hash_read_requests]] [previous_kernel_public_inputs.validation_requests.note_hash_read_requests.read_request] -value = "0x192d37d841b06f83904e06fbccfa99cd5c3d51a58b574901f206c3c2b35fc07c" +value = "0x090e3c92b33874aa2c00c8d3e46ea329d557122be0cf8a335e823d7c48200533" counter = "0x0000000000000000000000000000000000000000000000000000000000000002" [previous_kernel_public_inputs.validation_requests.note_hash_read_requests.contract_address] -inner = "0x0d276f24617f511e59fd25490f3cfbf48d2da5316bbe844093e4e2a81cd506bb" +inner = "0x2767f9570de8773ff9c0ee7316694a7959e85930a452a3b991946494c036e37f" [[previous_kernel_public_inputs.validation_requests.note_hash_read_requests]] [previous_kernel_public_inputs.validation_requests.note_hash_read_requests.read_request] @@ -2739,7 +2739,7 @@ inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [[previous_kernel_public_inputs.end.nullifiers]] [previous_kernel_public_inputs.end.nullifiers.nullifier] -value = "0x21ffbca5e229ce1c97c32c088eae7789a726999430cc02a5410f5fd505b82f67" +value = "0x0a16a75643092d5aef61c9eb71ff79714f17615f924f1ba3fa5a547816549f2c" counter = "0x0000000000000000000000000000000000000000000000000000000000000000" note_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -4787,7 +4787,7 @@ counter = "0x0000000000000000000000000000000000000000000000000000000000000000" inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [[previous_kernel_public_inputs.end.private_call_stack]] -args_hash = "0x0e7f7ee001f82645b6389e8623f1515b40fe11b4e4ba69b3bf17f409277a2f06" +args_hash = "0x25999c2bb2c33e60bc726b1e6848ecba60e6b233cb65af291299a7d77d0f5078" returns_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" start_side_effect_counter = "0x0000000000000000000000000000000000000000000000000000000000000003" end_side_effect_counter = "0x000000000000000000000000000000000000000000000000000000000000000c" @@ -4796,10 +4796,10 @@ end_side_effect_counter = "0x000000000000000000000000000000000000000000000000000 is_static_call = false [previous_kernel_public_inputs.end.private_call_stack.call_context.msg_sender] - inner = "0x0d276f24617f511e59fd25490f3cfbf48d2da5316bbe844093e4e2a81cd506bb" + inner = "0x2767f9570de8773ff9c0ee7316694a7959e85930a452a3b991946494c036e37f" [previous_kernel_public_inputs.end.private_call_stack.call_context.contract_address] - inner = "0x1b82bc8ac38ebcab85669f740dcefe4888097634e91446aed50bcb3a795e6f58" + inner = "0x1a3a98220a436a1096c5bcfb137a95786dd057109e5e8f50b778fdbfdfd7ba88" [previous_kernel_public_inputs.end.private_call_stack.call_context.function_selector] inner = "0x00000000000000000000000000000000000000000000000000000000754fb767" @@ -4941,7 +4941,7 @@ end_side_effect_counter = "0x000000000000000000000000000000000000000000000000000 inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [previous_kernel_public_inputs.fee_payer] - inner = "0x0d276f24617f511e59fd25490f3cfbf48d2da5316bbe844093e4e2a81cd506bb" + inner = "0x2767f9570de8773ff9c0ee7316694a7959e85930a452a3b991946494c036e37f" [private_call.vk] key = [ @@ -4965,135 +4965,135 @@ key = [ "0x000000000000000000000000000000000000000000000000000000000000000d", "0x000000000000000000000000000000000000000000000000000000000000000e", "0x000000000000000000000000000000000000000000000000000000000000000f", + "0x00000000000000000000000000000000000000000000000000000000ffffffff", + "0x00000000000000000000000000000000000000000000000000000000ffffffff", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000000000e84e04a4895d6734cc6f4bf7fb72e2be38", + "0x00000000000000000000000000000000000ef5ea984c341e17abdee519d709a1", + "0x00000000000000000000000000000000ddd93fd23c97590794051549e7127df1", + "0x000000000000000000000000000000000024859dabedd7d2b7f07e87216db42e", + "0x000000000000000000000000000000c007f66a23ffa3984cc0b61ee204bc5397", + "0x000000000000000000000000000000000014a890d0798449141dc08f061632d2", + "0x000000000000000000000000000000171acf99bfc0b6dc9810cb61fe2a96101d", + "0x00000000000000000000000000000000001b058ec2cb803efe5e84c92e3e88ba", + "0x00000000000000000000000000000091328eaf61edd23e129f79de2f821992df", + "0x00000000000000000000000000000000002311c2e7ed144e397f4c9239461f28", + "0x000000000000000000000000000000b7c8f73f5c867eda2a0daf06c561ab433a", + "0x00000000000000000000000000000000000adb3a30feab11ebae7d766c5e0231", + "0x00000000000000000000000000000000fff81fc3e1554cdba49a76b4656511d6", + "0x00000000000000000000000000000000001a653af2bb29d8d2da66b5bd8d48e3", + "0x0000000000000000000000000000004a05d57aa96ecd6295c6276a585ac84e15", + "0x0000000000000000000000000000000000067fe01b09e3816b3f5995b5eeebee", + "0x000000000000000000000000000000bc14b3dbe1fc0c1933a414180c9cfcb3f7", + "0x000000000000000000000000000000000024dcc7e8601fbe922cdc776b053304", + "0x000000000000000000000000000000cf956ef400aa206c010a719484ba6e0ecb", + "0x000000000000000000000000000000000015678ee2f3297f3d2e120f0c40c5db", + "0x0000000000000000000000000000008e2bf611403442b12fcb1551482430925e", + "0x0000000000000000000000000000000000169a9797cdb60babc5080b7a42b6f9", + "0x00000000000000000000000000000074c9440b30cdf1bef177932644f552b4fd", + "0x00000000000000000000000000000000000fa8ba206b89d12f4a114bed91289a", + "0x00000000000000000000000000000066aa9c8d7ab7581b9810eda73e53e17ddf", + "0x000000000000000000000000000000000022e4a62d589f5dc58e003e17d2c29e", + "0x00000000000000000000000000000052acb0956df6fa77996db824b0a1fe6270", + "0x00000000000000000000000000000000000e3f83d3c9ffa6247c0ba515ce2e6f", + "0x00000000000000000000000000000047705ba5b1c5a09335f498b1b43908cebd", + "0x00000000000000000000000000000000001e95b795a170c9a349e3dd00667f3e", + "0x000000000000000000000000000000facdcbb0afc541179fc5e7f1052c58c528", + "0x0000000000000000000000000000000000100406f14435d2a1be90a62b7fd3de", + "0x0000000000000000000000000000006822abe77055e03a81a6d7743c99dfad17", + "0x0000000000000000000000000000000000167aa11add08b51cfb834f35999fa3", + "0x000000000000000000000000000000e451186d5e8a8d62b0c0f436448790c75e", + "0x000000000000000000000000000000000014d36412dc4d86351abee490b1c78c", + "0x0000000000000000000000000000009a89fee24909e326b230439ea4d23d3aef", + "0x000000000000000000000000000000000009bc7ee39017ed5bfa069cdad97ab5", + "0x000000000000000000000000000000ad75e80349765d4a684657e1e0c579951e", + "0x000000000000000000000000000000000015207076e1c84bb9b28a9768c68b04", + "0x000000000000000000000000000000fc4f419f42f5afa9111ba81714204eea89", + "0x00000000000000000000000000000000000c132eda7dbf2e81177daaec19cc3c", + "0x000000000000000000000000000000a0060081e7a1c4fa84de0f560dd1b04e4e", + "0x00000000000000000000000000000000001a3c3eccd140e96f57657da935b191", + "0x0000000000000000000000000000005102e1f427af0b049314ed982646192f5f", + "0x000000000000000000000000000000000027dcd44dee6994b6f1c17ce1d00bda", + "0x000000000000000000000000000000189387db10b7dfa0044535cb9fc5b415f0", + "0x0000000000000000000000000000000000286148ee7c8b27f4c80fcd43f0adb2", + "0x00000000000000000000000000000027950d7a4e7375e97a5d5671a3d5695498", + "0x00000000000000000000000000000000001e01518651f1f1254d06282cf48b3d", + "0x00000000000000000000000000000065508a80cf8711ee2ccc30c11f0df517a8", + "0x000000000000000000000000000000000020c5a227a56adbf5ed881c4e61a606", + "0x000000000000000000000000000000c76a98bb6b111796bb42b8c7b93fd374e5", + "0x000000000000000000000000000000000000a314edead27d1a9a6f55b8c4f644", + "0x0000000000000000000000000000001addd71f136aa85db94308a8b87d751069", + "0x00000000000000000000000000000000001747697dde9ef5b02b8e9b545f6b22", + "0x000000000000000000000000000000cf3baf6520b9e458ba4661744c25b99a7d", + "0x00000000000000000000000000000000000d937e6a83ab01bacb1f22c7fdad1b", + "0x0000000000000000000000000000004a8db732f82d31e0ac133703705a002ad6", + "0x00000000000000000000000000000000000025632fa1def57298c31f94063c54", + "0x000000000000000000000000000000b861b611cf260cad5141e1eaecd94d32e9", + "0x00000000000000000000000000000000001b2650e43c9462015e44c03053b382", + "0x00000000000000000000000000000075db999331b38cda6b5bb8931155a93892", + "0x000000000000000000000000000000000007bf084c3b8e40f5dc0390314b39cc", + "0x0000000000000000000000000000007facdf1fb4b22eaafb8e811e273decffbd", + "0x0000000000000000000000000000000000230f31f04242fd7247fc06e0faa2f5", + "0x0000000000000000000000000000009f95bcb60b61918185e4cd13950968aaaa", + "0x00000000000000000000000000000000000d10f5ce3a1eab594b5ffe11ce12a5", + "0x0000000000000000000000000000003f86f33351596d1cde900cf6570e32b220", + "0x00000000000000000000000000000000002d701c459ee91610ac82baca106234", + "0x0000000000000000000000000000005217dc945d8c2dd383a29e6f25227d41e7", + "0x00000000000000000000000000000000000ff905b7df03d5762f3ef401a8ecdc", + "0x000000000000000000000000000000700a1f1336d85147736ba8765a5e08a095", + "0x0000000000000000000000000000000000027f01769f8c53c1e70bc7536f35a0", + "0x00000000000000000000000000000076eb7eda4ed19d06e249f8e8160fbffca2", + "0x00000000000000000000000000000000000ec33988e78455e56152708ee06fa7", + "0x00000000000000000000000000000080020093fba3b15aab8dc88b22288138ef", + "0x00000000000000000000000000000000002752a89e8d29a95bd13024265c4680", + "0x0000000000000000000000000000006eb113492c657e8f5ef81eb99b4f2b4d82", + "0x00000000000000000000000000000000000bbaab80129b6b13142f8219421523", + "0x000000000000000000000000000000aecfb92ac8011c3829f84cccbc5957a013", + "0x000000000000000000000000000000000004bdfddbe57da32b2ddce6321a9f0e", + "0x000000000000000000000000000000b416299608d89fe3fa80dc20c20a56e8db", + "0x00000000000000000000000000000000002fee6f508b225d3c6720ce299d733c", + "0x000000000000000000000000000000be901f2084f92cbecb928a70fdcc43f1a5", + "0x00000000000000000000000000000000001342a152dade9f4ac37c7c7837cd2e", + "0x00000000000000000000000000000092baf06d41e29048c1d25ebd615d528b44", + "0x00000000000000000000000000000000000a92a23102a06f4853ed59e4c25017", + "0x000000000000000000000000000000224e7b8bb076c01d9d15e695db49628479", + "0x00000000000000000000000000000000000b5a0d3ec2e5f2b3043ad5927f75ee", + "0x000000000000000000000000000000a264984f15cb7eab2c4f69a5d808a56f4d", + "0x00000000000000000000000000000000002f493e4aa25ea71f90ff957e2aaa9e", + "0x0000000000000000000000000000002b7f0feb83648e11b1fe0d8bc6b60c6f21", + "0x00000000000000000000000000000000000c0dfc3216a7e44e425ceff18619f4", + "0x000000000000000000000000000000be3fcde4c4e08161be79794822aefbb3f6", + "0x00000000000000000000000000000000000b7e070c35ade44881ab0cabea6941", + "0x000000000000000000000000000000117df61a4bf18a7446b54d8ecdd0e52721", + "0x0000000000000000000000000000000000174c4daacc6febe82d8831a90444ef", + "0x000000000000000000000000000000cf14c4f206eb07a33197ff5cf6bbac0baf", + "0x00000000000000000000000000000000000d3d0f705c9c3b426e2f7864790ae8", + "0x00000000000000000000000000000099583d0a90e6d553e4bd6449b58ef507a1", + "0x000000000000000000000000000000000007039be70b557b6f0d4d59fb1280a1", + "0x0000000000000000000000000000006cbf05efb3e2b65b04bde71a334d2feb33", + "0x00000000000000000000000000000000000a11854b0d30aea75dade8ae925fed", + "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x000000000000000000000000000000b1b16595e28b1a56ad8f7a8925cfc2b7cf", - "0x000000000000000000000000000000000000002f40bf0c3faf9967cfa2793ade", - "0x000000000000000000000000000000613c4d52d217e0c1fca0b92b9edaf9c8fe", - "0x00000000000000000000000000000000002bade70a89444a647ab7d3fc662eb3", - "0x000000000000000000000000000000b4db7cf2148799af660e00bc7eb6bc12ac", - "0x00000000000000000000000000000000000ed1b8a9f55cab536d8736a39926d0", - "0x0000000000000000000000000000001aa471c594358d571caaf8ceed5fab8a7a", - "0x000000000000000000000000000000000006f19bb59a2a11383a7a3eec948c67", - "0x00000000000000000000000000000002e31d2c61d753f453d50cb2b845e6c3c3", - "0x0000000000000000000000000000000000232a2853b6de5223519083b6983e31", - "0x000000000000000000000000000000571a275d782519d26e72f6507beb9f5f74", - "0x0000000000000000000000000000000000269acc3ffdbb0e18b46365ecad61b9", - "0x00000000000000000000000000000038cfa0a162244ed5afdb1de34d444de79d", - "0x00000000000000000000000000000000000a4827d748a88b4adf56e0aee1eba3", - "0x000000000000000000000000000000c2152a7ffc2ca75bb7a20b31311481307f", - "0x00000000000000000000000000000000001178c92c5cbdf32f5e91b9cb2ecf40", - "0x0000000000000000000000000000009e444be43850abd58fdfe00e05862ba5f9", - "0x00000000000000000000000000000000001588225256e8704f37aac67d6a7bdf", - "0x000000000000000000000000000000a4db70bb59f2bc2a2734acc4c76a30bf00", - "0x00000000000000000000000000000000001661f1d337925b578f8b0639cf7026", - "0x000000000000000000000000000000801cb999267dab9d98b5e2cd0641d4d9ad", - "0x0000000000000000000000000000000000003c3fcdf6d8d904f6acdc4284177a", - "0x00000000000000000000000000000047cfe70f88df232b1ba7ed918a5e1cf8fd", - "0x0000000000000000000000000000000000164418968937469151557b0ca38a2f", - "0x0000000000000000000000000000006506e5400b2508eccadf7784d6cec1569a", - "0x00000000000000000000000000000000000556d471c4fbb875a5754849bc967a", - "0x00000000000000000000000000000073404fd78dc48a61dfff58558a73b6a770", - "0x00000000000000000000000000000000001d167159c17089ac3583f09ea2131d", - "0x000000000000000000000000000000c40f449b38d4ce30861af4dc6b00ba3e7a", - "0x000000000000000000000000000000000001a781aff532611d5902be76d9fdb5", - "0x0000000000000000000000000000005d80f523860ee89b0c271d958c8f11373c", - "0x00000000000000000000000000000000000d2bd638822ac38ef160a7b6a0261e", - "0x0000000000000000000000000000000f1780996e8adfcd17dcc27aef844af944", - "0x00000000000000000000000000000000000396db73ddedb37676d610b5b78adc", - "0x000000000000000000000000000000af55f0cd7cdd1894719cb166f040895d99", - "0x000000000000000000000000000000000014a3ce9e8e0033c49095357cadd5a7", - "0x00000000000000000000000000000092b8a3af689f7899ade0e34da3eeeb4c5b", - "0x00000000000000000000000000000000002af8b2787eea5aadf1d3de2eba306f", - "0x0000000000000000000000000000008f9fff520d31bc56c708ad41a30bc02059", - "0x000000000000000000000000000000000003a76f6fef66633c408ed6f718f595", - "0x000000000000000000000000000000cc3cfc4f419f42f5afa9111ba81714204e", - "0x00000000000000000000000000000000001ec00c132eda7dbf2e81177daaec19", - "0x0000000000000000000000000000003b339a5bbae02077900a02adb3f419dc94", - "0x000000000000000000000000000000000028f7e070ba06509a082e408b77a3d4", - "0x0000000000000000000000000000008f8c352d0ecd610d1e45c9447f93d14af1", - "0x00000000000000000000000000000000001de9bcbe7260e29b01a8dec44c8c5d", - "0x0000000000000000000000000000001d7038d5aacb38093e54a72b84aa2b4726", - "0x00000000000000000000000000000000000ab4282aff52d44ef44273606d128c", - "0x0000000000000000000000000000007276a3555940f913ce3518b911e82cdd94", - "0x0000000000000000000000000000000000251832a8adf17174c8347be2a3a8eb", - "0x000000000000000000000000000000486ee3e5f9185dbc84b20c4019e8a210ae", - "0x00000000000000000000000000000000002433d252c0f6054123a5a7d19acd09", - "0x000000000000000000000000000000f644c76a98bb6b111796bb42b8c7b93fd3", - "0x000000000000000000000000000000000017a800a314edead27d1a9a6f55b8c4", - "0x000000000000000000000000000000aff31808b44e2fd58de5782adaf7be82e7", - "0x0000000000000000000000000000000000141c7a61a71a9e4b850fa0219851ae", - "0x00000000000000000000000000000021266d3d89a29ae178dc9936dec8071e85", - "0x000000000000000000000000000000000010692f039183d13ad0fa234f7cb590", - "0x0000000000000000000000000000005c620e6cf59ab16bb22a28c74b8cc81d59", - "0x0000000000000000000000000000000000121e0622548494d183180121d3bb85", - "0x000000000000000000000000000000138a920f11e4b2af7c174e9532bc372b24", - "0x0000000000000000000000000000000000070b6326bb834141c96dc1eb82f590", - "0x0000000000000000000000000000005cdfda926bbe38640f3c39f42dac90b7c9", - "0x0000000000000000000000000000000000007dd2a843b24315b7ee5db112cd8c", - "0x000000000000000000000000000000b600eb4300a8b67befb83390f8ed8f0a3c", - "0x00000000000000000000000000000000002d8d7b6e017b3afa7d80f0f952079e", - "0x0000000000000000000000000000000cb10a0535b3c147d860e735c3508f26ea", - "0x000000000000000000000000000000000002bb166a41dd319d5874c92b8a6b44", - "0x00000000000000000000000000000042dc0ae495c2c63a7ffdc061fe28e8f32f", - "0x0000000000000000000000000000000000001a429c340e6d9a3badf59d62587a", - "0x000000000000000000000000000000f28b809bea110dbe01304f6e50b63e9a86", - "0x000000000000000000000000000000000009caf3cec6aa1382d666757c1b1694", - "0x000000000000000000000000000000a7cbf66423009289246578bb8ec1af4209", - "0x00000000000000000000000000000000000d21223baca21f01b23efd5f0255c2", - "0x0000000000000000000000000000004c29faa61322f620f5d786fb11617dee42", - "0x00000000000000000000000000000000002e03c2a1360940ec84656fc20a4a31", - "0x000000000000000000000000000000ea472dbfa8f2205d1d8d89078aa0e68d3b", - "0x00000000000000000000000000000000002b5b0de6345733b5d3eb150883af07", - "0x000000000000000000000000000000612043002c973814c5ae9b06aee6249148", - "0x000000000000000000000000000000000002be72866acb685cc3bd630e463126", - "0x0000000000000000000000000000002aff8bda5c5a53a3bec8360720b4beb045", - "0x00000000000000000000000000000000001204ef435f3345e18ca321f0e836da", - "0x00000000000000000000000000000032655965b03423ff40c50371fded01aa78", - "0x00000000000000000000000000000000001aeb40aa37131e4c490d12b65c79c0", - "0x00000000000000000000000000000076db67ab917ab7a8ac5dde213a75a93561", - "0x0000000000000000000000000000000000112b2f8c95080144b38bc8eb897824", - "0x000000000000000000000000000000642c58aba8f5ea6d952d5b7f26b902c58a", - "0x000000000000000000000000000000000025101b6e6f81a8f2efcf82ff267f1f", - "0x0000000000000000000000000000005d279e0ec7525b1718693b71a20c64518d", - "0x000000000000000000000000000000000029ff200169a9e268c9c23317510e76", - "0x000000000000000000000000000000ef6f9f8f757e32366432eb373bf4de0e17", - "0x000000000000000000000000000000000023b092637be7620b367f0592927b79", - "0x0000000000000000000000000000005ec528a9ed1a9fcf739970e5dfdaccbb7e", - "0x00000000000000000000000000000000000e846f2839ced65473adb6efeceed5", - "0x000000000000000000000000000000ae12bb6aab13e14b66e97d614b9728b46d", - "0x00000000000000000000000000000000000e586e9844a8f55a73a7f63e09a939", - "0x0000000000000000000000000000002c288d3e41e0f691e2bfe511090556d910", - "0x000000000000000000000000000000000022c92bf3aa15ebf2c2f75c64ad24fb", - "0x0000000000000000000000000000000ae8cf14c4f206eb07a33197ff5cf6bbac", - "0x000000000000000000000000000000000027210d3d0f705c9c3b426e2f786479", - "0x00000000000000000000000000000080a199583d0a90e6d553e4bd6449b58ef5", - "0x00000000000000000000000000000000000baf07039be70b557b6f0d4d59fb12", - "0x0000000000000000000000000000005fed6cbf05efb3e2b65b04bde71a334d2f", - "0x000000000000000000000000000000000007a10a11854b0d30aea75dade8ae92", - "0x00000000000000000000000000000089a1fa55ba5e38d5cb0f7dcfa49e0c0ae4", - "0x000000000000000000000000000000000029a1c6347b397f591ebee925f9fa9e", - "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000000000000100000000000000000000000000", - "0x00000000000000000000000000000065c1fa752cf8e2dec3862a2da8a7f05195", - "0x0000000000000000000000000000000000000212cbd05c424a1cae3085f9c10e", - "0x00000000000000000000000000000091f35728a508ac8ee79d85ec570254170d", - "0x000000000000000000000000000000000003c2b531ac5f0ebf28432dc105a8ad", - "0x000000000000000000000000000000dfab6bcc7a05ff95a96b289424c5f73367", - "0x00000000000000000000000000000000000d5300c43726f75b6fda0de22ce0e0", - "0x000000000000000000000000000000aa7d1d0a09d7178ec93bad7858f96e64f0", - "0x00000000000000000000000000000000000d962f9b6e0b4e2c01968de5c32482", - "0x0000000000000000000000000000000953611bed5dfc4e56b7d48e08b63fcb05", - "0x00000000000000000000000000000000002360320006cce5cdac313319f54077", - "0x000000000000000000000000000000a86a78f4b3bc61f19d6e7069359bbf47e7", - "0x000000000000000000000000000000000009892d7c18a93c3dae58809faaeec6" + "0x000000000000000000000000000000fa752cf8e2dec3862a2da8a7f051953427", + "0x000000000000000000000000000000000012cbd05c424a1cae3085f9c10e65c1", + "0x000000000000000000000000000000d89336711e5974d9a6786ddad114540d53", + "0x000000000000000000000000000000000003a48d90aee8e0937377872a05ef8a", + "0x0000000000000000000000000000006bcc7a05ff95a96b289424c5f733670d96", + "0x000000000000000000000000000000000000c43726f75b6fda0de22ce0e0dfab", + "0x0000000000000000000000000000001d0a09d7178ec93bad7858f96e64f0b48d", + "0x00000000000000000000000000000000002f9b6e0b4e2c01968de5c32482aa7d", + "0x000000000000000000000000000000e55ba19751adfe6c36324d3fb6c2da0989", + "0x00000000000000000000000000000000001d58aa61c64ad522043d79c4802219", + "0x00000000000000000000000000000078f4b3bc61f19d6e7069359bbf47e7f907", + "0x00000000000000000000000000000000002d7c18a93c3dae58809faaeec6a86a" ] -hash = "0x2c11ebce16774ffae08ab762db52129e1459c54fa3c6c84dec50e1ab19902450" +hash = "0x02000585cdcfabec0389c1d04dce686bbd9e5111a83639fda83bc8cd789e938f" [private_call.verification_key_hints] -contract_class_artifact_hash = "0x13fc2fe87d549b0fa2b3686b10cdbb0c7a463048dbf5e60a35e4cf0c84dd353a" -contract_class_public_bytecode_commitment = "0x0af24e6a0dd466ed74a3ee87884be5f8d863f8c877376cc37e14a4a0b1a5e51c" +contract_class_artifact_hash = "0x072ca8df98daa7a4041cacbd24db07d4c0135868d3f298e6fca896e04f3363bf" +contract_class_public_bytecode_commitment = "0x01db55df189e920c4865b80afd3514d5a4e3cb415bf2d0788ff1951b88fa4bb9" updated_class_id_shared_mutable_values = [ "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -5103,10 +5103,10 @@ updated_class_id_shared_mutable_values = [ [private_call.verification_key_hints.function_leaf_membership_witness] leaf_index = "4" sibling_path = [ - "0x0db04cd263a5d3e417265fddd3bea46d6841c062d130ff0fd7e63776e4a66823", - "0x05f98cd89ffe0469eabf9e0cca6a90dc742ce24ea44872f9b494c1f57caa7403", - "0x2f2b1fe59a7c287271f23a25eec6fdead9ef20151553612a7e19918f47dad4eb", - "0x2660b210bc22442599d58500ddba809b030382f3b204e0065cf0a443392face6", + "0x251bc1b0aa78cd3678efc119d83b8d60e23744382fabc1b61b0490f7dd8c48a4", + "0x2d7c98bcb5d9c17d632c860a1121783e4f1bdafa1c6c114fbb201a48475635a6", + "0x03d7f20dd1c5f4593f296d841e1c446d529c527cc9a3ccadbdf7c3375de0044c", + "0x18a070a5d9d1b172241b0dc708e4a544ab8dad75beac531b7971aaaf67bfc87f", "0x2a6595890719fef7967c209488728aa5342438ba52058a3c770202f55acf6854" ] @@ -5131,31 +5131,31 @@ y = "0x2039907fe37f08d10739255141bb066c506a12f7d1e8dfec21abc58494705b6f" is_infinite = false [private_call.verification_key_hints.salted_initialization_hash] - inner = "0x23757d9e756540ba1dd77df97867575c25cec89b599622a600aa4101dab9c49f" + inner = "0x12860c6a26c4574d4becdb0a48ed925d1cd4b3f3677e475f7a5b7c704dfe7a49" [private_call.verification_key_hints.protocol_contract_membership_witness] leaf_index = "1" sibling_path = [ - "0x014721e5cb0c5ce9337815e6eea778ce8299f3ace145265074ab573a5df6e152", - "0x226ed6071e3507bba38d27647d706d72bb0c0a99d7d598411a28de3bc35c85ed", - "0x20f06640764c17f6e39bd7c8cf643ef7ee75b31eb9519b61bd804ab464389525" + "0x2e088546ab38e98f756fc08081acd57a45fdbd6a33333ec70f632f0055087fa5", + "0x12662e3b79d69dc21fcbf65509cbfceccfbed9aa7a10a4eeaa19524d85da613f", + "0x10d10d96dc8e1092a32f13d5f9721a770b224096ac4c85587538131ba65cf3b1" ] [private_call.verification_key_hints.protocol_contract_leaf] - address = "0x157f674d0cd3e8c551f5bcd76685653e5e4aab9f2c1ea085b3fd63122a4e054f" - next_address = "0x1d1825f74ba933c2fdd5260cb9ff6553a9205d46a8a2e3910adac8e01ad7caeb" + address = "0x0983655c6c7e92563641c1f4839fffd29e6221b1728234d429f2e0fea2324694" + next_address = "0x1da53067828d3928bbcd378b5ebfc80d169b56caaca51438b17beb3a3e687757" [private_call.verification_key_hints.updated_class_id_witness] - leaf_index = "140" + leaf_index = "139" sibling_path = [ - "0x2ae8e09ad40ac51c258eb43923bcf3226a517c05a6eb323b58d5c38b7c9d052d", - "0x0b63a53787021a4a962a452c2921b3663aff1ffd8d5510540f8e659e782956f1", - "0x104167dcb01ce6fe4c03099da4f58ba435f9bd3702e8c58f717e44c135342dee", - "0x0ac4fcae82466e6db2dedf1d29f231c0a8aa06e1c83ac7e488513a2e596a82fa", + "0x1d950f264b12425d37dc9dad1db943ded39395a62514d8453a9f87450c5f122e", + "0x25063f5efe4df62103dac02388ad73b16f5624006fabe3a468fc1f85213b1115", + "0x0a80a826c40a9e373f7d1f2ced426871da0b20102a706ef5c504fe6d1b885161", + "0x1d1e0f97ab3d47beff12f917bd60d6fa1ce0596cbd981c6ec5fac66d60fb333d", "0x2373ea368857ec7af97e7b470d705848e2bf93ed7bef142a490f2119bcf82d8e", "0x120157cfaaa49ce3da30f8b47879114977c24b266d58b0ac18b325d878aafddf", "0x01c28fe1059ae0237b72334700697bdf465e03df03986fe05200cadeda66bd76", - "0x0b5d252a103b343b7e12284df4f07fbe9a6c2f43133702ce2e704fc149b153af", + "0x29ecdc1c18c3999c91f21c0acb77e5383e46f8b85ad106720409815e1d463740", "0x067243231eddf4222f3911defbba7705aff06ed45960b27f6f91319196ef97e1", "0x1849b85f3c693693e732dfc4577217acc18295193bede09ce8b97ad910310972", "0x2a775ea761d20435b31fa2c33ff07663e24542ffb9e7b293dfce3042eb104686", @@ -5191,13 +5191,13 @@ is_infinite = false ] [private_call.verification_key_hints.updated_class_id_leaf] - slot = "0x27c9b8a69529cb559d2cc6adb1e68b6496b6df83d9dc3fbfd2059b22970bf97b" - value = "0x0000000000000000000000000000000000000000000000000000000000004e20" - next_slot = "0x2aab678ab5f275729c4d39b4feb010f9362a207be44f1080da2321a4bd581a65" - next_index = "0x0000000000000000000000000000000000000000000000000000000000000080" + slot = "0x142c9cb52b4cc578630b15c79176858858a4cbae8d7c29358d66da0fa361ff44" + value = "0x0000000000000000000000000000000000000000000000000000000000002710" + next_slot = "0x15bba6acd95100f11c2500c9d4b9dc6d82513db96dad6bb9038d1d28c81f6650" + next_index = "0x0000000000000000000000000000000000000000000000000000000000000079" [app_public_inputs] -args_hash = "0x0e7f7ee001f82645b6389e8623f1515b40fe11b4e4ba69b3bf17f409277a2f06" +args_hash = "0x25999c2bb2c33e60bc726b1e6848ecba60e6b233cb65af291299a7d77d0f5078" returns_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" start_side_effect_counter = "0x0000000000000000000000000000000000000000000000000000000000000003" end_side_effect_counter = "0x000000000000000000000000000000000000000000000000000000000000000c" @@ -5212,16 +5212,16 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" is_static_call = false [app_public_inputs.call_context.msg_sender] - inner = "0x0d276f24617f511e59fd25490f3cfbf48d2da5316bbe844093e4e2a81cd506bb" + inner = "0x2767f9570de8773ff9c0ee7316694a7959e85930a452a3b991946494c036e37f" [app_public_inputs.call_context.contract_address] - inner = "0x1b82bc8ac38ebcab85669f740dcefe4888097634e91446aed50bcb3a795e6f58" + inner = "0x1a3a98220a436a1096c5bcfb137a95786dd057109e5e8f50b778fdbfdfd7ba88" [app_public_inputs.call_context.function_selector] inner = "0x00000000000000000000000000000000000000000000000000000000754fb767" [[app_public_inputs.note_hash_read_requests]] - value = "0x1ce3710b3404fd43b180cd602839783cf7d1d27eb77995024f05d027a4a6b7aa" + value = "0x1a4d4d36c8c7cd57724c753d7fcbcfbbf3f3c4b8d3e556ffc2945aa1ceca0462" counter = "0x0000000000000000000000000000000000000000000000000000000000000005" [[app_public_inputs.note_hash_read_requests]] @@ -5285,7 +5285,7 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" counter = "0x0000000000000000000000000000000000000000000000000000000000000000" [[app_public_inputs.nullifier_read_requests]] - value = "0x1b82bc8ac38ebcab85669f740dcefe4888097634e91446aed50bcb3a795e6f58" + value = "0x1a3a98220a436a1096c5bcfb137a95786dd057109e5e8f50b778fdbfdfd7ba88" counter = "0x0000000000000000000000000000000000000000000000000000000000000004" [[app_public_inputs.nullifier_read_requests]] @@ -5352,11 +5352,11 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" sk_app_generator = "0x0000000000000000000000000000000000000000000000000000000000000030" [app_public_inputs.key_validation_requests_and_generators.request] - sk_app = "0x0f9e6becd64420052290a6345af010e4078f77fc4bc3169ec693d1ffb9064538" + sk_app = "0x0791b61e2938a026752d3ac4aa93da24bb50dd72d7c31667d9ae15fe8ab9cb32" [app_public_inputs.key_validation_requests_and_generators.request.pk_m] - x = "0x09b74809a76ba59fd642676761a29efb9b8bca4e50a5b905ab3f348b01534466" - y = "0x23f06fa5928d91c661636def8fade2f5575f5b2522d6a9104ed39a6ec96a1725" + x = "0x166a909a118950e27f7d77bebf2100a8c6ede3c3d980734edaa50a370c0d556a" + y = "0x2b8b3cb702ecdd4c87853e7fef89c026d9134409612428ea7eb5d8b50a190830" is_infinite = false [[app_public_inputs.key_validation_requests_and_generators]] @@ -5525,11 +5525,11 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" is_infinite = false [[app_public_inputs.note_hashes]] - value = "0x02741c96c64e8b197de9fa52664533dbe3f9c3f088175d531518cc74fca67346" + value = "0x0d94b47f516e1bc804bc9ceaf8969503ab0fa5a53390540bb390d0d0166d4dd9" counter = "0x0000000000000000000000000000000000000000000000000000000000000007" [[app_public_inputs.note_hashes]] - value = "0x152429ac2bdade4018a9c960f4807ae8712270429b37567000ada69461c92ca3" + value = "0x187934371277108daa69d1a8689073f88fc1fca9e9d59b1974eafd514c180956" counter = "0x0000000000000000000000000000000000000000000000000000000000000009" [[app_public_inputs.note_hashes]] @@ -5589,7 +5589,7 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" counter = "0x0000000000000000000000000000000000000000000000000000000000000000" [[app_public_inputs.nullifiers]] - value = "0x13a1f83e143387719c19e61cfe1db19f365572ecdb2a9e895338b84f94c11731" + value = "0x1a56421ef26d35475815c0a6f9e0d91dff79972bff8c7c3795f798e809c8c8ae" counter = "0x0000000000000000000000000000000000000000000000000000000000000006" note_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -5996,24 +5996,24 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" [app_public_inputs.private_logs.log] fields = [ - "0x1b0f53852ef7f57d621ff782f003a9123ed6d31243f6e3b44107384b7018c9ce", - "0x26f8b0a768057d35b7c1b7c2a9fc4fe9aea25855b0d0a9cf1c9ea84222175031", - "0x000112cecd3f7f5b8863e9a1a4150215d09fa6343912e8490c5481ae03f7dd3a", - "0x00c833a0a2e90d5be6bc8701e2e58d8a5512869f432b8a0c4ace11f2c0b955ce", - "0x0031dd8b4de06be63607f6d68944cfd8dbbc9cdbac3f220a8004c906f43f1e77", - "0x006f7f4232cb0c680efcb25c2791801c43dc0dd69b313eadf95a21d7ef0901af", - "0x006e788a00132f3c8f52c46cb0354b9497d2f0079beff0d9dfe1a92b84aeb3d4", - "0x006a7408f6d6f57a9123183836d1b8c27abfb3af273c63dc0cdd7caeecd4bbac", - "0x001929e884949d6b28398d08e0210e608ce7d20c2add1ee6a94b7774440c937e", - "0x000ea023fbb8a9532ff6d819dee5add4e40f5b9cc7c9409804e623d01a853813", - "0x00971e47445a7d7c9b635ec65ad792190789fc457232b2b145b1b1b2559223ca", - "0x000f154a04f33e32bbfb6f76720052c3b852053beb2ae30054ebdd21a999179a", - "0x0038d6d096641de7e38dc0b759cc90001298497a6f369416a212ffac05d59e9f", - "0x000999ef07793e4dfc90eb91a2c208eedd06f9353116a7b82c873130a4745615", - "0x003f9015f395231c604a8bc8a25bce7c8105ce67d86a916941371f6a06d12f2e", - "0x0064073091b1b2de1dc002265d59591384ebd8be66ad7c2a10a7fc526a07bf17", - "0x000d8f22336b46cd25b25994f5e7ee4680a56d73b79be303a4d35d268f57f119", - "0x0010c067a4ebe93de8a3201c1fa91e776432def667db13d14a17979dc1c7c61b" + "0x1adc989293ce7191ad4fd15c6a9fa163c8e0887bde55aac4d50eeb4fe9154b08", + "0x0e0fcb4369064bab84d2d7df3c351ab602f6362863a467b6c165daf0cbe87a5f", + "0x000141157cd8317ee909b6040fc21bcd74de9e0465c060b431786c704f3bfaf6", + "0x00d495ffbd02b9dc1e6a28b48b267a2568f6e0683dedd614f8ea29b70917c154", + "0x00e3fecc32f00c5f3d36ce22d3aae11757871c90098d2c4b30686e118af2903c", + "0x00e53b1bc2515033b82693c46bcc50b0093086fcbd8af596f60b34dae808e6e4", + "0x00bc4269217739ff39868fe4e63df8786ac81a4ad0532133d8e13b0d6a49b722", + "0x00c04a5bd90cfdfd50ddb0c4d03919d2450f33885f79f8d60b60f80a54e19ab7", + "0x00ab8e97791f0c59a553dac6098e18ec7969a6fe5301b98047bd22033d33d6f9", + "0x009dadff560ff0aa839555afbc9837940af1e8f64bf64d4d15903c53f4674b10", + "0x00552d853d003f61e87d8a9510b67901df4dd1b9fd3a7166089aed0d2fd145f6", + "0x005cbdb606b47661e6834bceccc9ee6f1aec359db59db9b55207549b59dd3f46", + "0x00751afaa9834cc2cd28ac86d0e9611ca7e79ed1b4e866b96b1455fe34084fe6", + "0x008666d98872090aef7f12ddfa11d7f1ed464003dfbb45a6c185b1bfeab6fcfd", + "0x006b788e6adb0ca6ea6bc57c639ecea5ece32e7b2b3c3dea5df628c1da180dca", + "0x002f006f1d593610e33b7f54f1cc02bb595bcadf2a2040acef6be5c1c4f6cefb", + "0x00cef445d17a33c4b484ebf20fc2007e6130becf1502a76e2dec4cd26a8b760c", + "0x00daf3a0896a6caab0029683bd1203a6d98c6dfcd22402c8a39fe83e411306e0" ] [[app_public_inputs.private_logs]] @@ -6022,24 +6022,24 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" [app_public_inputs.private_logs.log] fields = [ - "0x17a51b1af0ddc5004b0f3b27c7c0a173d1d23590a8ab6af0a5ef0cc45ff10a78", - "0x2ac1f754cac335d429ba0c6df8a4e56c404f41fc9a94ce83f3a7ffb2384cff39", - "0x00003f18bc75061813817b5ae29b019571308fbb56c2921b5a5117897fe36e1a", - "0x006244af5fa9791f5aa2b1b540cd64ba6c8fcdd3cac2ca22740555a931149921", - "0x00f1825046b6145b3dccfb15a7691bbba969f3c49ec0e677cceadb3ed8b28d70", - "0x002aae689e36f05c6bd1af5b9070fad42d582014b894d21c088fa9a1eeb0b90a", - "0x0015661a055210f7f117d0fc33e55657cbf81462c80705edc7f60c7d6b1168f5", - "0x004ad81b013a54e6d7394ef3de768b264063c8face41c839b7729c9c6f3620da", - "0x004ed16486fedef3ce4f7c1169362e25016e908f8921f155b8561d4f98cdb60c", - "0x00caa05c7004577aafead5f03cec4e979bc19da4ef59363c0e61399174568340", - "0x004e059d9e99b2bc9026fdd0596b47e9b1d48577c046ccb9846c78201121517d", - "0x00e9b3caa1ea2a7a71e84c09ddad2b4f0c0d4a3adb1bb0cc12442f9bb177eac1", - "0x0052722bef71f7704316e9be39dee4053a095da715e1b9c3e7d791de0a1428a1", - "0x0007a1afdac348588495b00c42c993e0e1f1e9c2549f03ff6574e81b19006d4d", - "0x008361e9063f7f07b3fcea3dbe00d6e1c4966728b528220fc16b9938fbd727a4", - "0x002a0c01487ab950e56838e79da503d354e0d47585ee8629cdb6d05f7747ccc8", - "0x00f4cca811eea24eb2024a1160d63d230e806e5b67ab675eba82115414d5dcad", - "0x0070998657db54d309f0cfbfcbfe4ce8199ae9bad36fc2252c38154d6e7aaf0c" + "0x0ab25521809d64308a2ac0146c3caadf01831b1a46e19c6cba461bf834ee87cf", + "0x09b2bb6462013186ec836afe3976d3cb3f067c42e2bfbedfe6c80a7aebdb06f7", + "0x0001902b1383e5c3784f94e7bde749322faeca10b8a380ed4d66d18acee3d2b8", + "0x0025160dfa77a8849cf217421882eb624f9417328d5c8ed27fdcb52c65c81eae", + "0x00435a83069c93173eee86c86ffdc6a4091ebf86331bfad574e3c35044c0ca9c", + "0x00aa4dee2f8bc0a240cac5b859387c7f68ae9dbeb147390dc554017b4c085773", + "0x00ab70d657a9f61225791f1fefc99937b894b45fabd75e162d0a5dc81fb916a9", + "0x00a4782284772770a00ad00e3ef7d3d11724120421df1b3939c87ab70da4381d", + "0x006d1c13b5e2d2586fdf9a9fec91c7d48960e623d92c74ca47dc25354d908cf0", + "0x00af8d53e4264e27df27495180ae90341a4d8658379600f7878a426ecb435691", + "0x00ad8a3f3d38c408e9499a8c71ccd186b6a2b08c1ad5b83a72b81c7a24344a91", + "0x00966afd0424ff544bd9a20b4f78f963d8cc93c8bbecc33ca36116422394f5e1", + "0x0028815998511c1908df89bed4b620fd969d9e3b6aaa051cc22feeb131b1f26e", + "0x00149d0dc6e33d70d13f715cef27a262d9a48081809435189344041f60a7630b", + "0x00a7f6c3d55f6c40688b6203fae3f50a41b6eab0d00d9df047abe8324fae1a19", + "0x00972556ce2fe45581174b6aebfe5c9af8761f3f23dd931ecea0d7a4458760b6", + "0x0049ebfe6a2761a3192e8e5bf45dd53e8db8dfa6bbc41d8e7e318ea696a11015", + "0x0075bcb37cf025ff0a2cc50c86aaf5bbb18f5c453eff9c49548e042cf975bc13" ] [[app_public_inputs.private_logs]] @@ -6048,24 +6048,24 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" [app_public_inputs.private_logs.log] fields = [ - "0x280c9bc0da06fff7a30e9317827b48612fc706f35b81a4ccef49df017166d9c9", - "0x18ae0433386fc14cc2b33df5800399aceb4e5339c562443038fde363b88acfd0", - "0x0000e3710600648f04ecc91f8c765d9b9ed522cd23dd76944789eba1db9a0f65", - "0x009f723fe4ca58f85b15a96c2fefb84a06dda426b6b5d15a0a4801590ce45b82", - "0x001097a37205b57862d5b06354697e84860232017896f827464fff6f32906257", - "0x00b4c61bb39c2c48075fe7526b6adeda939d5b8ca4fb4eacf0fee51d74e75c4c", - "0x0096c1fa68964ada00062ad0a0e3740aceda587b5b8c08606ddfbe83380a588f", - "0x00a64678a2e44ba0b43d48319f0ec0e2207cfca8de5339d09cba4fdb66a22295", - "0x00c5ce8466fea7c32d2251b19eceeb255ca3936bd685cfe254a26569d6012030", - "0x002bab892a37ed6ab7877cf8264bd0996ddb48f26af4cef9c623c8cabb2bcddf", - "0x0044a114e95570f5172d2f3af5cf7b440c6fe45b5dd15b151353a0ffa550fe8e", - "0x004c6361341c43797b6789acffcaa286605d90f29934fd1b54dc1ec716a3387f", - "0x00e58cf1c9bb62ee243f879ee44126f7ecfcb74844d2396c475bffdfe51d0079", - "0x0031a5deff207a4fcc08cf84afbc574364530365ab05615c59d6ca20ca9463f7", - "0x00403548ecbdb7c67268dced639138121b167c7b4543253bd051026008c2318c", - "0x0045aef83316fcb14c0b324e024d5e40b4d185bce14c6caa8b034215557f8b04", - "0x002a4520e5bd993cac0528d420933ec849d28eefd6250b453fd4460d917346de", - "0x00bb62585fc341042522bb7c5134fc39fb2e4f70e37bf7c388c67b17483ddfcf" + "0x0797935264989a86a53f17afd8e84510c5e37dde0ccac67e236099b38c6571e8", + "0x1e503fdfa7460705ea519e194b02dbde0895dc18c60888147a0185b3d45445aa", + "0x00013f6032397e68948c5c7e2286641188d22eea3436149249e63896016e9dc1", + "0x0060e3d27353bdbd2d7182f46d7859fef235977b54f0ad6362e44d331045fde9", + "0x00b8ed22f25afec74754bf7d85f2c08fe1600b0ec1908ff5943f88f73e6954aa", + "0x0063713053b899a97f698dc8135c5e6af55534b6eee5687e2ea33032fe0bb238", + "0x000aaa5d01d6d69dc86c7f401fe207bed7dd67d89d0ce7d54a6fe5bb2f2b879c", + "0x008f06a747c4c5df72a7677ea76624e76c0f1ed2b240a52ad07b688daf681312", + "0x0013b08254aa3f1f1d0050c6cf286bd6687360bdb6508ba34db1af8a9e13def9", + "0x00c8575364ddf160a61d4e6052f65688999e13495b40dda884a7905510ca8250", + "0x006ba2b913d961acff70cccab5b4975b0767cc806052b9ea1d9747d15466fd0d", + "0x006d20c223aafddab275d4a5e680c6531a431ec73cf5c59c0be57c73236d0689", + "0x004de43069703e31933f6f1154d3c1180a7abbe8bcac3ced8a31512b018cdf53", + "0x00f8796bffd6dc3824a99d0544e32e7856ec432a4f76ac465fb7b0260f741d08", + "0x003298e3fabde03fa630df51018fc61b488a199eaf21653d81841d0e163a550b", + "0x00b85e1f87c6606a7ff130b57887a5da14408d0bdb2fddd8a3d2f1d54fba8006", + "0x00b2d24ad2f108368ba796326edc830736fa0153f99afaf6a52b134d26316815", + "0x00b5812b4e05cb801ea2a4b78a1a27e1f67098b56a61973cd7c54d74cbe5210f" ] [[app_public_inputs.private_logs]] @@ -6412,16 +6412,16 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" length = "0x0000000000000000000000000000000000000000000000000000000000000000" [app_public_inputs.historical_header] - total_fees = "0x0000000000000000000000000000000000000000000000000000000152ca47ae" - total_mana_used = "0x00000000000000000000000000000000000000000000000000000000000190d9" + total_fees = "0x00000000000000000000000000000000000000000000000000000001419ea740" + total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000017cbd" [app_public_inputs.historical_header.last_archive] - root = "0x1b35d3693fceacad9c55613f198ade07687a8185638c482ab0163f78b142a5e5" + root = "0x0e8ef7f12683462ce5482c5c79c7a7bded4a0b57bd8233615b344388d0db6f39" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000006" [app_public_inputs.historical_header.content_commitment] num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" - blobs_hash = "0x0096c1e55b51be1e8bc9bb298b9ec7c371dd2c29bbbe22104ac8c77bbc898a47" + blobs_hash = "0x008c7cd47a688e5b2021e9f2b9dbcf7365dec5a004311ad5c5138303cf6d76f1" in_hash = "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -6430,37 +6430,37 @@ root = "0x2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000060" [app_public_inputs.historical_header.state.partial.note_hash_tree] -root = "0x1ded02f3086425317a03c41c7eef64de59bc94c1897f1913aa27ab4bcb0ebffa" +root = "0x1dee6637bc05b1fd02c2d8a42eab028959018f5b086d0637007ba626ab826e84" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000180" [app_public_inputs.historical_header.state.partial.nullifier_tree] -root = "0x098562545b0330d0811209e5288c5c475f226de51ac351a716cc1a6408c2b211" +root = "0x1a443dd12842b2c2f4fadbfa63351ff72577b12b0059bdc634ede1a83d51e5fa" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" [app_public_inputs.historical_header.state.partial.public_data_tree] -root = "0x13d83910c6484f046a8424f78fe7fa8d0366fe56a7ba2a5764cc8972f238cde9" +root = "0x189e9a705c609addf8f5c6dcac63e9a18ee30a94330b79656a1ee99b0c57fede" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" [app_public_inputs.historical_header.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000006" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000008" - timestamp = "0x00000000000000000000000000000000000000000000000000000000680687a3" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680783c5" [app_public_inputs.historical_header.global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [app_public_inputs.historical_header.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [app_public_inputs.historical_header.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000d85e" + fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000d840" [app_public_inputs.tx_context] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" [app_public_inputs.tx_context.gas_settings.gas_limits] da_gas = "0x000000000000000000000000000000000000000000000000000000003b9aca00" @@ -6472,7 +6472,7 @@ l2_gas = "0x00000000000000000000000000000000000000000000000000000000005b8d80" [app_public_inputs.tx_context.gas_settings.max_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" -fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000002fd0" +fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000002fc1" [app_public_inputs.tx_context.gas_settings.max_priority_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" diff --git a/noir-projects/noir-protocol-circuits/crates/private-kernel-reset/Prover.toml b/noir-projects/noir-protocol-circuits/crates/private-kernel-reset/Prover.toml index 0a0e6f2ab1ab..8d8b41628ce3 100644 --- a/noir-projects/noir-protocol-circuits/crates/private-kernel-reset/Prover.toml +++ b/noir-projects/noir-protocol-circuits/crates/private-kernel-reset/Prover.toml @@ -3,8 +3,8 @@ vk_index = "0x0000000000000000000000000000000000000000000000000000000000000000" vk_path = [ "0x2f7990492fb38523aa684577903d0bd007b968530c8e40387fcd1574e02a63cc", "0x162832a9703d2788b5221ff51bcb8bfe5b55cbe2bbb917fc13faeea857e77096", - "0x14659e3d45349d5233a08a6a0fa381261345c4a7ce46c6c4b59dc1f4a21cae8c", - "0x1392b27d933b41fb9e36e29ac5d45040893997a526088cfa50d707fc2d5fa986", + "0x0c3072a0660f951b5a4fdddf5c2d9132547f01bef6df9b662f3620c19f50997e", + "0x1a8c157a307350dc57f06625e220057348008c02bc50c04154826acb1153bb77", "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] @@ -160,23 +160,23 @@ vk_path = [ [previous_kernel_public_inputs] min_revertible_side_effect_counter = "0x0000000000000000000000000000000000000000000000000000000000000003" is_private_only = false -claimed_first_nullifier = "0x162a848e6ee69836004d54627fd42350b2c1ba77896acb84b1c774a0efa5a522" +claimed_first_nullifier = "0x0be3c65c2d49ad3ecf8cf1aafc68ce1eb938503b9a991a3ab75dd10b04dd7f45" [previous_kernel_public_inputs.constants] - vk_tree_root = "0x0f41ca517c1c4dabab14d88d50dcbaa9638b23bfdbc28fa3a94d7260ef0c7427" - protocol_contract_tree_root = "0x0af0a7a13726bd13afe2a3fbfa52690c43ca774227d6c2bfe86fce93c387953a" + vk_tree_root = "0x18c54e1814ecadeffcd11feed9049f02d31148f4457ddcf84e4d580bbc5ccb0f" + protocol_contract_tree_root = "0x2098b90e2b21f02ad7a1fc6afcf944ef3685236caeb015b51a502471c492cdfb" [previous_kernel_public_inputs.constants.historical_header] - total_fees = "0x0000000000000000000000000000000000000000000000000000000152ca47ae" - total_mana_used = "0x00000000000000000000000000000000000000000000000000000000000190d9" + total_fees = "0x00000000000000000000000000000000000000000000000000000001419ea740" + total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000017cbd" [previous_kernel_public_inputs.constants.historical_header.last_archive] - root = "0x1b35d3693fceacad9c55613f198ade07687a8185638c482ab0163f78b142a5e5" + root = "0x0e8ef7f12683462ce5482c5c79c7a7bded4a0b57bd8233615b344388d0db6f39" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000006" [previous_kernel_public_inputs.constants.historical_header.content_commitment] num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" - blobs_hash = "0x0096c1e55b51be1e8bc9bb298b9ec7c371dd2c29bbbe22104ac8c77bbc898a47" + blobs_hash = "0x008c7cd47a688e5b2021e9f2b9dbcf7365dec5a004311ad5c5138303cf6d76f1" in_hash = "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -185,37 +185,37 @@ root = "0x2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000060" [previous_kernel_public_inputs.constants.historical_header.state.partial.note_hash_tree] -root = "0x1ded02f3086425317a03c41c7eef64de59bc94c1897f1913aa27ab4bcb0ebffa" +root = "0x1dee6637bc05b1fd02c2d8a42eab028959018f5b086d0637007ba626ab826e84" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000180" [previous_kernel_public_inputs.constants.historical_header.state.partial.nullifier_tree] -root = "0x098562545b0330d0811209e5288c5c475f226de51ac351a716cc1a6408c2b211" +root = "0x1a443dd12842b2c2f4fadbfa63351ff72577b12b0059bdc634ede1a83d51e5fa" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" [previous_kernel_public_inputs.constants.historical_header.state.partial.public_data_tree] -root = "0x13d83910c6484f046a8424f78fe7fa8d0366fe56a7ba2a5764cc8972f238cde9" +root = "0x189e9a705c609addf8f5c6dcac63e9a18ee30a94330b79656a1ee99b0c57fede" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" [previous_kernel_public_inputs.constants.historical_header.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000006" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000008" - timestamp = "0x00000000000000000000000000000000000000000000000000000000680687a3" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680783c5" [previous_kernel_public_inputs.constants.historical_header.global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [previous_kernel_public_inputs.constants.historical_header.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [previous_kernel_public_inputs.constants.historical_header.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000d85e" + fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000d840" [previous_kernel_public_inputs.constants.tx_context] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" [previous_kernel_public_inputs.constants.tx_context.gas_settings.gas_limits] da_gas = "0x000000000000000000000000000000000000000000000000000000003b9aca00" @@ -227,7 +227,7 @@ l2_gas = "0x00000000000000000000000000000000000000000000000000000000005b8d80" [previous_kernel_public_inputs.constants.tx_context.gas_settings.max_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" -fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000002fd0" +fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000002fc1" [previous_kernel_public_inputs.constants.tx_context.gas_settings.max_priority_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -239,11 +239,11 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000e16" [[previous_kernel_public_inputs.validation_requests.note_hash_read_requests]] [previous_kernel_public_inputs.validation_requests.note_hash_read_requests.read_request] -value = "0x192d37d841b06f83904e06fbccfa99cd5c3d51a58b574901f206c3c2b35fc07c" +value = "0x090e3c92b33874aa2c00c8d3e46ea329d557122be0cf8a335e823d7c48200533" counter = "0x0000000000000000000000000000000000000000000000000000000000000002" [previous_kernel_public_inputs.validation_requests.note_hash_read_requests.contract_address] -inner = "0x0d276f24617f511e59fd25490f3cfbf48d2da5316bbe844093e4e2a81cd506bb" +inner = "0x2767f9570de8773ff9c0ee7316694a7959e85930a452a3b991946494c036e37f" [[previous_kernel_public_inputs.validation_requests.note_hash_read_requests]] [previous_kernel_public_inputs.validation_requests.note_hash_read_requests.read_request] @@ -2739,7 +2739,7 @@ inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [[previous_kernel_public_inputs.end.nullifiers]] [previous_kernel_public_inputs.end.nullifiers.nullifier] -value = "0x162a848e6ee69836004d54627fd42350b2c1ba77896acb84b1c774a0efa5a522" +value = "0x0be3c65c2d49ad3ecf8cf1aafc68ce1eb938503b9a991a3ab75dd10b04dd7f45" counter = "0x0000000000000000000000000000000000000000000000000000000000000000" note_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -4375,13 +4375,13 @@ counter = "0x0000000000000000000000000000000000000000000000000000000000000003" [previous_kernel_public_inputs.end.public_call_requests.inner] is_static_call = true - calldata_hash = "0x11bfffe6b653e0ad64946bfb3c65e037eb9f617b7fc0c1c3c70655d43e61348e" + calldata_hash = "0x2defd00bf269b7391e46320a4fc005b50585a46cdd8ba1c2b0858fea947d7039" [previous_kernel_public_inputs.end.public_call_requests.inner.msg_sender] - inner = "0x0d276f24617f511e59fd25490f3cfbf48d2da5316bbe844093e4e2a81cd506bb" + inner = "0x2767f9570de8773ff9c0ee7316694a7959e85930a452a3b991946494c036e37f" [previous_kernel_public_inputs.end.public_call_requests.inner.contract_address] - inner = "0x1b82bc8ac38ebcab85669f740dcefe4888097634e91446aed50bcb3a795e6f58" + inner = "0x1a3a98220a436a1096c5bcfb137a95786dd057109e5e8f50b778fdbfdfd7ba88" [[previous_kernel_public_inputs.end.public_call_requests]] counter = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -4941,7 +4941,7 @@ end_side_effect_counter = "0x000000000000000000000000000000000000000000000000000 inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [previous_kernel_public_inputs.fee_payer] - inner = "0x0d276f24617f511e59fd25490f3cfbf48d2da5316bbe844093e4e2a81cd506bb" + inner = "0x2767f9570de8773ff9c0ee7316694a7959e85930a452a3b991946494c036e37f" [hints] validation_requests_split_counter = "0x0000000000000000000000000000000000000000000000000000000000000003" @@ -5470,9 +5470,9 @@ read_request_index = "0x00000000000000000000000000000000000000000000000000000000 "0x21f9172d72fdcdafc312eee05cf5092980dda821da5b760a9fb8dbdf607c8a20", "0x2373ea368857ec7af97e7b470d705848e2bf93ed7bef142a490f2119bcf82d8e", "0x120157cfaaa49ce3da30f8b47879114977c24b266d58b0ac18b325d878aafddf", - "0x10d057a661b6214a96bf5ae3392814a0f783704cda510510a1b36948264da763", + "0x00db14b195c8aaf17f0c19f8634f9021172b04263163403158a9025633ae6fcb", "0x2d78ed82f93b61ba718b17c2dfe5b52375b4d37cbbed6f1fc98b47614b0cf21b", - "0x1ba21b95d9800a1c709bb7d441c128bba04f8fc20f80f555c6b50526ab9f45f3", + "0x1cb28a3b7155e6364727297a08ffd0aff3c0dfc6a0e3aef8427dd702a4571b55", "0x1849b85f3c693693e732dfc4577217acc18295193bede09ce8b97ad910310972", "0x2a775ea761d20435b31fa2c33ff07663e24542ffb9e7b293dfce3042eb104686", "0x0f320b0703439a8114f81593de99cd0b8f3b9bf854601abb5b2ea0e8a3dda4a7", @@ -5507,7 +5507,7 @@ read_request_index = "0x00000000000000000000000000000000000000000000000000000000 ] [hints.note_hash_read_request_hints.settled_read_hints.leaf_preimage] - value = "0x192d37d841b06f83904e06fbccfa99cd5c3d51a58b574901f206c3c2b35fc07c" + value = "0x090e3c92b33874aa2c00c8d3e46ea329d557122be0cf8a335e823d7c48200533" [[hints.note_hash_read_request_hints.settled_read_hints]] read_request_index = "0x0000000000000000000000000000000000000000000000000000000000000040" diff --git a/noir-projects/noir-protocol-circuits/crates/private-kernel-tail-to-public/Prover.toml b/noir-projects/noir-protocol-circuits/crates/private-kernel-tail-to-public/Prover.toml index e435c1067a49..091a162bfc3c 100644 --- a/noir-projects/noir-protocol-circuits/crates/private-kernel-tail-to-public/Prover.toml +++ b/noir-projects/noir-protocol-circuits/crates/private-kernel-tail-to-public/Prover.toml @@ -6,7 +6,7 @@ vk_path = [ "0x0a53612b564d6171b0b13b499eaed0cf2d21e8a6a678335f42ec8f30eb24a08a", "0x0e892653be0889bb19c33c717d702acef52f0bf85a230de172b8cf0b9fe0fdb4", "0x0f6bd8ccfb76feec5b9e3d00618759f8f9063f425f6518599bb779516323440f", - "0x055588d11242a7387829e172866c2af482d9238b23dae5f0ee0ffc1c1727efaf" + "0x0a83c402ec9b45af8f6379bb9b9e4b43fb7f9f95e629636bdb9c31523007079a" ] [previous_kernel.vk] @@ -160,23 +160,23 @@ vk_path = [ [previous_kernel_public_inputs] min_revertible_side_effect_counter = "0x0000000000000000000000000000000000000000000000000000000000000003" is_private_only = false -claimed_first_nullifier = "0x162a848e6ee69836004d54627fd42350b2c1ba77896acb84b1c774a0efa5a522" +claimed_first_nullifier = "0x0be3c65c2d49ad3ecf8cf1aafc68ce1eb938503b9a991a3ab75dd10b04dd7f45" [previous_kernel_public_inputs.constants] - vk_tree_root = "0x0f41ca517c1c4dabab14d88d50dcbaa9638b23bfdbc28fa3a94d7260ef0c7427" - protocol_contract_tree_root = "0x0af0a7a13726bd13afe2a3fbfa52690c43ca774227d6c2bfe86fce93c387953a" + vk_tree_root = "0x18c54e1814ecadeffcd11feed9049f02d31148f4457ddcf84e4d580bbc5ccb0f" + protocol_contract_tree_root = "0x2098b90e2b21f02ad7a1fc6afcf944ef3685236caeb015b51a502471c492cdfb" [previous_kernel_public_inputs.constants.historical_header] - total_fees = "0x0000000000000000000000000000000000000000000000000000000152ca47ae" - total_mana_used = "0x00000000000000000000000000000000000000000000000000000000000190d9" + total_fees = "0x00000000000000000000000000000000000000000000000000000001419ea740" + total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000017cbd" [previous_kernel_public_inputs.constants.historical_header.last_archive] - root = "0x1b35d3693fceacad9c55613f198ade07687a8185638c482ab0163f78b142a5e5" + root = "0x0e8ef7f12683462ce5482c5c79c7a7bded4a0b57bd8233615b344388d0db6f39" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000006" [previous_kernel_public_inputs.constants.historical_header.content_commitment] num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" - blobs_hash = "0x0096c1e55b51be1e8bc9bb298b9ec7c371dd2c29bbbe22104ac8c77bbc898a47" + blobs_hash = "0x008c7cd47a688e5b2021e9f2b9dbcf7365dec5a004311ad5c5138303cf6d76f1" in_hash = "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -185,37 +185,37 @@ root = "0x2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000060" [previous_kernel_public_inputs.constants.historical_header.state.partial.note_hash_tree] -root = "0x1ded02f3086425317a03c41c7eef64de59bc94c1897f1913aa27ab4bcb0ebffa" +root = "0x1dee6637bc05b1fd02c2d8a42eab028959018f5b086d0637007ba626ab826e84" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000180" [previous_kernel_public_inputs.constants.historical_header.state.partial.nullifier_tree] -root = "0x098562545b0330d0811209e5288c5c475f226de51ac351a716cc1a6408c2b211" +root = "0x1a443dd12842b2c2f4fadbfa63351ff72577b12b0059bdc634ede1a83d51e5fa" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" [previous_kernel_public_inputs.constants.historical_header.state.partial.public_data_tree] -root = "0x13d83910c6484f046a8424f78fe7fa8d0366fe56a7ba2a5764cc8972f238cde9" +root = "0x189e9a705c609addf8f5c6dcac63e9a18ee30a94330b79656a1ee99b0c57fede" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" [previous_kernel_public_inputs.constants.historical_header.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000006" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000008" - timestamp = "0x00000000000000000000000000000000000000000000000000000000680687a3" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680783c5" [previous_kernel_public_inputs.constants.historical_header.global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [previous_kernel_public_inputs.constants.historical_header.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [previous_kernel_public_inputs.constants.historical_header.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000d85e" + fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000d840" [previous_kernel_public_inputs.constants.tx_context] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" [previous_kernel_public_inputs.constants.tx_context.gas_settings.gas_limits] da_gas = "0x000000000000000000000000000000000000000000000000000000003b9aca00" @@ -227,7 +227,7 @@ l2_gas = "0x00000000000000000000000000000000000000000000000000000000005b8d80" [previous_kernel_public_inputs.constants.tx_context.gas_settings.max_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" -fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000002fd0" +fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000002fc1" [previous_kernel_public_inputs.constants.tx_context.gas_settings.max_priority_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -2739,7 +2739,7 @@ inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [[previous_kernel_public_inputs.end.nullifiers]] [previous_kernel_public_inputs.end.nullifiers.nullifier] -value = "0x162a848e6ee69836004d54627fd42350b2c1ba77896acb84b1c774a0efa5a522" +value = "0x0be3c65c2d49ad3ecf8cf1aafc68ce1eb938503b9a991a3ab75dd10b04dd7f45" counter = "0x0000000000000000000000000000000000000000000000000000000000000000" note_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -4375,13 +4375,13 @@ counter = "0x0000000000000000000000000000000000000000000000000000000000000003" [previous_kernel_public_inputs.end.public_call_requests.inner] is_static_call = true - calldata_hash = "0x11bfffe6b653e0ad64946bfb3c65e037eb9f617b7fc0c1c3c70655d43e61348e" + calldata_hash = "0x2defd00bf269b7391e46320a4fc005b50585a46cdd8ba1c2b0858fea947d7039" [previous_kernel_public_inputs.end.public_call_requests.inner.msg_sender] - inner = "0x0d276f24617f511e59fd25490f3cfbf48d2da5316bbe844093e4e2a81cd506bb" + inner = "0x2767f9570de8773ff9c0ee7316694a7959e85930a452a3b991946494c036e37f" [previous_kernel_public_inputs.end.public_call_requests.inner.contract_address] - inner = "0x1b82bc8ac38ebcab85669f740dcefe4888097634e91446aed50bcb3a795e6f58" + inner = "0x1a3a98220a436a1096c5bcfb137a95786dd057109e5e8f50b778fdbfdfd7ba88" [[previous_kernel_public_inputs.end.public_call_requests]] counter = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -4941,4 +4941,4 @@ end_side_effect_counter = "0x000000000000000000000000000000000000000000000000000 inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [previous_kernel_public_inputs.fee_payer] - inner = "0x0d276f24617f511e59fd25490f3cfbf48d2da5316bbe844093e4e2a81cd506bb" + inner = "0x2767f9570de8773ff9c0ee7316694a7959e85930a452a3b991946494c036e37f" diff --git a/noir-projects/noir-protocol-circuits/crates/private-kernel-tail/Prover.toml b/noir-projects/noir-protocol-circuits/crates/private-kernel-tail/Prover.toml index e4161f9309a0..a7978516f4a1 100644 --- a/noir-projects/noir-protocol-circuits/crates/private-kernel-tail/Prover.toml +++ b/noir-projects/noir-protocol-circuits/crates/private-kernel-tail/Prover.toml @@ -6,7 +6,7 @@ vk_path = [ "0x0a53612b564d6171b0b13b499eaed0cf2d21e8a6a678335f42ec8f30eb24a08a", "0x0e892653be0889bb19c33c717d702acef52f0bf85a230de172b8cf0b9fe0fdb4", "0x0f6bd8ccfb76feec5b9e3d00618759f8f9063f425f6518599bb779516323440f", - "0x055588d11242a7387829e172866c2af482d9238b23dae5f0ee0ffc1c1727efaf" + "0x0a83c402ec9b45af8f6379bb9b9e4b43fb7f9f95e629636bdb9c31523007079a" ] [previous_kernel.vk] @@ -160,23 +160,23 @@ vk_path = [ [previous_kernel_public_inputs] min_revertible_side_effect_counter = "0x0000000000000000000000000000000000000000000000000000000000000003" is_private_only = true -claimed_first_nullifier = "0x21ffbca5e229ce1c97c32c088eae7789a726999430cc02a5410f5fd505b82f67" +claimed_first_nullifier = "0x0a16a75643092d5aef61c9eb71ff79714f17615f924f1ba3fa5a547816549f2c" [previous_kernel_public_inputs.constants] - vk_tree_root = "0x0f41ca517c1c4dabab14d88d50dcbaa9638b23bfdbc28fa3a94d7260ef0c7427" - protocol_contract_tree_root = "0x0af0a7a13726bd13afe2a3fbfa52690c43ca774227d6c2bfe86fce93c387953a" + vk_tree_root = "0x18c54e1814ecadeffcd11feed9049f02d31148f4457ddcf84e4d580bbc5ccb0f" + protocol_contract_tree_root = "0x2098b90e2b21f02ad7a1fc6afcf944ef3685236caeb015b51a502471c492cdfb" [previous_kernel_public_inputs.constants.historical_header] - total_fees = "0x0000000000000000000000000000000000000000000000000000000152ca47ae" - total_mana_used = "0x00000000000000000000000000000000000000000000000000000000000190d9" + total_fees = "0x00000000000000000000000000000000000000000000000000000001419ea740" + total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000017cbd" [previous_kernel_public_inputs.constants.historical_header.last_archive] - root = "0x1b35d3693fceacad9c55613f198ade07687a8185638c482ab0163f78b142a5e5" + root = "0x0e8ef7f12683462ce5482c5c79c7a7bded4a0b57bd8233615b344388d0db6f39" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000006" [previous_kernel_public_inputs.constants.historical_header.content_commitment] num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" - blobs_hash = "0x0096c1e55b51be1e8bc9bb298b9ec7c371dd2c29bbbe22104ac8c77bbc898a47" + blobs_hash = "0x008c7cd47a688e5b2021e9f2b9dbcf7365dec5a004311ad5c5138303cf6d76f1" in_hash = "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -185,37 +185,37 @@ root = "0x2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000060" [previous_kernel_public_inputs.constants.historical_header.state.partial.note_hash_tree] -root = "0x1ded02f3086425317a03c41c7eef64de59bc94c1897f1913aa27ab4bcb0ebffa" +root = "0x1dee6637bc05b1fd02c2d8a42eab028959018f5b086d0637007ba626ab826e84" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000180" [previous_kernel_public_inputs.constants.historical_header.state.partial.nullifier_tree] -root = "0x098562545b0330d0811209e5288c5c475f226de51ac351a716cc1a6408c2b211" +root = "0x1a443dd12842b2c2f4fadbfa63351ff72577b12b0059bdc634ede1a83d51e5fa" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" [previous_kernel_public_inputs.constants.historical_header.state.partial.public_data_tree] -root = "0x13d83910c6484f046a8424f78fe7fa8d0366fe56a7ba2a5764cc8972f238cde9" +root = "0x189e9a705c609addf8f5c6dcac63e9a18ee30a94330b79656a1ee99b0c57fede" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" [previous_kernel_public_inputs.constants.historical_header.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000006" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000008" - timestamp = "0x00000000000000000000000000000000000000000000000000000000680687a3" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680783c5" [previous_kernel_public_inputs.constants.historical_header.global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [previous_kernel_public_inputs.constants.historical_header.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [previous_kernel_public_inputs.constants.historical_header.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000d85e" + fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000d840" [previous_kernel_public_inputs.constants.tx_context] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" [previous_kernel_public_inputs.constants.tx_context.gas_settings.gas_limits] da_gas = "0x000000000000000000000000000000000000000000000000000000003b9aca00" @@ -227,7 +227,7 @@ l2_gas = "0x00000000000000000000000000000000000000000000000000000000005b8d80" [previous_kernel_public_inputs.constants.tx_context.gas_settings.max_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" -fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000002fd0" +fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000002fc1" [previous_kernel_public_inputs.constants.tx_context.gas_settings.max_priority_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -2227,7 +2227,7 @@ _value = "0x0000000000000000000000000000000000000000000000000000000000000000" [[previous_kernel_public_inputs.end.note_hashes]] [previous_kernel_public_inputs.end.note_hashes.note_hash] -value = "0x0bd1ddd7859c449367cf30d27bb71b4c385b168ee24895ffc04a949546fa039f" +value = "0x14bc1195bc5381f55ca5407a68446a155af2ad9babe64a32767439bb441e27da" counter = "0x0000000000000000000000000000000000000000000000000000000000000007" [previous_kernel_public_inputs.end.note_hashes.contract_address] @@ -2235,7 +2235,7 @@ inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [[previous_kernel_public_inputs.end.note_hashes]] [previous_kernel_public_inputs.end.note_hashes.note_hash] -value = "0x1cf1c8df20f5b69db9699a64d3791617f52d13353035bd46aa747e45416973f5" +value = "0x26cbe752d2d21f185b53b4429ff623ff3786f2cd329975b247be8e4aff475ee0" counter = "0x0000000000000000000000000000000000000000000000000000000000000009" [previous_kernel_public_inputs.end.note_hashes.contract_address] @@ -2739,7 +2739,7 @@ inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [[previous_kernel_public_inputs.end.nullifiers]] [previous_kernel_public_inputs.end.nullifiers.nullifier] -value = "0x21ffbca5e229ce1c97c32c088eae7789a726999430cc02a5410f5fd505b82f67" +value = "0x0a16a75643092d5aef61c9eb71ff79714f17615f924f1ba3fa5a547816549f2c" counter = "0x0000000000000000000000000000000000000000000000000000000000000000" note_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -2748,7 +2748,7 @@ inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [[previous_kernel_public_inputs.end.nullifiers]] [previous_kernel_public_inputs.end.nullifiers.nullifier] -value = "0x1033b67e693da924ffe977f44cf6480f5d4dccdf22a6f8a617da825a175e5be3" +value = "0x1dc77bf6a744218be035b1f422882d9e70c1b4a8ac401584f8aad032c5219ef4" counter = "0x0000000000000000000000000000000000000000000000000000000000000006" note_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -3408,24 +3408,24 @@ counter = "0x0000000000000000000000000000000000000000000000000000000000000008" [previous_kernel_public_inputs.end.private_logs.inner.log] fields = [ - "0x2d47bd152464f3b9fd83f7c5db740e1d906c8050eca66b1d150bc0db048e5b96", - "0x26f8b0a768057d35b7c1b7c2a9fc4fe9aea25855b0d0a9cf1c9ea84222175031", - "0x000112cecd3f7f5b8863e9a1a4150215d09fa6343912e8490c5481ae03f7dd3a", - "0x00c833a0a2e90d5be6bc8701e2e58d8a5512869f432b8a0c4ace11f2c0b955ce", - "0x0031dd8b4de06be63607f6d68944cfd8dbbc9cdbac3f220a8004c906f43f1e77", - "0x006f7f4232cb0c680efcb25c2791801c43dc0dd69b313eadf95a21d7ef0901af", - "0x006e788a00132f3c8f52c46cb0354b9497d2f0079beff0d9dfe1a92b84aeb3d4", - "0x006a7408f6d6f57a9123183836d1b8c27abfb3af273c63dc0cdd7caeecd4bbac", - "0x001929e884949d6b28398d08e0210e608ce7d20c2add1ee6a94b7774440c937e", - "0x000ea023fbb8a9532ff6d819dee5add4e40f5b9cc7c9409804e623d01a853813", - "0x00971e47445a7d7c9b635ec65ad792190789fc457232b2b145b1b1b2559223ca", - "0x000f154a04f33e32bbfb6f76720052c3b852053beb2ae30054ebdd21a999179a", - "0x0038d6d096641de7e38dc0b759cc90001298497a6f369416a212ffac05d59e9f", - "0x000999ef07793e4dfc90eb91a2c208eedd06f9353116a7b82c873130a4745615", - "0x003f9015f395231c604a8bc8a25bce7c8105ce67d86a916941371f6a06d12f2e", - "0x0064073091b1b2de1dc002265d59591384ebd8be66ad7c2a10a7fc526a07bf17", - "0x000d8f22336b46cd25b25994f5e7ee4680a56d73b79be303a4d35d268f57f119", - "0x0010c067a4ebe93de8a3201c1fa91e776432def667db13d14a17979dc1c7c61b" + "0x023d7ef2c9e59b863ea34228397589b6eedc5ad03bb29b3df0c23616e87a55f3", + "0x0e0fcb4369064bab84d2d7df3c351ab602f6362863a467b6c165daf0cbe87a5f", + "0x000141157cd8317ee909b6040fc21bcd74de9e0465c060b431786c704f3bfaf6", + "0x00d495ffbd02b9dc1e6a28b48b267a2568f6e0683dedd614f8ea29b70917c154", + "0x00e3fecc32f00c5f3d36ce22d3aae11757871c90098d2c4b30686e118af2903c", + "0x00e53b1bc2515033b82693c46bcc50b0093086fcbd8af596f60b34dae808e6e4", + "0x00bc4269217739ff39868fe4e63df8786ac81a4ad0532133d8e13b0d6a49b722", + "0x00c04a5bd90cfdfd50ddb0c4d03919d2450f33885f79f8d60b60f80a54e19ab7", + "0x00ab8e97791f0c59a553dac6098e18ec7969a6fe5301b98047bd22033d33d6f9", + "0x009dadff560ff0aa839555afbc9837940af1e8f64bf64d4d15903c53f4674b10", + "0x00552d853d003f61e87d8a9510b67901df4dd1b9fd3a7166089aed0d2fd145f6", + "0x005cbdb606b47661e6834bceccc9ee6f1aec359db59db9b55207549b59dd3f46", + "0x00751afaa9834cc2cd28ac86d0e9611ca7e79ed1b4e866b96b1455fe34084fe6", + "0x008666d98872090aef7f12ddfa11d7f1ed464003dfbb45a6c185b1bfeab6fcfd", + "0x006b788e6adb0ca6ea6bc57c639ecea5ece32e7b2b3c3dea5df628c1da180dca", + "0x002f006f1d593610e33b7f54f1cc02bb595bcadf2a2040acef6be5c1c4f6cefb", + "0x00cef445d17a33c4b484ebf20fc2007e6130becf1502a76e2dec4cd26a8b760c", + "0x00daf3a0896a6caab0029683bd1203a6d98c6dfcd22402c8a39fe83e411306e0" ] [previous_kernel_public_inputs.end.private_logs.contract_address] @@ -3438,24 +3438,24 @@ counter = "0x000000000000000000000000000000000000000000000000000000000000000a" [previous_kernel_public_inputs.end.private_logs.inner.log] fields = [ - "0x0a84c0c74d070988686b6e4e33505883346b33faf8897e97e2bbe6eb8f642e7f", - "0x2ac1f754cac335d429ba0c6df8a4e56c404f41fc9a94ce83f3a7ffb2384cff39", - "0x00003f18bc75061813817b5ae29b019571308fbb56c2921b5a5117897fe36e1a", - "0x006244af5fa9791f5aa2b1b540cd64ba6c8fcdd3cac2ca22740555a931149921", - "0x00f1825046b6145b3dccfb15a7691bbba969f3c49ec0e677cceadb3ed8b28d70", - "0x002aae689e36f05c6bd1af5b9070fad42d582014b894d21c088fa9a1eeb0b90a", - "0x0015661a055210f7f117d0fc33e55657cbf81462c80705edc7f60c7d6b1168f5", - "0x004ad81b013a54e6d7394ef3de768b264063c8face41c839b7729c9c6f3620da", - "0x004ed16486fedef3ce4f7c1169362e25016e908f8921f155b8561d4f98cdb60c", - "0x00caa05c7004577aafead5f03cec4e979bc19da4ef59363c0e61399174568340", - "0x004e059d9e99b2bc9026fdd0596b47e9b1d48577c046ccb9846c78201121517d", - "0x00e9b3caa1ea2a7a71e84c09ddad2b4f0c0d4a3adb1bb0cc12442f9bb177eac1", - "0x0052722bef71f7704316e9be39dee4053a095da715e1b9c3e7d791de0a1428a1", - "0x0007a1afdac348588495b00c42c993e0e1f1e9c2549f03ff6574e81b19006d4d", - "0x008361e9063f7f07b3fcea3dbe00d6e1c4966728b528220fc16b9938fbd727a4", - "0x002a0c01487ab950e56838e79da503d354e0d47585ee8629cdb6d05f7747ccc8", - "0x00f4cca811eea24eb2024a1160d63d230e806e5b67ab675eba82115414d5dcad", - "0x0070998657db54d309f0cfbfcbfe4ce8199ae9bad36fc2252c38154d6e7aaf0c" + "0x28e14108cf7d6c51657436814d8eff0e59afbc016dc78644383f6cf1df5f1835", + "0x09b2bb6462013186ec836afe3976d3cb3f067c42e2bfbedfe6c80a7aebdb06f7", + "0x0001902b1383e5c3784f94e7bde749322faeca10b8a380ed4d66d18acee3d2b8", + "0x0025160dfa77a8849cf217421882eb624f9417328d5c8ed27fdcb52c65c81eae", + "0x00435a83069c93173eee86c86ffdc6a4091ebf86331bfad574e3c35044c0ca9c", + "0x00aa4dee2f8bc0a240cac5b859387c7f68ae9dbeb147390dc554017b4c085773", + "0x00ab70d657a9f61225791f1fefc99937b894b45fabd75e162d0a5dc81fb916a9", + "0x00a4782284772770a00ad00e3ef7d3d11724120421df1b3939c87ab70da4381d", + "0x006d1c13b5e2d2586fdf9a9fec91c7d48960e623d92c74ca47dc25354d908cf0", + "0x00af8d53e4264e27df27495180ae90341a4d8658379600f7878a426ecb435691", + "0x00ad8a3f3d38c408e9499a8c71ccd186b6a2b08c1ad5b83a72b81c7a24344a91", + "0x00966afd0424ff544bd9a20b4f78f963d8cc93c8bbecc33ca36116422394f5e1", + "0x0028815998511c1908df89bed4b620fd969d9e3b6aaa051cc22feeb131b1f26e", + "0x00149d0dc6e33d70d13f715cef27a262d9a48081809435189344041f60a7630b", + "0x00a7f6c3d55f6c40688b6203fae3f50a41b6eab0d00d9df047abe8324fae1a19", + "0x00972556ce2fe45581174b6aebfe5c9af8761f3f23dd931ecea0d7a4458760b6", + "0x0049ebfe6a2761a3192e8e5bf45dd53e8db8dfa6bbc41d8e7e318ea696a11015", + "0x0075bcb37cf025ff0a2cc50c86aaf5bbb18f5c453eff9c49548e042cf975bc13" ] [previous_kernel_public_inputs.end.private_logs.contract_address] @@ -3468,24 +3468,24 @@ counter = "0x000000000000000000000000000000000000000000000000000000000000000b" [previous_kernel_public_inputs.end.private_logs.inner.log] fields = [ - "0x0cc635a10618537fa31cde0d86c55435bdabf5565b4b5bdb1e234ef75cab6cb5", - "0x18ae0433386fc14cc2b33df5800399aceb4e5339c562443038fde363b88acfd0", - "0x0000e3710600648f04ecc91f8c765d9b9ed522cd23dd76944789eba1db9a0f65", - "0x009f723fe4ca58f85b15a96c2fefb84a06dda426b6b5d15a0a4801590ce45b82", - "0x001097a37205b57862d5b06354697e84860232017896f827464fff6f32906257", - "0x00b4c61bb39c2c48075fe7526b6adeda939d5b8ca4fb4eacf0fee51d74e75c4c", - "0x0096c1fa68964ada00062ad0a0e3740aceda587b5b8c08606ddfbe83380a588f", - "0x00a64678a2e44ba0b43d48319f0ec0e2207cfca8de5339d09cba4fdb66a22295", - "0x00c5ce8466fea7c32d2251b19eceeb255ca3936bd685cfe254a26569d6012030", - "0x002bab892a37ed6ab7877cf8264bd0996ddb48f26af4cef9c623c8cabb2bcddf", - "0x0044a114e95570f5172d2f3af5cf7b440c6fe45b5dd15b151353a0ffa550fe8e", - "0x004c6361341c43797b6789acffcaa286605d90f29934fd1b54dc1ec716a3387f", - "0x00e58cf1c9bb62ee243f879ee44126f7ecfcb74844d2396c475bffdfe51d0079", - "0x0031a5deff207a4fcc08cf84afbc574364530365ab05615c59d6ca20ca9463f7", - "0x00403548ecbdb7c67268dced639138121b167c7b4543253bd051026008c2318c", - "0x0045aef83316fcb14c0b324e024d5e40b4d185bce14c6caa8b034215557f8b04", - "0x002a4520e5bd993cac0528d420933ec849d28eefd6250b453fd4460d917346de", - "0x00bb62585fc341042522bb7c5134fc39fb2e4f70e37bf7c388c67b17483ddfcf" + "0x1c474b1f863425761cc06bf8fcd3fc31e4a10440c03bd95c4d7bc4665b42ceba", + "0x1e503fdfa7460705ea519e194b02dbde0895dc18c60888147a0185b3d45445aa", + "0x00013f6032397e68948c5c7e2286641188d22eea3436149249e63896016e9dc1", + "0x0060e3d27353bdbd2d7182f46d7859fef235977b54f0ad6362e44d331045fde9", + "0x00b8ed22f25afec74754bf7d85f2c08fe1600b0ec1908ff5943f88f73e6954aa", + "0x0063713053b899a97f698dc8135c5e6af55534b6eee5687e2ea33032fe0bb238", + "0x000aaa5d01d6d69dc86c7f401fe207bed7dd67d89d0ce7d54a6fe5bb2f2b879c", + "0x008f06a747c4c5df72a7677ea76624e76c0f1ed2b240a52ad07b688daf681312", + "0x0013b08254aa3f1f1d0050c6cf286bd6687360bdb6508ba34db1af8a9e13def9", + "0x00c8575364ddf160a61d4e6052f65688999e13495b40dda884a7905510ca8250", + "0x006ba2b913d961acff70cccab5b4975b0767cc806052b9ea1d9747d15466fd0d", + "0x006d20c223aafddab275d4a5e680c6531a431ec73cf5c59c0be57c73236d0689", + "0x004de43069703e31933f6f1154d3c1180a7abbe8bcac3ced8a31512b018cdf53", + "0x00f8796bffd6dc3824a99d0544e32e7856ec432a4f76ac465fb7b0260f741d08", + "0x003298e3fabde03fa630df51018fc61b488a199eaf21653d81841d0e163a550b", + "0x00b85e1f87c6606a7ff130b57887a5da14408d0bdb2fddd8a3d2f1d54fba8006", + "0x00b2d24ad2f108368ba796326edc830736fa0153f99afaf6a52b134d26316815", + "0x00b5812b4e05cb801ea2a4b78a1a27e1f67098b56a61973cd7c54d74cbe5210f" ] [previous_kernel_public_inputs.end.private_logs.contract_address] @@ -4941,4 +4941,4 @@ end_side_effect_counter = "0x000000000000000000000000000000000000000000000000000 inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [previous_kernel_public_inputs.fee_payer] - inner = "0x0d276f24617f511e59fd25490f3cfbf48d2da5316bbe844093e4e2a81cd506bb" + inner = "0x2767f9570de8773ff9c0ee7316694a7959e85930a452a3b991946494c036e37f" diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-base-private/Prover.toml b/noir-projects/noir-protocol-circuits/crates/rollup-base-private/Prover.toml index ec5372720280..297d2da3ab16 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-base-private/Prover.toml +++ b/noir-projects/noir-protocol-circuits/crates/rollup-base-private/Prover.toml @@ -3,20 +3,20 @@ _is_some = true _value = "0x0000000000000000000000000000000000000000000000000000000000000e16" [inputs.tube_data.public_inputs.constants] -vk_tree_root = "0x0f41ca517c1c4dabab14d88d50dcbaa9638b23bfdbc28fa3a94d7260ef0c7427" -protocol_contract_tree_root = "0x0af0a7a13726bd13afe2a3fbfa52690c43ca774227d6c2bfe86fce93c387953a" +vk_tree_root = "0x18c54e1814ecadeffcd11feed9049f02d31148f4457ddcf84e4d580bbc5ccb0f" +protocol_contract_tree_root = "0x2098b90e2b21f02ad7a1fc6afcf944ef3685236caeb015b51a502471c492cdfb" [inputs.tube_data.public_inputs.constants.historical_header] - total_fees = "0x0000000000000000000000000000000000000000000000000000000152ca47ae" - total_mana_used = "0x00000000000000000000000000000000000000000000000000000000000190d9" + total_fees = "0x00000000000000000000000000000000000000000000000000000001419ea740" + total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000017cbd" [inputs.tube_data.public_inputs.constants.historical_header.last_archive] - root = "0x1b35d3693fceacad9c55613f198ade07687a8185638c482ab0163f78b142a5e5" + root = "0x0e8ef7f12683462ce5482c5c79c7a7bded4a0b57bd8233615b344388d0db6f39" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000006" [inputs.tube_data.public_inputs.constants.historical_header.content_commitment] num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" - blobs_hash = "0x0096c1e55b51be1e8bc9bb298b9ec7c371dd2c29bbbe22104ac8c77bbc898a47" + blobs_hash = "0x008c7cd47a688e5b2021e9f2b9dbcf7365dec5a004311ad5c5138303cf6d76f1" in_hash = "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -25,37 +25,37 @@ root = "0x2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000060" [inputs.tube_data.public_inputs.constants.historical_header.state.partial.note_hash_tree] -root = "0x1ded02f3086425317a03c41c7eef64de59bc94c1897f1913aa27ab4bcb0ebffa" +root = "0x1dee6637bc05b1fd02c2d8a42eab028959018f5b086d0637007ba626ab826e84" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000180" [inputs.tube_data.public_inputs.constants.historical_header.state.partial.nullifier_tree] -root = "0x098562545b0330d0811209e5288c5c475f226de51ac351a716cc1a6408c2b211" +root = "0x1a443dd12842b2c2f4fadbfa63351ff72577b12b0059bdc634ede1a83d51e5fa" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" [inputs.tube_data.public_inputs.constants.historical_header.state.partial.public_data_tree] -root = "0x13d83910c6484f046a8424f78fe7fa8d0366fe56a7ba2a5764cc8972f238cde9" +root = "0x189e9a705c609addf8f5c6dcac63e9a18ee30a94330b79656a1ee99b0c57fede" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" [inputs.tube_data.public_inputs.constants.historical_header.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000006" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000008" - timestamp = "0x00000000000000000000000000000000000000000000000000000000680687a3" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680783c5" [inputs.tube_data.public_inputs.constants.historical_header.global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [inputs.tube_data.public_inputs.constants.historical_header.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.tube_data.public_inputs.constants.historical_header.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000d85e" + fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000d840" [inputs.tube_data.public_inputs.constants.tx_context] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" [inputs.tube_data.public_inputs.constants.tx_context.gas_settings.gas_limits] da_gas = "0x000000000000000000000000000000000000000000000000000000003b9aca00" @@ -67,7 +67,7 @@ l2_gas = "0x00000000000000000000000000000000000000000000000000000000005b8d80" [inputs.tube_data.public_inputs.constants.tx_context.gas_settings.max_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" -fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000002fd0" +fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000002fc1" [inputs.tube_data.public_inputs.constants.tx_context.gas_settings.max_priority_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -75,8 +75,8 @@ fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000 [inputs.tube_data.public_inputs.end] note_hashes = [ - "0x0bd1ddd7859c449367cf30d27bb71b4c385b168ee24895ffc04a949546fa039f", - "0x1cf1c8df20f5b69db9699a64d3791617f52d13353035bd46aa747e45416973f5", + "0x14bc1195bc5381f55ca5407a68446a155af2ad9babe64a32767439bb441e27da", + "0x26cbe752d2d21f185b53b4429ff623ff3786f2cd329975b247be8e4aff475ee0", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -141,8 +141,8 @@ note_hashes = [ "0x0000000000000000000000000000000000000000000000000000000000000000" ] nullifiers = [ - "0x21ffbca5e229ce1c97c32c088eae7789a726999430cc02a5410f5fd505b82f67", - "0x1033b67e693da924ffe977f44cf6480f5d4dccdf22a6f8a617da825a175e5be3", + "0x0a16a75643092d5aef61c9eb71ff79714f17615f924f1ba3fa5a547816549f2c", + "0x1dc77bf6a744218be035b1f422882d9e70c1b4a8ac401584f8aad032c5219ef4", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -297,68 +297,68 @@ inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [[inputs.tube_data.public_inputs.end.private_logs]] fields = [ - "0x2d47bd152464f3b9fd83f7c5db740e1d906c8050eca66b1d150bc0db048e5b96", - "0x26f8b0a768057d35b7c1b7c2a9fc4fe9aea25855b0d0a9cf1c9ea84222175031", - "0x000112cecd3f7f5b8863e9a1a4150215d09fa6343912e8490c5481ae03f7dd3a", - "0x00c833a0a2e90d5be6bc8701e2e58d8a5512869f432b8a0c4ace11f2c0b955ce", - "0x0031dd8b4de06be63607f6d68944cfd8dbbc9cdbac3f220a8004c906f43f1e77", - "0x006f7f4232cb0c680efcb25c2791801c43dc0dd69b313eadf95a21d7ef0901af", - "0x006e788a00132f3c8f52c46cb0354b9497d2f0079beff0d9dfe1a92b84aeb3d4", - "0x006a7408f6d6f57a9123183836d1b8c27abfb3af273c63dc0cdd7caeecd4bbac", - "0x001929e884949d6b28398d08e0210e608ce7d20c2add1ee6a94b7774440c937e", - "0x000ea023fbb8a9532ff6d819dee5add4e40f5b9cc7c9409804e623d01a853813", - "0x00971e47445a7d7c9b635ec65ad792190789fc457232b2b145b1b1b2559223ca", - "0x000f154a04f33e32bbfb6f76720052c3b852053beb2ae30054ebdd21a999179a", - "0x0038d6d096641de7e38dc0b759cc90001298497a6f369416a212ffac05d59e9f", - "0x000999ef07793e4dfc90eb91a2c208eedd06f9353116a7b82c873130a4745615", - "0x003f9015f395231c604a8bc8a25bce7c8105ce67d86a916941371f6a06d12f2e", - "0x0064073091b1b2de1dc002265d59591384ebd8be66ad7c2a10a7fc526a07bf17", - "0x000d8f22336b46cd25b25994f5e7ee4680a56d73b79be303a4d35d268f57f119", - "0x0010c067a4ebe93de8a3201c1fa91e776432def667db13d14a17979dc1c7c61b" + "0x023d7ef2c9e59b863ea34228397589b6eedc5ad03bb29b3df0c23616e87a55f3", + "0x0e0fcb4369064bab84d2d7df3c351ab602f6362863a467b6c165daf0cbe87a5f", + "0x000141157cd8317ee909b6040fc21bcd74de9e0465c060b431786c704f3bfaf6", + "0x00d495ffbd02b9dc1e6a28b48b267a2568f6e0683dedd614f8ea29b70917c154", + "0x00e3fecc32f00c5f3d36ce22d3aae11757871c90098d2c4b30686e118af2903c", + "0x00e53b1bc2515033b82693c46bcc50b0093086fcbd8af596f60b34dae808e6e4", + "0x00bc4269217739ff39868fe4e63df8786ac81a4ad0532133d8e13b0d6a49b722", + "0x00c04a5bd90cfdfd50ddb0c4d03919d2450f33885f79f8d60b60f80a54e19ab7", + "0x00ab8e97791f0c59a553dac6098e18ec7969a6fe5301b98047bd22033d33d6f9", + "0x009dadff560ff0aa839555afbc9837940af1e8f64bf64d4d15903c53f4674b10", + "0x00552d853d003f61e87d8a9510b67901df4dd1b9fd3a7166089aed0d2fd145f6", + "0x005cbdb606b47661e6834bceccc9ee6f1aec359db59db9b55207549b59dd3f46", + "0x00751afaa9834cc2cd28ac86d0e9611ca7e79ed1b4e866b96b1455fe34084fe6", + "0x008666d98872090aef7f12ddfa11d7f1ed464003dfbb45a6c185b1bfeab6fcfd", + "0x006b788e6adb0ca6ea6bc57c639ecea5ece32e7b2b3c3dea5df628c1da180dca", + "0x002f006f1d593610e33b7f54f1cc02bb595bcadf2a2040acef6be5c1c4f6cefb", + "0x00cef445d17a33c4b484ebf20fc2007e6130becf1502a76e2dec4cd26a8b760c", + "0x00daf3a0896a6caab0029683bd1203a6d98c6dfcd22402c8a39fe83e411306e0" ] [[inputs.tube_data.public_inputs.end.private_logs]] fields = [ - "0x0a84c0c74d070988686b6e4e33505883346b33faf8897e97e2bbe6eb8f642e7f", - "0x2ac1f754cac335d429ba0c6df8a4e56c404f41fc9a94ce83f3a7ffb2384cff39", - "0x00003f18bc75061813817b5ae29b019571308fbb56c2921b5a5117897fe36e1a", - "0x006244af5fa9791f5aa2b1b540cd64ba6c8fcdd3cac2ca22740555a931149921", - "0x00f1825046b6145b3dccfb15a7691bbba969f3c49ec0e677cceadb3ed8b28d70", - "0x002aae689e36f05c6bd1af5b9070fad42d582014b894d21c088fa9a1eeb0b90a", - "0x0015661a055210f7f117d0fc33e55657cbf81462c80705edc7f60c7d6b1168f5", - "0x004ad81b013a54e6d7394ef3de768b264063c8face41c839b7729c9c6f3620da", - "0x004ed16486fedef3ce4f7c1169362e25016e908f8921f155b8561d4f98cdb60c", - "0x00caa05c7004577aafead5f03cec4e979bc19da4ef59363c0e61399174568340", - "0x004e059d9e99b2bc9026fdd0596b47e9b1d48577c046ccb9846c78201121517d", - "0x00e9b3caa1ea2a7a71e84c09ddad2b4f0c0d4a3adb1bb0cc12442f9bb177eac1", - "0x0052722bef71f7704316e9be39dee4053a095da715e1b9c3e7d791de0a1428a1", - "0x0007a1afdac348588495b00c42c993e0e1f1e9c2549f03ff6574e81b19006d4d", - "0x008361e9063f7f07b3fcea3dbe00d6e1c4966728b528220fc16b9938fbd727a4", - "0x002a0c01487ab950e56838e79da503d354e0d47585ee8629cdb6d05f7747ccc8", - "0x00f4cca811eea24eb2024a1160d63d230e806e5b67ab675eba82115414d5dcad", - "0x0070998657db54d309f0cfbfcbfe4ce8199ae9bad36fc2252c38154d6e7aaf0c" + "0x28e14108cf7d6c51657436814d8eff0e59afbc016dc78644383f6cf1df5f1835", + "0x09b2bb6462013186ec836afe3976d3cb3f067c42e2bfbedfe6c80a7aebdb06f7", + "0x0001902b1383e5c3784f94e7bde749322faeca10b8a380ed4d66d18acee3d2b8", + "0x0025160dfa77a8849cf217421882eb624f9417328d5c8ed27fdcb52c65c81eae", + "0x00435a83069c93173eee86c86ffdc6a4091ebf86331bfad574e3c35044c0ca9c", + "0x00aa4dee2f8bc0a240cac5b859387c7f68ae9dbeb147390dc554017b4c085773", + "0x00ab70d657a9f61225791f1fefc99937b894b45fabd75e162d0a5dc81fb916a9", + "0x00a4782284772770a00ad00e3ef7d3d11724120421df1b3939c87ab70da4381d", + "0x006d1c13b5e2d2586fdf9a9fec91c7d48960e623d92c74ca47dc25354d908cf0", + "0x00af8d53e4264e27df27495180ae90341a4d8658379600f7878a426ecb435691", + "0x00ad8a3f3d38c408e9499a8c71ccd186b6a2b08c1ad5b83a72b81c7a24344a91", + "0x00966afd0424ff544bd9a20b4f78f963d8cc93c8bbecc33ca36116422394f5e1", + "0x0028815998511c1908df89bed4b620fd969d9e3b6aaa051cc22feeb131b1f26e", + "0x00149d0dc6e33d70d13f715cef27a262d9a48081809435189344041f60a7630b", + "0x00a7f6c3d55f6c40688b6203fae3f50a41b6eab0d00d9df047abe8324fae1a19", + "0x00972556ce2fe45581174b6aebfe5c9af8761f3f23dd931ecea0d7a4458760b6", + "0x0049ebfe6a2761a3192e8e5bf45dd53e8db8dfa6bbc41d8e7e318ea696a11015", + "0x0075bcb37cf025ff0a2cc50c86aaf5bbb18f5c453eff9c49548e042cf975bc13" ] [[inputs.tube_data.public_inputs.end.private_logs]] fields = [ - "0x0cc635a10618537fa31cde0d86c55435bdabf5565b4b5bdb1e234ef75cab6cb5", - "0x18ae0433386fc14cc2b33df5800399aceb4e5339c562443038fde363b88acfd0", - "0x0000e3710600648f04ecc91f8c765d9b9ed522cd23dd76944789eba1db9a0f65", - "0x009f723fe4ca58f85b15a96c2fefb84a06dda426b6b5d15a0a4801590ce45b82", - "0x001097a37205b57862d5b06354697e84860232017896f827464fff6f32906257", - "0x00b4c61bb39c2c48075fe7526b6adeda939d5b8ca4fb4eacf0fee51d74e75c4c", - "0x0096c1fa68964ada00062ad0a0e3740aceda587b5b8c08606ddfbe83380a588f", - "0x00a64678a2e44ba0b43d48319f0ec0e2207cfca8de5339d09cba4fdb66a22295", - "0x00c5ce8466fea7c32d2251b19eceeb255ca3936bd685cfe254a26569d6012030", - "0x002bab892a37ed6ab7877cf8264bd0996ddb48f26af4cef9c623c8cabb2bcddf", - "0x0044a114e95570f5172d2f3af5cf7b440c6fe45b5dd15b151353a0ffa550fe8e", - "0x004c6361341c43797b6789acffcaa286605d90f29934fd1b54dc1ec716a3387f", - "0x00e58cf1c9bb62ee243f879ee44126f7ecfcb74844d2396c475bffdfe51d0079", - "0x0031a5deff207a4fcc08cf84afbc574364530365ab05615c59d6ca20ca9463f7", - "0x00403548ecbdb7c67268dced639138121b167c7b4543253bd051026008c2318c", - "0x0045aef83316fcb14c0b324e024d5e40b4d185bce14c6caa8b034215557f8b04", - "0x002a4520e5bd993cac0528d420933ec849d28eefd6250b453fd4460d917346de", - "0x00bb62585fc341042522bb7c5134fc39fb2e4f70e37bf7c388c67b17483ddfcf" + "0x1c474b1f863425761cc06bf8fcd3fc31e4a10440c03bd95c4d7bc4665b42ceba", + "0x1e503fdfa7460705ea519e194b02dbde0895dc18c60888147a0185b3d45445aa", + "0x00013f6032397e68948c5c7e2286641188d22eea3436149249e63896016e9dc1", + "0x0060e3d27353bdbd2d7182f46d7859fef235977b54f0ad6362e44d331045fde9", + "0x00b8ed22f25afec74754bf7d85f2c08fe1600b0ec1908ff5943f88f73e6954aa", + "0x0063713053b899a97f698dc8135c5e6af55534b6eee5687e2ea33032fe0bb238", + "0x000aaa5d01d6d69dc86c7f401fe207bed7dd67d89d0ce7d54a6fe5bb2f2b879c", + "0x008f06a747c4c5df72a7677ea76624e76c0f1ed2b240a52ad07b688daf681312", + "0x0013b08254aa3f1f1d0050c6cf286bd6687360bdb6508ba34db1af8a9e13def9", + "0x00c8575364ddf160a61d4e6052f65688999e13495b40dda884a7905510ca8250", + "0x006ba2b913d961acff70cccab5b4975b0767cc806052b9ea1d9747d15466fd0d", + "0x006d20c223aafddab275d4a5e680c6531a431ec73cf5c59c0be57c73236d0689", + "0x004de43069703e31933f6f1154d3c1180a7abbe8bcac3ced8a31512b018cdf53", + "0x00f8796bffd6dc3824a99d0544e32e7856ec432a4f76ac465fb7b0260f741d08", + "0x003298e3fabde03fa630df51018fc61b488a199eaf21653d81841d0e163a550b", + "0x00b85e1f87c6606a7ff130b57887a5da14408d0bdb2fddd8a3d2f1d54fba8006", + "0x00b2d24ad2f108368ba796326edc830736fa0153f99afaf6a52b134d26316815", + "0x00b5812b4e05cb801ea2a4b78a1a27e1f67098b56a61973cd7c54d74cbe5210f" ] [[inputs.tube_data.public_inputs.end.private_logs]] @@ -1013,7 +1013,7 @@ da_gas = "0x0000000000000000000000000000000000000000000000000000000000007c00" l2_gas = "0x0000000000000000000000000000000000000000000000000000000000004a40" [inputs.tube_data.public_inputs.fee_payer] -inner = "0x0d276f24617f511e59fd25490f3cfbf48d2da5316bbe844093e4e2a81cd506bb" +inner = "0x2767f9570de8773ff9c0ee7316694a7959e85930a452a3b991946494c036e37f" [inputs.tube_data.proof] fields = [ @@ -1558,9 +1558,9 @@ fields = [ vk_index = "0x0000000000000000000000000000000000000000000000000000000000000004" vk_path = [ "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x1d8c427c61b62538ccfd3a7865bd7d63d31db6952c5068ceac413dedfe40da78", + "0x157fcd65138221a77db675de5f924aad7f4c48affaf85acd249ba1bc9746587b", "0x07c008584a3bc294cfed5d5a726d88e5ce8be9a34100232e67e6b790e0a2905e", - "0x1392b27d933b41fb9e36e29ac5d45040893997a526088cfa50d707fc2d5fa986", + "0x1a8c157a307350dc57f06625e220057348008c02bc50c04154826acb1153bb77", "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] @@ -1700,15 +1700,15 @@ vk_path = [ hash = "0x0000000000000000000000000000000000000000000000000000000000000002" [inputs.start.note_hash_tree] -root = "0x1ded02f3086425317a03c41c7eef64de59bc94c1897f1913aa27ab4bcb0ebffa" +root = "0x1dee6637bc05b1fd02c2d8a42eab028959018f5b086d0637007ba626ab826e84" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000180" [inputs.start.nullifier_tree] -root = "0x098562545b0330d0811209e5288c5c475f226de51ac351a716cc1a6408c2b211" +root = "0x1a443dd12842b2c2f4fadbfa63351ff72577b12b0059bdc634ede1a83d51e5fa" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" [inputs.start.public_data_tree] -root = "0x13d83910c6484f046a8424f78fe7fa8d0366fe56a7ba2a5764cc8972f238cde9" +root = "0x189e9a705c609addf8f5c6dcac63e9a18ee30a94330b79656a1ee99b0c57fede" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" [inputs.start_sponge_blob] @@ -1732,8 +1732,8 @@ expected_fields = "0x00000000000000000000000000000000000000000000000000000000000 [inputs.state_diff_hints] sorted_nullifiers = [ - "0x21ffbca5e229ce1c97c32c088eae7789a726999430cc02a5410f5fd505b82f67", - "0x1033b67e693da924ffe977f44cf6480f5d4dccdf22a6f8a617da825a175e5be3", + "0x1dc77bf6a744218be035b1f422882d9e70c1b4a8ac401584f8aad032c5219ef4", + "0x0a16a75643092d5aef61c9eb71ff79714f17615f924f1ba3fa5a547816549f2c", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -1798,8 +1798,8 @@ sorted_nullifiers = [ "0x0000000000000000000000000000000000000000000000000000000000000000" ] sorted_nullifier_indexes = [ - "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000001", + "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000003", "0x0000000000000000000000000000000000000000000000000000000000000004", @@ -1865,8 +1865,8 @@ sorted_nullifier_indexes = [ ] note_hash_subtree_sibling_path = [ "0x01c28fe1059ae0237b72334700697bdf465e03df03986fe05200cadeda66bd76", - "0x1fd134f0f497f7d3b251a8a754182f841d7631a24af92dcd4962095910b3838b", - "0x23a93d128fb077ee68bdd41e7ac608d16d4113bf135ef3eca4659a7f6af49e76", + "0x1e7609fe4de5e93a7ef16d8bd2d5a5384a07f11cdce5ad542be62e8422410e7d", + "0x282d4df140c87ac440248b7b9a749105c3c9013b787a05d9c67cd51e29613551", "0x1849b85f3c693693e732dfc4577217acc18295193bede09ce8b97ad910310972", "0x2a775ea761d20435b31fa2c33ff07663e24542ffb9e7b293dfce3042eb104686", "0x0f320b0703439a8114f81593de99cd0b8f3b9bf854601abb5b2ea0e8a3dda4a7", @@ -1903,7 +1903,7 @@ nullifier_subtree_sibling_path = [ "0x01c28fe1059ae0237b72334700697bdf465e03df03986fe05200cadeda66bd76", "0x2d78ed82f93b61ba718b17c2dfe5b52375b4d37cbbed6f1fc98b47614b0cf21b", "0x067243231eddf4222f3911defbba7705aff06ed45960b27f6f91319196ef97e1", - "0x13454532928108c8ccc3414aa3ee0df540051a760c5d0667520dd2ed681c17d8", + "0x0fbcbb9b34cfd7276b0e1db6e3ba46f49c2c34c1c6b0b122e916f812fb75ca73", "0x2a775ea761d20435b31fa2c33ff07663e24542ffb9e7b293dfce3042eb104686", "0x0f320b0703439a8114f81593de99cd0b8f3b9bf854601abb5b2ea0e8a3dda4a7", "0x0d07f6e7a8a0e9199d6d92801fff867002ff5b4808962f9da2ba5ce1bdd26a73", @@ -1979,14 +1979,14 @@ fee_write_sibling_path = [ ] [[inputs.state_diff_hints.nullifier_predecessor_preimages]] - nullifier = "0x1c7e2f96951bc3d73893c8f9ebd0cabe02b53f182a470d2da253ee478726e2ab" - next_nullifier = "0x2572dba34f05a996d703182af0dee9f05e8c00fd18896a925527824277a9f40c" - next_index = "0x0000000000000000000000000000000000000000000000000000000000000143" + nullifier = "0x1c3fd8f2385e15ac09de5bb30640cbd8bbb477d1422180142f63bf4174f3b565" + next_nullifier = "0x21a80bde4d564139f5de2759767b860e1840b842b310e8ea614be7e32a43acd4" + next_index = "0x00000000000000000000000000000000000000000000000000000000000000c0" [[inputs.state_diff_hints.nullifier_predecessor_preimages]] - nullifier = "0x0f98f01f895c362d031b7f7547252bbb81d2875fdd17fa8e04e57a9a10061d87" - next_nullifier = "0x131a7e74a6f5c7ba65130ab8d1603bb934b6994332e2642fba1b32237f9b580f" - next_index = "0x00000000000000000000000000000000000000000000000000000000000000c0" + nullifier = "0x02d93b27079cb3b61daa0654671becf996c73457bb404ee8611dd6d5f686711f" + next_nullifier = "0x0b3af10cac0833f0cdde483d733fe363579e8ff703cac8b2622217d45fd85f71" + next_index = "0x0000000000000000000000000000000000000000000000000000000000000141" [[inputs.state_diff_hints.nullifier_predecessor_preimages]] nullifier = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -2299,17 +2299,17 @@ fee_write_sibling_path = [ next_index = "0x0000000000000000000000000000000000000000000000000000000000000000" [[inputs.state_diff_hints.nullifier_predecessor_membership_witnesses]] - leaf_index = "130" + leaf_index = "448" sibling_path = [ "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x08c655ce5da1dc8b07d32975ed2a788b7ab68a298b1dd1b7ea606ab0949b46dd", + "0x0b63a53787021a4a962a452c2921b3663aff1ffd8d5510540f8e659e782956f1", "0x0e34ac2c09f45a503d2908bcb12f1cbae5fa4065759c88d501c097506a8b2290", "0x21f9172d72fdcdafc312eee05cf5092980dda821da5b760a9fb8dbdf607c8a20", "0x2373ea368857ec7af97e7b470d705848e2bf93ed7bef142a490f2119bcf82d8e", "0x120157cfaaa49ce3da30f8b47879114977c24b266d58b0ac18b325d878aafddf", - "0x147bd9e68959a9821356a74dd05a684543f8bca98b52e91ec43dfc817bd7a33a", - "0x070f3d0a9c519968ea6b78a6b9650f9188c9f8cfc30a1c8462ac7cb0248d3393", - "0x2f1d1fd680b1b7d6a2e7ac2f2224e9e5842faeb59e4e5ac2e633fc7cd7e49464", + "0x2792e2d0f37c682b73c54c88bc298df7502054fd8ff68d66466140457f1fd871", + "0x1a734826345a47507df737e1126350f56d32e85a0ac5798f89927da90e31b6bb", + "0x11ffe764109e9b81dc3037f73aaa822a5be82168e1b26fc2c25a2708a82971c4", "0x1849b85f3c693693e732dfc4577217acc18295193bede09ce8b97ad910310972", "0x2a775ea761d20435b31fa2c33ff07663e24542ffb9e7b293dfce3042eb104686", "0x0f320b0703439a8114f81593de99cd0b8f3b9bf854601abb5b2ea0e8a3dda4a7", @@ -2344,17 +2344,17 @@ fee_write_sibling_path = [ ] [[inputs.state_diff_hints.nullifier_predecessor_membership_witnesses]] - leaf_index = "257" + leaf_index = "384" sibling_path = [ - "0x21d62a9c0b762ece8e429c5c8f3cefcbbd6a9da4cbb46d6d626f39abcf2c6b8e", - "0x2f2fd0850b665ed5ad7ffdd5475a8b65abee1da4a517dbff27bc75146e02159e", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0b63a53787021a4a962a452c2921b3663aff1ffd8d5510540f8e659e782956f1", "0x0e34ac2c09f45a503d2908bcb12f1cbae5fa4065759c88d501c097506a8b2290", "0x21f9172d72fdcdafc312eee05cf5092980dda821da5b760a9fb8dbdf607c8a20", "0x2373ea368857ec7af97e7b470d705848e2bf93ed7bef142a490f2119bcf82d8e", "0x120157cfaaa49ce3da30f8b47879114977c24b266d58b0ac18b325d878aafddf", - "0x261d6ed6e7f9f403a5ed4c6d68a74835a9a06ab5417b7a7adf8556df195f8b40", - "0x2ab94c9ef232cdcb4e11dcee672790e6c5cf1ea9baeff79a38e3fc4427abc8ba", - "0x2a7ec6e32d5bf35f912b4b24605018a9a5a3222c27abace066f7e62958dd6195", + "0x1f4bbd8fbaf6a6cf187b730b5a23cfc1eca58c46a5dfd6988a62c6251c6cbd69", + "0x1a734826345a47507df737e1126350f56d32e85a0ac5798f89927da90e31b6bb", + "0x11ffe764109e9b81dc3037f73aaa822a5be82168e1b26fc2c25a2708a82971c4", "0x1849b85f3c693693e732dfc4577217acc18295193bede09ce8b97ad910310972", "0x2a775ea761d20435b31fa2c33ff07663e24542ffb9e7b293dfce3042eb104686", "0x0f320b0703439a8114f81593de99cd0b8f3b9bf854601abb5b2ea0e8a3dda4a7", @@ -5179,22 +5179,22 @@ fee_write_sibling_path = [ ] [inputs.state_diff_hints.fee_write_low_leaf_preimage] - slot = "0x00cb2426dd7547fb371e50b1861ce295c8850a11cd5546aefafe62002801af77" - value = "0x00000000000000000000000000000000000000000000021e19e0c9b0bce2512a" - next_slot = "0x00ef626a2d754ca66f1cdf8bcd43c9b8bd0ed122c64d129b293fda195b05e77c" - next_index = "0x0000000000000000000000000000000000000000000000000000000000000076" + slot = "0x18d96139c7e5ebed33c1dcef805f02ca611ca80bb132169d411007c8b4d4d654" + value = "0x00000000000000000000000000000000000000000000021e19e0c9b139a02200" + next_slot = "0x1f74454e00a43255852e0c0ee27b1b4f6885228001816e31fa714f84cd8190eb" + next_index = "0x000000000000000000000000000000000000000000000000000000000000007c" [inputs.state_diff_hints.fee_write_low_leaf_membership_witness] - leaf_index = "117" + leaf_index = "123" sibling_path = [ - "0x0ff8a7d2d98429a132143abb1e2604ef548907749b22d174c4e6279a7b9ef57b", - "0x080c2f62f330e02997a8b0e00feea0ee2c1bf3f1b6cf45e448d699d71bed22b1", - "0x29208ecc66c5a3f559855bd44866e51a9e1b053fe1b60786941ab50664c75667", - "0x23e4460cf7776add5233a7055e846f9dc85fb9b3ff10250c26edd462929a6e63", + "0x07988581a56b702ad173d70cce2b448976d4deafc7d3bc7db1f3f1daa1494d1c", + "0x085c75add16287a6372035bae05f03c5afad9be78d42fc5ed33cc48668dd3b50", + "0x21cafa16a468960518428c8f3cda8877d6de6568292ee17b172f36960d9fdd10", + "0x08d0c5d646c63627348c77589b1c8121104b01023654deed5c0e5b7fdcc299b0", "0x179d7b5df7a65a4bdda408605c069b3ea175a5f4e2b0fccc9f2ebcb5d12c7c28", "0x19e2b3449d24e57ea4d6948048220d0756f93b6aaca968960b173df69903160a", "0x1a35cf71ad31b7058db0cec41776442412ccd9f75276205dcd8fd0ffc4bbfaab", - "0x1a2e536dfad1ca25daa2c5732dfcf14e550f696176a4f04bf5fda8f70ff4beb7", + "0x1f6530bcb070a2a82b07f777efd4131537da992f8961b36c668e8d9e8617d7cf", "0x067243231eddf4222f3911defbba7705aff06ed45960b27f6f91319196ef97e1", "0x1849b85f3c693693e732dfc4577217acc18295193bede09ce8b97ad910310972", "0x2a775ea761d20435b31fa2c33ff07663e24542ffb9e7b293dfce3042eb104686", @@ -5230,20 +5230,20 @@ fee_write_sibling_path = [ ] [inputs.fee_payer_fee_juice_balance_read_hint] -leaf_slot = "0x00cb2426dd7547fb371e50b1861ce295c8850a11cd5546aefafe62002801af77" -value = "0x00000000000000000000000000000000000000000000021e19e0c9b0bce2512a" +leaf_slot = "0x18d96139c7e5ebed33c1dcef805f02ca611ca80bb132169d411007c8b4d4d654" +value = "0x00000000000000000000000000000000000000000000021e19e0c9b139a02200" [inputs.fee_payer_fee_juice_balance_read_hint.membership_witness] - leaf_index = "117" + leaf_index = "123" sibling_path = [ - "0x0ff8a7d2d98429a132143abb1e2604ef548907749b22d174c4e6279a7b9ef57b", - "0x080c2f62f330e02997a8b0e00feea0ee2c1bf3f1b6cf45e448d699d71bed22b1", - "0x29208ecc66c5a3f559855bd44866e51a9e1b053fe1b60786941ab50664c75667", - "0x23e4460cf7776add5233a7055e846f9dc85fb9b3ff10250c26edd462929a6e63", + "0x07988581a56b702ad173d70cce2b448976d4deafc7d3bc7db1f3f1daa1494d1c", + "0x085c75add16287a6372035bae05f03c5afad9be78d42fc5ed33cc48668dd3b50", + "0x21cafa16a468960518428c8f3cda8877d6de6568292ee17b172f36960d9fdd10", + "0x08d0c5d646c63627348c77589b1c8121104b01023654deed5c0e5b7fdcc299b0", "0x179d7b5df7a65a4bdda408605c069b3ea175a5f4e2b0fccc9f2ebcb5d12c7c28", "0x19e2b3449d24e57ea4d6948048220d0756f93b6aaca968960b173df69903160a", "0x1a35cf71ad31b7058db0cec41776442412ccd9f75276205dcd8fd0ffc4bbfaab", - "0x1a2e536dfad1ca25daa2c5732dfcf14e550f696176a4f04bf5fda8f70ff4beb7", + "0x1f6530bcb070a2a82b07f777efd4131537da992f8961b36c668e8d9e8617d7cf", "0x067243231eddf4222f3911defbba7705aff06ed45960b27f6f91319196ef97e1", "0x1849b85f3c693693e732dfc4577217acc18295193bede09ce8b97ad910310972", "0x2a775ea761d20435b31fa2c33ff07663e24542ffb9e7b293dfce3042eb104686", @@ -5279,17 +5279,17 @@ value = "0x00000000000000000000000000000000000000000000021e19e0c9b0bce2512a" ] [inputs.fee_payer_fee_juice_balance_read_hint.leaf_preimage] - slot = "0x00cb2426dd7547fb371e50b1861ce295c8850a11cd5546aefafe62002801af77" - value = "0x00000000000000000000000000000000000000000000021e19e0c9b0bce2512a" - next_slot = "0x00ef626a2d754ca66f1cdf8bcd43c9b8bd0ed122c64d129b293fda195b05e77c" - next_index = "0x0000000000000000000000000000000000000000000000000000000000000076" + slot = "0x18d96139c7e5ebed33c1dcef805f02ca611ca80bb132169d411007c8b4d4d654" + value = "0x00000000000000000000000000000000000000000000021e19e0c9b139a02200" + next_slot = "0x1f74454e00a43255852e0c0ee27b1b4f6885228001816e31fa714f84cd8190eb" + next_index = "0x000000000000000000000000000000000000000000000000000000000000007c" [inputs.archive_root_membership_witness] leaf_index = "6" sibling_path = [ "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x1d49fc6a5c2e4bd074660e492d14e8c2874309ccccc076f837c29bb718f8f92f", - "0x028b47cd0b3bb4cfb305df9476a4af84a3723a86c9f2cb032f29de070017dc01", + "0x1428c191da00ae9e6328322750fa77bbf6c5b2dd70ee3c219a39f0f1e9784b81", + "0x2ae950126da08ba15878702e2394c18a583d27e508fe0ababc036b9fc66f1fa0", "0x21f9172d72fdcdafc312eee05cf5092980dda821da5b760a9fb8dbdf607c8a20", "0x2373ea368857ec7af97e7b470d705848e2bf93ed7bef142a490f2119bcf82d8e", "0x120157cfaaa49ce3da30f8b47879114977c24b266d58b0ac18b325d878aafddf", @@ -8346,26 +8346,26 @@ fields = [ inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.constants] -vk_tree_root = "0x0f41ca517c1c4dabab14d88d50dcbaa9638b23bfdbc28fa3a94d7260ef0c7427" -protocol_contract_tree_root = "0x0af0a7a13726bd13afe2a3fbfa52690c43ca774227d6c2bfe86fce93c387953a" +vk_tree_root = "0x18c54e1814ecadeffcd11feed9049f02d31148f4457ddcf84e4d580bbc5ccb0f" +protocol_contract_tree_root = "0x2098b90e2b21f02ad7a1fc6afcf944ef3685236caeb015b51a502471c492cdfb" [inputs.constants.last_archive] - root = "0x05c542a9aadd68598f9f32cc066dc9e71519fdd09d3bb25917721220c3ffe99d" + root = "0x01f3f9528860628e391a0775aa92501d300cbdf884e49318747dc9c8c4be2670" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000007" [inputs.constants.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000007" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000012" - timestamp = "0x0000000000000000000000000000000000000000000000000000000068068893" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680784b5" [inputs.constants.global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [inputs.constants.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.constants.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fe0" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fd6" diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-base-public/Prover.toml b/noir-projects/noir-protocol-circuits/crates/rollup-base-public/Prover.toml index 14424b17ea99..b2086723336e 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-base-public/Prover.toml +++ b/noir-projects/noir-protocol-circuits/crates/rollup-base-public/Prover.toml @@ -1,18 +1,18 @@ [inputs.tube_data.public_inputs.constants] -vk_tree_root = "0x0f41ca517c1c4dabab14d88d50dcbaa9638b23bfdbc28fa3a94d7260ef0c7427" -protocol_contract_tree_root = "0x0af0a7a13726bd13afe2a3fbfa52690c43ca774227d6c2bfe86fce93c387953a" +vk_tree_root = "0x18c54e1814ecadeffcd11feed9049f02d31148f4457ddcf84e4d580bbc5ccb0f" +protocol_contract_tree_root = "0x2098b90e2b21f02ad7a1fc6afcf944ef3685236caeb015b51a502471c492cdfb" [inputs.tube_data.public_inputs.constants.historical_header] - total_fees = "0x0000000000000000000000000000000000000000000000000000000152ca47ae" - total_mana_used = "0x00000000000000000000000000000000000000000000000000000000000190d9" + total_fees = "0x00000000000000000000000000000000000000000000000000000001419ea740" + total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000017cbd" [inputs.tube_data.public_inputs.constants.historical_header.last_archive] - root = "0x1b35d3693fceacad9c55613f198ade07687a8185638c482ab0163f78b142a5e5" + root = "0x0e8ef7f12683462ce5482c5c79c7a7bded4a0b57bd8233615b344388d0db6f39" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000006" [inputs.tube_data.public_inputs.constants.historical_header.content_commitment] num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" - blobs_hash = "0x0096c1e55b51be1e8bc9bb298b9ec7c371dd2c29bbbe22104ac8c77bbc898a47" + blobs_hash = "0x008c7cd47a688e5b2021e9f2b9dbcf7365dec5a004311ad5c5138303cf6d76f1" in_hash = "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -21,37 +21,37 @@ root = "0x2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000060" [inputs.tube_data.public_inputs.constants.historical_header.state.partial.note_hash_tree] -root = "0x1ded02f3086425317a03c41c7eef64de59bc94c1897f1913aa27ab4bcb0ebffa" +root = "0x1dee6637bc05b1fd02c2d8a42eab028959018f5b086d0637007ba626ab826e84" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000180" [inputs.tube_data.public_inputs.constants.historical_header.state.partial.nullifier_tree] -root = "0x098562545b0330d0811209e5288c5c475f226de51ac351a716cc1a6408c2b211" +root = "0x1a443dd12842b2c2f4fadbfa63351ff72577b12b0059bdc634ede1a83d51e5fa" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" [inputs.tube_data.public_inputs.constants.historical_header.state.partial.public_data_tree] -root = "0x13d83910c6484f046a8424f78fe7fa8d0366fe56a7ba2a5764cc8972f238cde9" +root = "0x189e9a705c609addf8f5c6dcac63e9a18ee30a94330b79656a1ee99b0c57fede" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" [inputs.tube_data.public_inputs.constants.historical_header.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000006" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000008" - timestamp = "0x00000000000000000000000000000000000000000000000000000000680687a3" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680783c5" [inputs.tube_data.public_inputs.constants.historical_header.global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [inputs.tube_data.public_inputs.constants.historical_header.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.tube_data.public_inputs.constants.historical_header.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000d85e" + fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000d840" [inputs.tube_data.public_inputs.constants.tx_context] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" [inputs.tube_data.public_inputs.constants.tx_context.gas_settings.gas_limits] da_gas = "0x000000000000000000000000000000000000000000000000000000003b9aca00" @@ -63,7 +63,7 @@ l2_gas = "0x00000000000000000000000000000000000000000000000000000000005b8d80" [inputs.tube_data.public_inputs.constants.tx_context.gas_settings.max_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" -fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000002fd0" +fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000002fc1" [inputs.tube_data.public_inputs.constants.tx_context.gas_settings.max_priority_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -141,7 +141,7 @@ note_hashes = [ "0x0000000000000000000000000000000000000000000000000000000000000000" ] nullifiers = [ - "0x25bb2e1a1e41351a8a7921ec50757bb08ba8c4984c20b6664cb47aa76049db35", + "0x18a0687790f725e39f24e61a171517eda8f347575615e1c41b19e257799687ef", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -2265,13 +2265,13 @@ inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [[inputs.tube_data.public_inputs.revertible_accumulated_data.public_call_requests]] is_static_call = false - calldata_hash = "0x141be3bf6ed1491c749ccd8d9360b68bd125188f493b6f986584cf50ce4c17bb" + calldata_hash = "0x1230536a23315a20102f5c57d5915fc08908f78e102b4d15948cd06cacf19ec9" [inputs.tube_data.public_inputs.revertible_accumulated_data.public_call_requests.msg_sender] - inner = "0x0d276f24617f511e59fd25490f3cfbf48d2da5316bbe844093e4e2a81cd506bb" + inner = "0x2767f9570de8773ff9c0ee7316694a7959e85930a452a3b991946494c036e37f" [inputs.tube_data.public_inputs.revertible_accumulated_data.public_call_requests.contract_address] - inner = "0x1b82bc8ac38ebcab85669f740dcefe4888097634e91446aed50bcb3a795e6f58" + inner = "0x1a3a98220a436a1096c5bcfb137a95786dd057109e5e8f50b778fdbfdfd7ba88" [[inputs.tube_data.public_inputs.revertible_accumulated_data.public_call_requests]] is_static_call = false @@ -2598,7 +2598,7 @@ da_gas = "0x0000000000000000000000000000000000000000000000000000000000000400" l2_gas = "0x0000000000000000000000000000000000000000000000000000000000006500" [inputs.tube_data.public_inputs.fee_payer] -inner = "0x0d276f24617f511e59fd25490f3cfbf48d2da5316bbe844093e4e2a81cd506bb" +inner = "0x2767f9570de8773ff9c0ee7316694a7959e85930a452a3b991946494c036e37f" [inputs.tube_data.proof] fields = [ @@ -3143,9 +3143,9 @@ fields = [ vk_index = "0x0000000000000000000000000000000000000000000000000000000000000004" vk_path = [ "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x1d8c427c61b62538ccfd3a7865bd7d63d31db6952c5068ceac413dedfe40da78", + "0x157fcd65138221a77db675de5f924aad7f4c48affaf85acd249ba1bc9746587b", "0x07c008584a3bc294cfed5d5a726d88e5ce8be9a34100232e67e6b790e0a2905e", - "0x1392b27d933b41fb9e36e29ac5d45040893997a526088cfa50d707fc2d5fa986", + "0x1a8c157a307350dc57f06625e220057348008c02bc50c04154826acb1153bb77", "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] @@ -3285,40 +3285,40 @@ vk_path = [ hash = "0x0000000000000000000000000000000000000000000000000000000000000002" [inputs.avm_proof_data.public_inputs] -transaction_fee = "0x00000000000000000000000000000000000000000000000000000000194896f8" +transaction_fee = "0x000000000000000000000000000000000000000000000000000000001721ab30" reverted = false [inputs.avm_proof_data.public_inputs.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000009" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000014" - timestamp = "0x00000000000000000000000000000000000000000000000000000000680688c3" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680784e5" [inputs.avm_proof_data.public_inputs.global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [inputs.avm_proof_data.public_inputs.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.avm_proof_data.public_inputs.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001464" + fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000145a" [inputs.avm_proof_data.public_inputs.start_tree_snapshots.l1_to_l2_message_tree] root = "0x2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000080" [inputs.avm_proof_data.public_inputs.start_tree_snapshots.note_hash_tree] -root = "0x270f4d1f827decbabee53c6fc37a1cddd5037d8726b5e64679120e6545243dbe" +root = "0x0e78f1d5dec20ceac046bed6d2695d5086169440bdcd985416da690e4555cd13" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000280" [inputs.avm_proof_data.public_inputs.start_tree_snapshots.nullifier_tree] -root = "0x229e3dd5a33a6a8297afebed828807e5878c4b00d74f213ce08e712437389c71" +root = "0x1cdcf3f81d3f8a38753a350f7c452a9771eb4ed31e4c5e898ee4ea9ba3b33afa" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000300" [inputs.avm_proof_data.public_inputs.start_tree_snapshots.public_data_tree] -root = "0x085e05f86513d51e9f31237f24be2c331967c2e152bb2ca56e67ae0bd5035226" +root = "0x26b61fd8b4fac08968040eceda7dfe8dfb0f1a3ee607987c21e5b6945c612ce1" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [inputs.avm_proof_data.public_inputs.start_gas_used] @@ -3335,14 +3335,14 @@ l2_gas = "0x00000000000000000000000000000000000000000000000000000000005b8d80" [inputs.avm_proof_data.public_inputs.gas_settings.max_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" -fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000002fd0" +fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000002fc1" [inputs.avm_proof_data.public_inputs.gas_settings.max_priority_fees_per_gas] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.avm_proof_data.public_inputs.fee_payer] - inner = "0x0d276f24617f511e59fd25490f3cfbf48d2da5316bbe844093e4e2a81cd506bb" + inner = "0x2767f9570de8773ff9c0ee7316694a7959e85930a452a3b991946494c036e37f" [[inputs.avm_proof_data.public_inputs.public_setup_call_requests]] is_static_call = false @@ -3666,13 +3666,13 @@ fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000 [[inputs.avm_proof_data.public_inputs.public_app_logic_call_requests]] is_static_call = false - calldata_hash = "0x141be3bf6ed1491c749ccd8d9360b68bd125188f493b6f986584cf50ce4c17bb" + calldata_hash = "0x1230536a23315a20102f5c57d5915fc08908f78e102b4d15948cd06cacf19ec9" [inputs.avm_proof_data.public_inputs.public_app_logic_call_requests.msg_sender] - inner = "0x0d276f24617f511e59fd25490f3cfbf48d2da5316bbe844093e4e2a81cd506bb" + inner = "0x2767f9570de8773ff9c0ee7316694a7959e85930a452a3b991946494c036e37f" [inputs.avm_proof_data.public_inputs.public_app_logic_call_requests.contract_address] - inner = "0x1b82bc8ac38ebcab85669f740dcefe4888097634e91446aed50bcb3a795e6f58" + inner = "0x1a3a98220a436a1096c5bcfb137a95786dd057109e5e8f50b778fdbfdfd7ba88" [[inputs.avm_proof_data.public_inputs.public_app_logic_call_requests]] is_static_call = false @@ -4072,7 +4072,7 @@ fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000 "0x0000000000000000000000000000000000000000000000000000000000000000" ] nullifiers = [ - "0x25bb2e1a1e41351a8a7921ec50757bb08ba8c4984c20b6664cb47aa76049db35", + "0x18a0687790f725e39f24e61a171517eda8f347575615e1c41b19e257799687ef", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -4453,20 +4453,20 @@ root = "0x2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000080" [inputs.avm_proof_data.public_inputs.end_tree_snapshots.note_hash_tree] -root = "0x270f4d1f827decbabee53c6fc37a1cddd5037d8726b5e64679120e6545243dbe" +root = "0x0e78f1d5dec20ceac046bed6d2695d5086169440bdcd985416da690e4555cd13" next_available_leaf_index = "0x00000000000000000000000000000000000000000000000000000000000002c0" [inputs.avm_proof_data.public_inputs.end_tree_snapshots.nullifier_tree] -root = "0x085099ebd0a57c323e76267b3939978c2d59e2dc542834c12a4749935777242e" +root = "0x23482aaad7a91e191b4468847839fab55887883da561b2f444a7ede92c9fb386" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000340" [inputs.avm_proof_data.public_inputs.end_tree_snapshots.public_data_tree] -root = "0x120af51dcde66a020399597fca504c60e1fcfb57899b15fa22ab16efc4f2835c" +root = "0x22ab385e115ed2fa814be54cab190a65e1daec11eac7cc25cd289addb0d6834b" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [inputs.avm_proof_data.public_inputs.end_gas_used] da_gas = "0x0000000000000000000000000000000000000000000000000000000000000800" - l2_gas = "0x0000000000000000000000000000000000000000000000000000000000013d6e" + l2_gas = "0x00000000000000000000000000000000000000000000000000000000000122f8" [inputs.avm_proof_data.public_inputs.accumulated_data] note_hashes = [ @@ -4536,7 +4536,7 @@ next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000 "0x0000000000000000000000000000000000000000000000000000000000000000" ] nullifiers = [ - "0x25bb2e1a1e41351a8a7921ec50757bb08ba8c4984c20b6664cb47aa76049db35", + "0x18a0687790f725e39f24e61a171517eda8f347575615e1c41b19e257799687ef", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -4859,16 +4859,16 @@ fields = [ ] [[inputs.avm_proof_data.public_inputs.accumulated_data.public_data_writes]] - leaf_slot = "0x2132891de6e6992867143b20ce6cf1c8cb005c85b4967340c3e39b74cf9c6bb7" + leaf_slot = "0x142c9cb52b4cc578630b15c79176858858a4cbae8d7c29358d66da0fa361ff44" value = "0x0000000000000000000000000000000000000000000000000000000000001f40" [[inputs.avm_proof_data.public_inputs.accumulated_data.public_data_writes]] - leaf_slot = "0x0f0f229d2016ca05be7a6753cb1a2eb1af7ae9f41f233f976861b471ca2d78bb" + leaf_slot = "0x239d87885659c85849d8950cd42a0b69d41521f8c9a10670e86bb5fe24aa7192" value = "0x00000000000000000000000000000000000000000000000000000000000007d0" [[inputs.avm_proof_data.public_inputs.accumulated_data.public_data_writes]] - leaf_slot = "0x00cb2426dd7547fb371e50b1861ce295c8850a11cd5546aefafe62002801af77" - value = "0x00000000000000000000000000000000000000000000021e19e0c9b056da6692" + leaf_slot = "0x18d96139c7e5ebed33c1dcef805f02ca611ca80bb132169d411007c8b4d4d654" + value = "0x00000000000000000000000000000000000000000000021e19e0c9b0d92856d6" [[inputs.avm_proof_data.public_inputs.accumulated_data.public_data_writes]] leaf_slot = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -9276,103 +9276,103 @@ fields = [ vk_index = "0x0000000000000000000000000000000000000000000000000000000000000005" vk_path = [ "0x041560686d9398f92c5c2b9e672987f4033d9cb200c25ca5ac84b66b05594f73", - "0x1d8c427c61b62538ccfd3a7865bd7d63d31db6952c5068ceac413dedfe40da78", + "0x157fcd65138221a77db675de5f924aad7f4c48affaf85acd249ba1bc9746587b", "0x07c008584a3bc294cfed5d5a726d88e5ce8be9a34100232e67e6b790e0a2905e", - "0x1392b27d933b41fb9e36e29ac5d45040893997a526088cfa50d707fc2d5fa986", + "0x1a8c157a307350dc57f06625e220057348008c02bc50c04154826acb1153bb77", "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] [inputs.avm_proof_data.vk_data.vk] key = [ - "0x28ff85e24a8adb3d5024fb3cf35fc77fac3323d77e05ced4e8618e806cb5568f", - "0x19af2b2c5e67c00aad17830a616eca0289192884a4113aac01214592dd482cb9", - "0x15dcc10921e9f3cf824bdea7c90ccd85fb2f2a3ddae50b3972ad7d46721aee53", - "0x2db8fd047068e6e16f6cfdb02b226c583eb8e1b4233a3e5380f030fbc74b1736", - "0x2b0edaa50116027e320aff1aa7b6a5601ddf7d96159889bf5f532eb0b1bbb540", - "0x26365a5a92f171ea9700db7aad9219e1ac54ef72b6bdef97b7c1df62c3e35406", - "0x16b2c055da76fe4e10ae4c0ebaf0bbc5968f7dd0cf96a5aa84981cff946e87c0", - "0x1980718505e3436ed0a939364914db5daa26dce50be32da0cf9211d29ec0f217", - "0x011b5000772b91b43599e919ddf2ed8e808fdf20ebbe5d09b629b1760059bc1c", - "0x05627da05380e161ac1676a26af8ebbae1726a820ed3ca621c48a82700341e5b", - "0x1c23f0697a26f29f87cdb3b789e48ab001c2c674d6076c02382cccc85f453461", - "0x29633758bf5a90f47bb852e76e2526b6e4b1d8675e3a1d2432d1b8eb2263c78a", - "0x1d4add05b9ebeacf6d345d4103306f3cdfbc0ec6dc65ef40a2660de17b14b0cf", - "0x252fb623f6bac8008473ec8a175c839ed5572279fdfcee949f0cd8ebd7f7b112", - "0x2238cc00dc8d1db42d4902499dfb2cacb8437ec6e9ab9219107c43470d2b2671", - "0x145adb07bfacf6458e52878d106c8649c9601602cb4281092348239773ac6141", - "0x182405ccdaa6bef2dd029d40ec13ae3b23d5c2071048ccbb4fadeac7045ed92e", - "0x2fe7d215af1c4b6eb912e7e14ec61d4d9a9413b7e1379866ae1f2e6a8f0e39b7", - "0x06bee092136c887108d88664fa2b06cc3ccf65399c199e5b308458ec44c35c3b", - "0x2d9404035c8c68a60e0ed31dbf169a1919a92ef14f8dab8d4467ef0a419d390e", - "0x19cc221bb6a44a9b09567df9bb4897c6d9a4d57dddf301fb9ef41142fafb9efa", - "0x214dfbf3e70c43e9498239de930b4962b8ce8e315c4fd3b0b12d08fd331fec89", - "0x04292b1e2e84c6f24d8f2aae41aa1578877c96758a190b53fc572155480649f9", - "0x0b801c84d944e6ec8bbb6f8a31e8f801184cd5286d53fc22546b8fcade06f9d6", - "0x0854cd0a261cec77e85a375328889a28d944645e915abe5f3a82ce35dd8f0b08", - "0x07fee7b0f066b6b21af309c6ddf16de2d7bd76833d13bd31ebd2bd30139c7b08", - "0x2d45802c74c0a7ba0e2e8d0ee70e0c3c87449c61f4e4b801f69c6be5876284b0", - "0x0cf8cb7402f769ba0c88c5cfe896833142a832fd73d9e6ffd3a7b0dd09b3db5d", - "0x0ac684c645be847302c816ec37544eb3ff62a45f07183be6e653479c50810960", - "0x228d79d0aba54947d10e146256994891eee7826164689d31df71f3d00004f3ce", - "0x29b875bd582eb0ef1a49cea8cc1b94c78dce7c3ed91bf5d2616911a29182d2ff", - "0x2242d474ea8ccaa3b313d27425b577672b9029e38a4b6a6aae69352bdd68d430", - "0x0bb0882f79a679528ed4a539a732f7c7cd231f4bee4a8bee17ba4817dd23c9fc", - "0x257686f133d26db9410ee186b3517dd96c6c9e80a8bdc05d01f311d55d8bad4d", - "0x296b21d7f4e818fc535232560c86add7d54c939c859a2310367dd417abdb9fd4", - "0x2c53e965f929af42d455d210b4c4043a490a2457100c5b997f2e6c016dcc0003", - "0x11dc2c508a07c6da50e54744e3caa7dedbc1d73125f3f5649d8ec675b8491d70", - "0x28ed412f9dd277474ecca3715a50304ab6196061206ce25eb63b7f182d50cf4b", - "0x011c11ab2a4afbd6515840fafef52deb89a2995b450ce092756c14644341eb17", - "0x21be02293ee1967e10e62c38d9cb86e43386b458445f4fd107b5ad8ecd540461", - "0x2cd971561836e1aa4b5515483de12c441f135a614ea302e316a27020e2eae2b7", - "0x0bb41661e60c7f3bb445a3f1b96aab9ef1931daf27cadad580c8d05e81b2e833", - "0x24f28c2e20abd509a283fcc7fc7adc48db061c3589e156308ec8c0c0d2ae25e6", - "0x0ebb5ad6acdad63d670fa99a318ac0c093cbf7d1b49d2e5895fa0598e7ed73ce", - "0x277056ca1c160149e8ee776af7b9c8230d03b974f32625bbc22f7408ae58061a", - "0x2852323e2678b377ea3f27fd4102ae02abb44e28425b274bb481391fa5e37bbe", - "0x110288870b57b5223c005e50cf15e415b5203a7eb01c12d8fb10e031990175b4", - "0x2b35690dc5ec7a7934fc6c6f8843f52a064f57574b9eb1df387c093dbb57f088", - "0x04e0c5ac591ab6a922f5743e8c55b8bfecf63d7e7d29026fc16f7965a4e01ba0", - "0x1b11904cfcd6e3ada9592505f7aed66f491106bf8a6b81d3b09df37b753b9c70", - "0x04c77c6ec3b045390cc557625ebfccf1344bfd6e6bcb427cf5a2397e0ce97774", - "0x0acce0d824fd13d77a5b9e890dfb664afb04217b374f97262b30498c82a67b0d", - "0x25c2b37b386ce78dee239630418a6e74edf2d8148f8c95ba95b491edbd43be6e", - "0x00604d330bb56f3af151db870d084efdddfd71819c3a0ea2c7e6a203e4493e92", - "0x0885fed766ed9ed05aebdf713d419ea24f2e63e36352acf8dde0f504de129ea5", - "0x238751afe73aa7eb6130d457a15d2994d860075742bd2477f558cdcb162615d9", - "0x1c879b1adfaf8f7da2b66017aba76e0ef4eff8443426ec498a382373690ce12b", - "0x246b6bd1a30b6777de43340ce8e284e04c456d8de8b58ee15c6bccb5d28d0093", - "0x15291bc47425996a14a893b1d49e514703443a4397b46c24b804323bcf3752c6", - "0x2f9692e4c612dc40f5c05f9d27f0d27f679ea583f84944f5d351871ac4b2484f", - "0x096eef3b053dc91d605ab8aa005298d23e81a473b4bc0a73d11db7aadb5fff18", - "0x17c5fc39493964224ae5229cc6d6afb96a40433cd308450ae3254a19ccc14159", - "0x262d6fa7ff2c4044ec27f9777abb44fa58dd04f0666f16df61bcf24ada368a92", - "0x2775d73b503ba8d12a646505b255b23e93c8fcda2cab19e447a43afcf8a788bf", - "0x22dc08e6a7746439f488c1acb42279aa6ab892e0d37d2943292624d7843f9a79", - "0x217c1368a110b5bbaaf0c138c39a28fbfa49fa991e11f9d836ae06958e718379", - "0x12d900be770d6ae67bc9b4507c4758e33fb700ef65c1094c86e95df8c56968e1", - "0x03b58e7e5133f352b36bb95eab89f7b61a91be7dfa0b103bc1870ae6b4ae9b64", - "0x1831c8543d2eadd1d285c513023533d2daca822e7cfeeee8d66649da61a782be", - "0x1e2c1a6537ad8bde8ce768076fc0805600df3ee76a3df7b7a915477006ebc085", - "0x23e091646e1d074f8047c22f07abcbe23b65bd42755324fc33c3874c13aef589", - "0x0bbd7404644b49666abc78a11a4940b5b056bd68d1abde1f751f721987471033", - "0x021907d028f088e73b561f58897c7a7cc51835270e2239e4eaa0626466924784", - "0x078a8febd2e947b2b87e571f1e567993f1c735f327ab5564c3738b78daeddb63", - "0x284ab03cdca2b850a7da9c24d6a13d513e879af9900d9807911159f216767594", - "0x1b8246844a5d4cccd89cb8787ecfa344618d4eda5cb87e10b4c59230a761b1f1", - "0x0f74c060de0b79291aba5ad48b2841218c1cbd58385da8a036d9bae3207b91d5", - "0x182a184e92c3b7b5250f3f04b0b90f107d9dcfeeec30a76e35297acb5de377df", - "0x03837539a0231a2a4a41dcb970c182a289c7ab8b0e6683666460550e0cce8049", - "0x2869d24e9aed803f014a98170a73187f311f1d349cf193dd9d839a173a339cb6", - "0x013c9d700848a28f61e15e814749852fbebce887020d97e5f10f6fbf98b488e3", - "0x07696f0cf57a03a536ae05bf8eddce0c3fdace0e526780542d479b0d4fdb2f7c", - "0x2065105f7336979bc8db3949bdf1cac4054ae834931504a5f9b8f9f2f3ea6196", - "0x2fa4cc274782865c0a5a1e00a0b153504694f7e5e6e3902c7e8ac49319ab4d68", - "0x1bd3e977300fb6a4593d803967e58c06ce9ed454a2ee17d2ed8164ae69b5e263", - "0x0c082ed7ede6bdd06bbbe05fcfd176a21bd12ca9caef1ff14942c48cab9002f9" + "0x28190f9d2d27b8a0ab3736ab0004ccebbb6ff57f92eae5570bca5c985ea173f1", + "0x0c93a35e1247701ca42a8fc25560249e0059d197583917321a6dc5411e7b1c33", + "0x2696b32ea7cb9efc285d4f2e645b17815b31ef7cc289f3106b2007a08956b462", + "0x1b68e020841c5d8c0489c7df50404bb59a5e1ce91cc7e25026fd718c5f71e0ab", + "0x2d3ecf8ee5da794901fa6a4525869f843943ac4cd9f13ab2ce6af34af07ce563", + "0x04e23b3b2e5fd5574e304ccbfb69fc1b84b814368fe970c718932ac86cdb5d53", + "0x2ed5997155a9419e8d9cf822f70611ce2548c27ce8369403bba40bc82fd8b120", + "0x1164991a587a42955da30ac57f432ca08002988258b976119725d8581a81749c", + "0x28cb4e54981f88b6372f16397c69c913a1e6e6d18b640894534304187a7ffa4c", + "0x0551b0a56a4ad4f3206324353e648896a749be59a302e14db473bf4902fc6a2f", + "0x1ac261a6805c1ab5f820e3b98bbedd46e411148a9ab7a07347a1ef9de4250606", + "0x2bf3c3bed49c5cbdaf98f33f632bbd6f654b896aa76f178a3e579876075e4c87", + "0x1e7622817b2d1fea32f7a7618927aba490a5e7796267f07f083bcc08f8e3668c", + "0x074dbb1def71260ca901a17a3cddb19fe6b582fa4791fa16f14c6585004c33e2", + "0x1af91466608eba967ca6dd35dabea444c6d242f440f094b1731f3ab1b681667f", + "0x1399460626502f4656d86e13d843a69727da855d8aaac9db925c5b2e6b399f56", + "0x12ea84f608070ff2e9e652e2892ab4262b6396d8539ce5980ea1a4ff8185e567", + "0x0b5531550fb674dfebde7486bf017c9eed5bbef0f505f839cecbd4e23ea5d2ac", + "0x2aa840cd36600287040625ca338b2ad5319d538c078d8f5260c60cde8b1bbc0c", + "0x2d8f72f43ca5a7e7556a98222e8afb7e9a29d0fe5b9f023e752c8fdef8b4a120", + "0x1d9b2420d17e82fde1618363a66dfba41a2b44706e700bedabddc0aad0adcfc6", + "0x054ca717727d64ee7123801af5fea269d2992e0a90af13cdd7d56de109ac3b2f", + "0x270ba49dbc567f18439c7acfc49bb76f1b2f367d3daec42d70bd643e06f4033b", + "0x12d141c0aa7b365a32e9c555e9a485015f77fa928248577e0ca911de362befea", + "0x20d9edd3ae1b2a3bb900b39d1e6980323db3e531426d007cece9b430bf2f6572", + "0x0b35f0e043c7730c4c10178a81b8c282bf1db7374396b3f1eb549180f7806768", + "0x297d5a8d09903aeda486f3b61a412f1f1da7d19dc7ecebb89bf651e17664e8d1", + "0x2347323434cb95e92cef6068635014f2f8171169972b3b83821509c4162c03c0", + "0x06f449baa34060a59b9db78b0b42b609bc5bd58a0b42d21a920355491bf15a17", + "0x24b77a61364d470f572b09d835a275897d997c1b8c123e41f9a209322a4cae0d", + "0x0a3eed7e5a8b3c8605634bf984b433f6571735a5bf183dc215a0041d62da4efa", + "0x270363c970e1dd2589f79e89cb6e46d9b0ef13baa7a10954db4720123262c5ad", + "0x12309921802a7ab89828f3900c8a54223b925fe09ee4912b70ca1b0836cf5da1", + "0x11155c1464a577908626ae5c7cc0d8e50f06f627001e024e16a54332e428537b", + "0x12c1707eb1123db5fe8273b57b3f6d0f1f4bc91d1cd21360e20a7d6f1ee9f557", + "0x1c7608a721f105101b0800aeed7d9b7be2120da6f9c679616bb86cf889c1600e", + "0x1e2c3a44c4cb5417f972bbd4830e707310208a9f7a4697fe4bd095197cb0e003", + "0x05c5117b9a8a1ca9ef0050f84956e8b134971e71a29ecd8a259a59d3db9dfbef", + "0x24dfea2f85cdfb44cec057a1579c3020d7ddcee486cbd65feb753d9fefe33400", + "0x228d5f484e5cd134dea4552473f46e32d668a2cb26a690373bc19321a504f398", + "0x06942e39d43418609f723a6fbbb23d7de38d726f59444f9b9b7385a76e6ffe83", + "0x1f9d603363a15eb075994b88e416e6b59b7c9519a278a9e9162988f08e0545aa", + "0x0da7c6f9fdf38b78121aa1628a9b06ca6532ad628e79e48ffcc27ada290319b0", + "0x281a1d96df8fc58ff5b3e9fbac34c4c68cec5fad033c19b9fca6b200259675cb", + "0x05dbd20ac8b1322bf5ff3d98d324765b96d737e4483372a11390b22c68ace820", + "0x04cc2576f0191b0daa95008674de15d4e482fedb053769fbf55693377c038791", + "0x2d228c06b8aa46368a0127a34dba3c32645bafcacdd374cca601526c85063483", + "0x22a2f36fd68558abac19fc3d86c78c0cde6c47dd49d3163abb7cfdb397e3b2a5", + "0x12b18c5036542b6b53fc3a529f8f53dff640b438bbe5d50e7638dc37dbb78f9e", + "0x09d78febf867f28cfe87c850a697cfbce1a2eca145c17804bf5781b854e51f45", + "0x1c1d491003cc01c96c85ac414e6a08c561e8ac0ee2cb4200c564b5778002167f", + "0x09176251b0497258097b619aa54460f3d738d8abf5967567509e2554be2d565d", + "0x079ac1028296b404e1104ecb76ff47dd95a37a30b046319490b306e087398fdb", + "0x2e96a67beaaf0d5f6562d6ad7498b5874296edf9d003ab71fd75030bb2059187", + "0x27b25ca8303a50fb9c0783401128cf94f3014c9d903e3edad9256075008c2649", + "0x0d6f56b2b48a75c09e575ef39d1b3c07b1739ca9dd51e5295669d34581a0dc91", + "0x11761c5322503b32d167b9cd465c8a21801cdf1c2a02f699d4bfce4f0a431660", + "0x28ceb751f6372f80f143f161d6756f2b9f9863dfca7ab865c6a28e3f50d24ca6", + "0x2a8cfdf8ec3c5b073313b388fa738540509cc519e53574fdf0d13209731137d3", + "0x278545cd317b6890679e32d624d8e81384efda914345732c82f05af31b209d24", + "0x2df702a6cb10f9ca63e6b4b63768fb3e414a1627b4af58a96eb278053438b0cf", + "0x2d7ce621212488b7783dff6d50d1f0588047799007aa859e733e2e555dedf6cf", + "0x16cab5ec03fcf0d646e098f8c80745bd6963b47218698e34936684b1161be5c2", + "0x1586b0e1d8ea93f5449ab0f2e103cd2ffc26be498ddd4162d38e6f19d7fe8bb6", + "0x2a95333b8ed3cb4b04132376736cf5caa6d6a473a8c9a464c2e7f54de842ff89", + "0x16bcfc3d7c60b5d8ef78d4fbc230601e6d3063521d12cf640b6634680c22e176", + "0x0c1b33b15ca0134daac8240e9af8219b276300f5e59a935c28366435b64c7e7d", + "0x185dfbd9aafd28181f491cffc2aaf13a0365e7255e748877fe694bfbc1b16362", + "0x1ac69e697ecb73fc9878bfbd5f3c1119bcf6691d78c2e51e62e71491132249f3", + "0x0caa6b33a85e0dde12ef869a2f75bd642a2c3acf8245459eb8ff056c89e06217", + "0x0454319ed6a32ee295bc5c3a662fb1fe7e71c1262fa23d9583c89bc6e518d37d", + "0x0d4e799a0b67e327a8b7c50239db56e8c207b4ac5e4d98c85c5b94e0b34e41df", + "0x1327e4a899a3fcf0f13062bdd1d376884695de770537646df4ff0e92769ca3e8", + "0x0433c23f223e4f0692da121ca233d996a3e36ab67567a6b9a7e0a4c0c2dab2fb", + "0x1302c2cd8d547f7bc7b5682d49025004f8cedb00bd8a35e2fd580ae3bf37f82a", + "0x0b298c6edcc72b4aafae3734226eb283aa684266b87fbddd42f0e30980d8e193", + "0x1018f0dbe45bcdbf0c01778f8170887d2f773d44c5c4deafeab1ce9f87162db7", + "0x2051b0812fe8fd30ca9499a3352571189ab61beb7135f28a92b3d6a5efef8ec5", + "0x02f35807325aac64e15df1c69b258d7e9b9d49bd78a0ea9571fbd3443e72e8cf", + "0x19567084d5e6927ed2b785c67ea62b304137eebeeb2d1714e983e2baf86a0133", + "0x1b3933891f98f0042174d31ba9d5c1da92fb9bf51bc7dd9b1ca4c384948b418f", + "0x1adb6607bc9429afea347aca866a3622df0fd723374533d2bfef8d68850503f4", + "0x2cfe32c419eb42c043684d87f75359ac5deac3788b92194ec9b45ec4d1d19238", + "0x2976983a385f406f6d025c9a380ac32c99137773c626a1320c0f7cf00b25ec34", + "0x3002a5e5212b0f60e9b4fed3979e051144d4a1fb8b6adec71a1c320eb9a66fe5", + "0x2ca1526fd1ec21af3186d4ec8dd4fdfcfe046f3729d2eee80ad2fe096d13f674" ] - hash = "0x0ac602457b8668183a372862705bcb097180052cdd1a567bd51e681df3797e50" + hash = "0x19e0ed53cb1c7d364909845a1ab7c5cf2eb1ae8073cb0313e331cc7e60ac7af9" [inputs.start_sponge_blob] fields = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -9396,10 +9396,10 @@ expected_fields = "0x00000000000000000000000000000000000000000000000000000000000 [inputs.archive_root_membership_witness] leaf_index = "6" sibling_path = [ - "0x107e5ba66286fc70c792c2f59e21531af29c38879d6e8dac54f7dc57c4a6b4df", - "0x1d49fc6a5c2e4bd074660e492d14e8c2874309ccccc076f837c29bb718f8f92f", - "0x028b47cd0b3bb4cfb305df9476a4af84a3723a86c9f2cb032f29de070017dc01", - "0x29f57eb513335a3b543998a150608c05738e117655e191dbc4a4ea1b75b4e4d7", + "0x2d97a3b962d08e0a6dee9bc286cb853154df2d660c34768a539abe30738d77e5", + "0x1428c191da00ae9e6328322750fa77bbf6c5b2dd70ee3c219a39f0f1e9784b81", + "0x2ae950126da08ba15878702e2394c18a583d27e508fe0ababc036b9fc66f1fa0", + "0x0b6125f7ffabce5fa629725b93e3eeeb91ba9e2bac9deb72ce57d04f54a91c48", "0x2373ea368857ec7af97e7b470d705848e2bf93ed7bef142a490f2119bcf82d8e", "0x120157cfaaa49ce3da30f8b47879114977c24b266d58b0ac18b325d878aafddf", "0x01c28fe1059ae0237b72334700697bdf465e03df03986fe05200cadeda66bd76", @@ -12455,26 +12455,26 @@ fields = [ inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.constants] -vk_tree_root = "0x0f41ca517c1c4dabab14d88d50dcbaa9638b23bfdbc28fa3a94d7260ef0c7427" -protocol_contract_tree_root = "0x0af0a7a13726bd13afe2a3fbfa52690c43ca774227d6c2bfe86fce93c387953a" +vk_tree_root = "0x18c54e1814ecadeffcd11feed9049f02d31148f4457ddcf84e4d580bbc5ccb0f" +protocol_contract_tree_root = "0x2098b90e2b21f02ad7a1fc6afcf944ef3685236caeb015b51a502471c492cdfb" [inputs.constants.last_archive] - root = "0x1436a22b4180f43cca1ec2de0f2166a4d514a69bcce6cd19ec7efd74496fe380" + root = "0x00e90e8835f281e4326e5f50c81dd69a65415ac31e4802a55275ebe02627a7e4" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000009" [inputs.constants.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000009" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000014" - timestamp = "0x00000000000000000000000000000000000000000000000000000000680688c3" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680784e5" [inputs.constants.global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [inputs.constants.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.constants.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001464" + fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000145a" diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-block-merge/Prover.toml b/noir-projects/noir-protocol-circuits/crates/rollup-block-merge/Prover.toml index 64906bfb9ee6..4b66c36a1a6b 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-block-merge/Prover.toml +++ b/noir-projects/noir-protocol-circuits/crates/rollup-block-merge/Prover.toml @@ -1,59 +1,57 @@ [[inputs.previous_rollup_data]] [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs] -previous_block_hash = "0x0293e481700a49fe9e7031afb4e2ae80e9142abfbc83b69ac59ed841c7a99772" -end_block_hash = "0x107e5ba66286fc70c792c2f59e21531af29c38879d6e8dac54f7dc57c4a6b4df" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" -vk_tree_root = "0x0f41ca517c1c4dabab14d88d50dcbaa9638b23bfdbc28fa3a94d7260ef0c7427" -protocol_contract_tree_root = "0x0af0a7a13726bd13afe2a3fbfa52690c43ca774227d6c2bfe86fce93c387953a" +vk_tree_root = "0x18c54e1814ecadeffcd11feed9049f02d31148f4457ddcf84e4d580bbc5ccb0f" +protocol_contract_tree_root = "0x2098b90e2b21f02ad7a1fc6afcf944ef3685236caeb015b51a502471c492cdfb" prover_id = "0x0000000000000000000000003c44cdddb6a900fa2b585dd299e03d12fa4293bc" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.previous_archive] - root = "0x05c542a9aadd68598f9f32cc066dc9e71519fdd09d3bb25917721220c3ffe99d" + root = "0x01f3f9528860628e391a0775aa92501d300cbdf884e49318747dc9c8c4be2670" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000007" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.new_archive] - root = "0x1f7a1f2c370c7feb3411a7b2abf18f49678ee4a5bab4d9d51d31978f60b8a90e" + root = "0x0d3828a8fd93fdb49ce09ccc58b3a5903cd3c87783948c2095687dcf7fd44bc7" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000008" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000007" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000012" - timestamp = "0x0000000000000000000000000000000000000000000000000000000068068893" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680784b5" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fe0" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fd6" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000007" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000012" - timestamp = "0x0000000000000000000000000000000000000000000000000000000068068893" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680784b5" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fe0" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fd6" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees]] - value = "0x00000000000000000000000000000000000000000000000000000000093eb800" + value = "0x00000000000000000000000000000000000000000000000000000000093bd180" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees.recipient] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees]] value = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -339,19 +337,19 @@ prover_id = "0x0000000000000000000000003c44cdddb6a900fa2b585dd299e03d12fa4293bc" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs]] [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner]] -z = "0x04d44e4067344d2c540b625f64d46ba4634aaa6cf480ec7524b68554c86cb0ba" +z = "0x2b7654006d02c5805989e047a53e97e597d755669d482351474ac619e5250220" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner.y] limbs = [ - "0xfbf18d3f5fd100d64e48585423610a", - "0xa0299a1a8f953ca1ed7d98f7d8ea3d", - "0x649d" + "0xa7571bf41cb3bbba9185704bd8bc51", + "0xc3ee8f31759634c8598d5fc28ace3d", + "0x4135" ] [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner.kzg_commitment] inner = [ - "0x00aa16c94b6567c555c3e804912cdb5730cca2fa261313ca6c60f05be31d13a3", - "0x0000000000000000000000000000001bc3b7c061fe32f88c7e2c67d978753001" + "0x0099b696d1aac59ac1d4bb75c8baba02ca72d3b973e9cedca6b53359a997df48", + "0x000000000000000000000000000000e3e7515687b11fc6178923f9b1f5de67a7" ] [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner]] @@ -3231,9 +3229,11 @@ fields = [ [inputs.previous_rollup_data.vk] key = [ "0x0000000000000000000000000000000000000000000000000000000000400000", - "0x00000000000000000000000000000000000000000000000000000000000003f6", + "0x00000000000000000000000000000000000000000000000000000000000003f4", "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000001", + "0x00000000000000000000000000000000000000000000000000000000000003da", + "0x00000000000000000000000000000000000000000000000000000000000003db", "0x00000000000000000000000000000000000000000000000000000000000003dc", "0x00000000000000000000000000000000000000000000000000000000000003dd", "0x00000000000000000000000000000000000000000000000000000000000003de", @@ -3249,186 +3249,182 @@ key = [ "0x00000000000000000000000000000000000000000000000000000000000003e8", "0x00000000000000000000000000000000000000000000000000000000000003e9", "0x00000000000000000000000000000000000000000000000000000000000003ea", - "0x00000000000000000000000000000000000000000000000000000000000003eb", - "0x00000000000000000000000000000000000000000000000000000000000003ec", - "0x0000000000000000000000000000007a7a527ae715179f2aa6d6b5fc3fcf6217", - "0x00000000000000000000000000000000002a592fbfb7391893e1981563040979", - "0x000000000000000000000000000000a1107538725bcc6b9b7c13cd773c579b4e", - "0x000000000000000000000000000000000017ad2d6dc8acf911d266ce6092481d", - "0x00000000000000000000000000000060053b8f31f6dd491d26424438d75774f4", - "0x00000000000000000000000000000000002c76ef5020a22dbc028c114507669c", - "0x000000000000000000000000000000f248ba20b8b2cb01b798a08862833ac3af", - "0x00000000000000000000000000000000002f79ca115398f79fc43fd481bac441", - "0x0000000000000000000000000000002c6028e0552aa695b5ec03a055dfe55ab3", - "0x00000000000000000000000000000000001a5fb3fcc4eb0716e6303819d4f559", - "0x0000000000000000000000000000007a62d886cf7daa9cf8187390ad51b79579", - "0x000000000000000000000000000000000008728c8a36ed6d5a957a42ddef12ac", - "0x000000000000000000000000000000efd6ca5efa744e7241f7e6268936a05ab1", - "0x0000000000000000000000000000000000226fd6c4f1e0cdcc16e857e37d23aa", - "0x0000000000000000000000000000001d1925f654ced0bc9fbf73bb7842f01566", - "0x000000000000000000000000000000000021f3641ce758215f953b0ce98aac07", - "0x0000000000000000000000000000000ed9061f9593938a4eb1165bea62c42ffe", - "0x0000000000000000000000000000000000262d9a85a3383708d95ccc42dbfe75", - "0x00000000000000000000000000000009eea40577fe746a678d00ddcc06eb38dc", - "0x000000000000000000000000000000000029605a6d6702694cf5d19f4cf715aa", - "0x000000000000000000000000000000282a4bf4f2f54be2779163bdc70c752d2c", - "0x00000000000000000000000000000000002cda54d3011667fef70ebdc551fe52", - "0x0000000000000000000000000000005d80d80d7f650208b8e2a22a7b1f01852e", - "0x000000000000000000000000000000000022c9292bc3d82d1563a303aaa04c0c", - "0x000000000000000000000000000000ddbb65fee64c9d1204287e811cb436fc95", - "0x00000000000000000000000000000000002d2141dbf8e19e490a545c243b9da8", - "0x000000000000000000000000000000980981ed27d03f6a5a799091150f1dd318", - "0x0000000000000000000000000000000000236aedb66c50bb004e87095b95ddfb", - "0x000000000000000000000000000000d12a90a77879baba2ba72effefa42b6793", - "0x0000000000000000000000000000000000252dd534c32f76be0629c8d6eb18a6", - "0x000000000000000000000000000000668123f9621395ad9a0b1ae8da6c406fca", - "0x0000000000000000000000000000000000085b62716f681118e2dac8c661773f", - "0x000000000000000000000000000000a764f3976ddfee6c0283cef5740cb1a30f", - "0x00000000000000000000000000000000002ef6a78426b7eea2e634b9bc6de8f7", - "0x0000000000000000000000000000003af14ee9cfe739a8249796d3b72d89e6c7", - "0x00000000000000000000000000000000002302ad1e51fcfe6f981d9a906ba1a2", - "0x00000000000000000000000000000010d30774b8b9d38b776440a7da3e77ced9", - "0x00000000000000000000000000000000000784b23752828f6558275a82c60fd0", - "0x000000000000000000000000000000ff9792b47c43ae44a47b5ebeb5418e79ae", - "0x00000000000000000000000000000000000b82f0359354487dee888986728cb2", - "0x0000000000000000000000000000004863bf8683e6b5956c1e6c51312dd84aa4", - "0x00000000000000000000000000000000001db7222d03a0c89b4846a1ab88d92a", - "0x000000000000000000000000000000e2b39d22432831f1039c0cc2ed288b88fb", - "0x000000000000000000000000000000000019668130ab31337869bd634678fe76", - "0x0000000000000000000000000000002ad15097997a066a55f88a9f67e69b1c2b", - "0x00000000000000000000000000000000002de80c6e61c1e92ff0e8ea2d7759da", - "0x000000000000000000000000000000a1edd16549e89b5c97110fb944b4c85a55", - "0x0000000000000000000000000000000000020841506c896ddf10b72fbc078479", - "0x0000000000000000000000000000003e9d37d41d027f4e3b587a5a0b2843742a", - "0x00000000000000000000000000000000001d6a5c21abb1f35c023ce1509f0646", - "0x000000000000000000000000000000eb5e318bb4213bfd60594624bd072d2752", - "0x00000000000000000000000000000000001a18f7166aae1b93de564f59387d6d", - "0x0000000000000000000000000000005b8bb2be2faab575ab2cf4bac1db4067fe", - "0x000000000000000000000000000000000024308cefdaf4f4fbe97940e7d8f1e1", - "0x000000000000000000000000000000420ccb21c1efe88f4a609fee35c1d92cf4", - "0x000000000000000000000000000000000017b4ab8445f38c9aade1a0c69af6a1", - "0x00000000000000000000000000000031e69e648903a583d96876f6ad058b648c", - "0x00000000000000000000000000000000002c61721eade22ea0ad142b5ddf46c3", - "0x00000000000000000000000000000007126873dd7a61ea2ce04d28db9b521f1f", - "0x00000000000000000000000000000000001f797797807a0e3915ad0ba40b3617", - "0x0000000000000000000000000000004becd6e0551eb871fdcf1ec499ddb1525f", - "0x00000000000000000000000000000000001dcbde3e7629bf5e70d70a6162f643", - "0x0000000000000000000000000000008bff931a07a61a501958ce19a3a7b855c3", - "0x000000000000000000000000000000000013cce2a9e31bc8c96dcccaa2b1aeda", - "0x00000000000000000000000000000007f252e00ee75816db70bf1ea0a64d4f4e", - "0x00000000000000000000000000000000001a46b2d5e1f3fefacec5db5fb2b724", - "0x0000000000000000000000000000001d03501b87905f1cff510f0d0d58a51645", - "0x00000000000000000000000000000000000fec60f7f0553ae52fc5de89e0e684", - "0x00000000000000000000000000000040183d10327e305fd1b3fd7eb2a9df949a", - "0x00000000000000000000000000000000001e20619558383745ef0dbaf951704e", - "0x000000000000000000000000000000530876398b44ede17b6cc6d143f2702516", - "0x00000000000000000000000000000000000785aef7b2e788ec271132c9e3d669", - "0x000000000000000000000000000000d71be9441b59d88e8c2e5cc5672383377f", - "0x00000000000000000000000000000000002c4a2c6d5aac3688df86a78f5e0c5f", - "0x000000000000000000000000000000a42f9d6dfb523a917738d21e5a45ea1ba5", - "0x00000000000000000000000000000000001a0f063676511a5dd95a3336f51767", - "0x0000000000000000000000000000003a9220908fe58119e01e31aadbe2c27d52", - "0x000000000000000000000000000000000009a86c7000c7dcab7a560cf50716cc", - "0x000000000000000000000000000000964c4c58e7cc7f3eb0fa7a961d42fc432b", - "0x000000000000000000000000000000000029d138a959c7c71b2a9042a2fb5812", - "0x000000000000000000000000000000f27ba1ea8743fbe9f4014c188caf138881", - "0x00000000000000000000000000000000002481d75eddfe970b0f5bd90d5a3044", - "0x0000000000000000000000000000000e8fa00ce83e7dad8a2249a8381c5f57f8", - "0x0000000000000000000000000000000000302f09225666a17dedad82ca43da16", - "0x0000000000000000000000000000003a11f3ff7ed5dafa46a8e17ad10d8528d4", - "0x000000000000000000000000000000000028daa2aab093285dcdc2f01b295cd2", - "0x000000000000000000000000000000c47e0c7183bf78529905ebde0e52e8a8da", - "0x00000000000000000000000000000000002d9f06ece033f0bdf74fcc5cb0c389", - "0x000000000000000000000000000000b61e2cc78f69c9d12b2cf873ce56460acb", - "0x00000000000000000000000000000000001ca91a6441e1d918a2f71760e88a10", - "0x000000000000000000000000000000b41933d9f85656709058f0fddcfd5be3e4", - "0x00000000000000000000000000000000002a9bc09dc9ec06eb6ee1ea51a5de24", - "0x000000000000000000000000000000cad3eaab5bbd5744461bcd5956fe88fa4d", - "0x00000000000000000000000000000000001f6b3741c7ba090902fabbe5a681e3", - "0x0000000000000000000000000000006dde40da2faf3d3a9b44d2950c474ccc09", - "0x0000000000000000000000000000000000301fea7d8a0eda5ae0bbf767fd6490", - "0x000000000000000000000000000000f9f66e197773756fd90d81d3bf34cbea82", - "0x00000000000000000000000000000000000105eaeaf72f2686b6317b7d55140f", - "0x0000000000000000000000000000008ea77bae71c047d062115720c184bdd536", - "0x000000000000000000000000000000000030109f001002799e16173f6ca1f7b0", + "0x000000000000000000000000000000c91b09ee4477cad93086589015c19d664d", + "0x000000000000000000000000000000000021255915f66a1fb1c0c45527c0d0b0", + "0x0000000000000000000000000000007f29a552af1d2e40f80e877018051689b2", + "0x00000000000000000000000000000000002a06e2eb9d9e03114039334173bbe6", + "0x00000000000000000000000000000067547e19ec5c471a48e76e3bdfb7b5a823", + "0x00000000000000000000000000000000001fa896438c0f8b4139bb6379e9612a", + "0x0000000000000000000000000000006550158e15b0fe7712727527ea3d0c399b", + "0x000000000000000000000000000000000013d0096d7c4fea967be9b8ee599ef8", + "0x00000000000000000000000000000044123f796c6a94b1c449e8745631eb4d0a", + "0x000000000000000000000000000000000029a4b2664a3afc231fa14965344dda", + "0x000000000000000000000000000000f1c792d80f9a9f902451be8b99273b796a", + "0x0000000000000000000000000000000000208114ac766e8ee1fcefb741617eb4", + "0x000000000000000000000000000000b8ac66b8175c77fbed938fc691f46a291b", + "0x0000000000000000000000000000000000237e86b73a28273c4c7b0572c18f2a", + "0x000000000000000000000000000000a4e297df117a0a695915e0e2dc29d691b9", + "0x00000000000000000000000000000000002350b59c33a549ee165efa5eb86b03", + "0x000000000000000000000000000000e68cdfa136708813d5c551155f77462df5", + "0x000000000000000000000000000000000011d1901f037ad3d16091f13e91cb72", + "0x0000000000000000000000000000006624d40454b46441d73c874b35fb302c88", + "0x00000000000000000000000000000000001f45ba241f056fb577655a0a8325af", + "0x0000000000000000000000000000004f9d11429c2edce01790c07e538f5667cc", + "0x000000000000000000000000000000000006a7ae99867b42c1ec7b865e06c6c4", + "0x0000000000000000000000000000001f2b95639440c1a63877ac345ddc6f31a2", + "0x0000000000000000000000000000000000245f687da57d3b3a0e6ca5130c46b8", + "0x000000000000000000000000000000e6a9379f531ea207de4c38b3eac969d590", + "0x0000000000000000000000000000000000168890ac957e785e5322018a09f155", + "0x000000000000000000000000000000dfc38022eaac25d496a4537759ce2bc920", + "0x00000000000000000000000000000000002bd0c4aa32c8a85d9b5200367521b5", + "0x000000000000000000000000000000758e96a3659a0877b601e21c4269543487", + "0x00000000000000000000000000000000001231cf0520c463ff976a7e02790e09", + "0x000000000000000000000000000000f0759da36dda572ca16a880241cd8dfbe0", + "0x00000000000000000000000000000000001ee5b47453d93f3e8fe6aedd38a111", + "0x000000000000000000000000000000031a0d6c051f70654474717889ab0b40c9", + "0x00000000000000000000000000000000000cb262f60112bed8012e27f9745099", + "0x000000000000000000000000000000d76a3abe4c898fa4180b66e9f702bb4328", + "0x000000000000000000000000000000000007d8fc47186699fb8d2dbbb235e8d5", + "0x000000000000000000000000000000f5cae6ae7f16c1a2dd27284fa8865f2691", + "0x00000000000000000000000000000000001a14f81b7331c73e6a5113af314ee9", + "0x00000000000000000000000000000018c8bfe71feedc009498aeb03e4779f05e", + "0x000000000000000000000000000000000029749134a511152530d6b456e771fc", + "0x0000000000000000000000000000007039fe373dd9498554f0f0b88057f6ee28", + "0x00000000000000000000000000000000002e86ff735bfead8fff1fd217af3b6d", + "0x000000000000000000000000000000eeeed70761f7b7dc833c4e52c065ef889a", + "0x000000000000000000000000000000000014bb2d26b4a88498a132a5d49157bb", + "0x00000000000000000000000000000037f392bebc84b9f68e7481cb636d94930f", + "0x000000000000000000000000000000000012d83bf31021974a9112c057050db4", + "0x000000000000000000000000000000630b174bcfdc99cfffc18c5a3357fc9fd9", + "0x00000000000000000000000000000000002369fa36e6e7b848ae1720a8aded03", + "0x000000000000000000000000000000071dfb07128344beb94865b2545decb893", + "0x00000000000000000000000000000000000cf35f7cda155febb76dabef3f3e46", + "0x0000000000000000000000000000005791274945bfad20980643de4edfb9ece8", + "0x0000000000000000000000000000000000232ea9d7800464c1e8cc8e2bd1e7fa", + "0x0000000000000000000000000000009b01459d542f8bc0ca0c45f7dc010e9d3c", + "0x000000000000000000000000000000000026355b4385dbe5494d06ce1d3aab63", + "0x0000000000000000000000000000005adef58e5dd913443f9236ccde99348012", + "0x000000000000000000000000000000000005c2b48d769c481b64766977be11f5", + "0x0000000000000000000000000000009a9592b8e831c549900823caf6fff2a63b", + "0x00000000000000000000000000000000000ef1f6cb4c305130ffcd2cba7998d5", + "0x000000000000000000000000000000b111ecc0e3b6096d04ab409d1031113d8d", + "0x000000000000000000000000000000000022cb8c3bf6411f00b43b5e144f15db", + "0x000000000000000000000000000000335d82d0e7ad2ab867b3455c5573bc5884", + "0x00000000000000000000000000000000001d9899242d75dd7e50c4d833319255", + "0x000000000000000000000000000000166740b9f2177af9356ae2e97915cd3348", + "0x0000000000000000000000000000000000002001093682571844a66bf3646d95", + "0x000000000000000000000000000000a302265c23a9b1c243e5f25e8608732956", + "0x000000000000000000000000000000000008e05a879e24f9448959f256466f27", + "0x000000000000000000000000000000aa735a464058e8b6b1d1fc4919430e0519", + "0x00000000000000000000000000000000001678d9f1bf9728fbd96b0467dd7bb4", + "0x00000000000000000000000000000011e28678d41b4202fd6b7c8fbb8d3ecacb", + "0x00000000000000000000000000000000001a9429ae351527a73388b5430b9821", + "0x00000000000000000000000000000051c9bf17dfdcc7c5525d039b2c701132db", + "0x00000000000000000000000000000000001b421034d5333685e2fdfa23a43f38", + "0x0000000000000000000000000000005d8d0cc8efa0ed1e5e03fb57dfe90b73fe", + "0x00000000000000000000000000000000002397c69f0bb570b8025cacf29d7bab", + "0x00000000000000000000000000000044a2b1f7a8df29c4a98f722fe4beb7e374", + "0x000000000000000000000000000000000011fcce004e9b51a3c906e106d6cd1b", + "0x000000000000000000000000000000518801da7ba087fcbb0c440943c8086bd8", + "0x000000000000000000000000000000000021b2e6ebb6a8603f94ee106464b003", + "0x00000000000000000000000000000057fdb84a8a159f6db6777b3f08077b5653", + "0x00000000000000000000000000000000000472da363520675cee5aeaad93a0b7", + "0x000000000000000000000000000000f2525afc9880482204e3b4423623980411", + "0x0000000000000000000000000000000000274e7f1480c27d476b86a5f5391c29", + "0x0000000000000000000000000000004a8eddb3b148661c9ac36cce0f1aae8d41", + "0x00000000000000000000000000000000001c73715417505d0b2b64114819a4be", + "0x000000000000000000000000000000950682eb60cb5455d12d47d478edcd8744", + "0x00000000000000000000000000000000002674dcc5c46aace2a7b24c9177bca4", + "0x0000000000000000000000000000009d0400d74c2810099803ce00e4d212e027", + "0x00000000000000000000000000000000002dd78ffbcabe324f8fdd974ba4592e", + "0x000000000000000000000000000000835d6524088c85a6229c253f19f9075a24", + "0x00000000000000000000000000000000000ea53cd2576f3ed59997b9c31ade62", + "0x000000000000000000000000000000b63021ec911d878a8808271f9fc354f6c1", + "0x0000000000000000000000000000000000013899f19981c306831c30f8be091f", + "0x000000000000000000000000000000e9ea0973de12fdbcf9692352b0bb9e126c", + "0x00000000000000000000000000000000000f480ce1fe1a5e6d79c1aea34ff6bd", + "0x000000000000000000000000000000377185add84afd6c2c81cd920469f4eed8", + "0x00000000000000000000000000000000000b30da5e57df9005bb26388bec1e13", + "0x00000000000000000000000000000016d15d01c4e568368a015a4a1bd827a3b9", + "0x0000000000000000000000000000000000181038d51220ac7f524520f4dd4e00", + "0x000000000000000000000000000000f69b5e222476cd81abc41a7e1c7dab2bc2", + "0x00000000000000000000000000000000001fb2cec72c2a711d3a7cd9da9ae57b", "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x00000000000000000000000000000017997d3e492bec45f612f97d982c46c38e", - "0x00000000000000000000000000000000002f4603550f4fe66f59d10cc5793d1b", - "0x0000000000000000000000000000005ddd66c738bd971e2fac64ae136ee46dbe", - "0x00000000000000000000000000000000000219c0a5c46a63a853d5333f873086" + "0x0000000000000000000000000000005a7a656146458b2aa2daea0c7503235726", + "0x00000000000000000000000000000000002ca964e842b63733ebc21c63d14545", + "0x00000000000000000000000000000096a8f72cd3a0e0bfdc0596f85aa3f1f02d", + "0x000000000000000000000000000000000004228f8e981bba79c16e40c2e2dd49" ] -hash = "0x003363a96251eef9cc211656d37bbea68959a4114789bb32ca0bdd63bc2b7bab" +hash = "0x1ce265e7e102a08674a09b24fc17204ecaa5b5b828cfd4a910a9f2cd9b049587" [inputs.previous_rollup_data.vk_witness] leaf_index = "0x000000000000000000000000000000000000000000000000000000000000000a" sibling_path = [ - "0x0b743c7580b3fae05da287242fed79656dccdbca3233a9f038ca4b7b366602e7", - "0x2b58b1d43a0b1a291c016dc04b13afd53cc7f19488fe21455842730e38b177cf", - "0x24b4a9d665f01537d4611a15974ddccff6ad92887063ee9f7f1cc9bbbd6afcfd", - "0x04a097c17f5377c94ec09401ec396021e7c9ee13d981ef339a563b76f7be8df8", + "0x22913f84ca022bd27b6bc5f3cc74b963a529b9c890af5938b29d357ae5b5cb46", + "0x21e70fe2469354bfc7514de8bfc82b272cc362046fb9a108e0819db2b1c9457e", + "0x2489113f912b343d6df5fac3449c1833efd317c0abc64a8ed9d59df4130d7fc6", + "0x2f5f0e8285b051021accb7ac271d2a103f043226b5eaf3597a23e6535bd9eb97", "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] [[inputs.previous_rollup_data]] [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs] -previous_block_hash = "0x107e5ba66286fc70c792c2f59e21531af29c38879d6e8dac54f7dc57c4a6b4df" -end_block_hash = "0x0d7012464c4611dd9c270a3347068372181aeada51773320b5b03d71c9c39033" out_hash = "0x00db4f24d6eff7983ec163d02c230d6a44237feabd8a2da284edce08afc71435" -vk_tree_root = "0x0f41ca517c1c4dabab14d88d50dcbaa9638b23bfdbc28fa3a94d7260ef0c7427" -protocol_contract_tree_root = "0x0af0a7a13726bd13afe2a3fbfa52690c43ca774227d6c2bfe86fce93c387953a" +vk_tree_root = "0x18c54e1814ecadeffcd11feed9049f02d31148f4457ddcf84e4d580bbc5ccb0f" +protocol_contract_tree_root = "0x2098b90e2b21f02ad7a1fc6afcf944ef3685236caeb015b51a502471c492cdfb" prover_id = "0x0000000000000000000000003c44cdddb6a900fa2b585dd299e03d12fa4293bc" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.previous_archive] - root = "0x1f7a1f2c370c7feb3411a7b2abf18f49678ee4a5bab4d9d51d31978f60b8a90e" + root = "0x0d3828a8fd93fdb49ce09ccc58b3a5903cd3c87783948c2095687dcf7fd44bc7" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000008" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.new_archive] - root = "0x1436a22b4180f43cca1ec2de0f2166a4d514a69bcce6cd19ec7efd74496fe380" + root = "0x00e90e8835f281e4326e5f50c81dd69a65415ac31e4802a55275ebe02627a7e4" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000009" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000008" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000013" - timestamp = "0x00000000000000000000000000000000000000000000000000000000680688ab" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680784cd" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fe0" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fd6" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000008" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000013" - timestamp = "0x00000000000000000000000000000000000000000000000000000000680688ab" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680784cd" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fe0" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fd6" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees]] - value = "0x0000000000000000000000000000000000000000000000000000000043809ba0" + value = "0x00000000000000000000000000000000000000000000000000000000401a4e7a" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees.recipient] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees]] value = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -3714,19 +3710,19 @@ prover_id = "0x0000000000000000000000003c44cdddb6a900fa2b585dd299e03d12fa4293bc" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs]] [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner]] -z = "0x1b8f1b0792d5a40a145630f894ddfeee9c298abf207182df0b3e3770d745431a" +z = "0x02a57e7dcfee562691e9f705a27dffc2411694a45dd299cc0e46c2a98323f606" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner.y] limbs = [ - "0x3fcc98a2a678ae22634f60d332decf", - "0x72608a0aef2db8790c51b572dc9ac9", - "0x5491" + "0xd7ec2deb3f32934971e36ab8690cee", + "0x306b16f20e668e5070e903183314cb", + "0x339b" ] [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner.kzg_commitment] inner = [ - "0x00b254cbfe78b8445bf9390be85821266de78209f1c11f2cb5f1e9e058c4ddd2", - "0x0000000000000000000000000000001244f1e204042a948000d8efcfda01c01a" + "0x008abf61373dd489794229987b3f1e6549b102719f023a973ab284074469c7cf", + "0x0000000000000000000000000000009c8747b18cf207a60939988ca7a69d327c" ] [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner]] @@ -6606,9 +6602,11 @@ fields = [ [inputs.previous_rollup_data.vk] key = [ "0x0000000000000000000000000000000000000000000000000000000000800000", - "0x00000000000000000000000000000000000000000000000000000000000003f6", + "0x00000000000000000000000000000000000000000000000000000000000003f4", "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000001", + "0x00000000000000000000000000000000000000000000000000000000000003da", + "0x00000000000000000000000000000000000000000000000000000000000003db", "0x00000000000000000000000000000000000000000000000000000000000003dc", "0x00000000000000000000000000000000000000000000000000000000000003dd", "0x00000000000000000000000000000000000000000000000000000000000003de", @@ -6624,126 +6622,124 @@ key = [ "0x00000000000000000000000000000000000000000000000000000000000003e8", "0x00000000000000000000000000000000000000000000000000000000000003e9", "0x00000000000000000000000000000000000000000000000000000000000003ea", - "0x00000000000000000000000000000000000000000000000000000000000003eb", - "0x00000000000000000000000000000000000000000000000000000000000003ec", - "0x000000000000000000000000000000a67f38c2bea79dc81b1696082beeb2e2fe", - "0x00000000000000000000000000000000002ea5a62695542cb4a8edde3d378b6b", - "0x0000000000000000000000000000008991670c15afa171f4f713cf68107398a1", - "0x00000000000000000000000000000000000c2ec7fe88671dd46d7758d0faf924", - "0x00000000000000000000000000000063bcdf5f4ad40719caec3d702adc8d3757", - "0x000000000000000000000000000000000001f25de378e0485b8d5ae57443c323", - "0x000000000000000000000000000000b7544d6e886f6c8be16328afd9d82659f6", - "0x0000000000000000000000000000000000046da4f7aae756faa34bdd7f93807a", - "0x0000000000000000000000000000002cc4d09a101a35effc5084784c86bb0a64", - "0x000000000000000000000000000000000028dc345710545b0e5131c7ff2c7f85", - "0x0000000000000000000000000000009e877f8807c3ebcbf149b6928e2d3955bc", - "0x000000000000000000000000000000000027b85cd67b2af97d496a3830572a4e", - "0x00000000000000000000000000000086be615181e1111bc407d7fdaaaf80aba2", - "0x0000000000000000000000000000000000250ed0c1565056884cae1f8f100b64", - "0x000000000000000000000000000000609e22c40e27819fef1d996ceb4529bd6c", - "0x00000000000000000000000000000000002320abcd12ee89fea49ee084f642fd", - "0x000000000000000000000000000000fcc1ae3262507d72ec4840439687b3f232", - "0x00000000000000000000000000000000002d1dc9d99c3f09ec450db689da60d0", - "0x000000000000000000000000000000132a0722aa0bcd810dea0003f5675849c8", - "0x00000000000000000000000000000000002ea0ca19eeed02a6cd8b2e22ef9146", - "0x000000000000000000000000000000f3b97807999c18c8ca1a021b2335d84ab5", - "0x00000000000000000000000000000000000505320db4b7a2743d89a8f218c65b", - "0x0000000000000000000000000000004c65a8a567fcf9cbc912114f54dd89fe10", - "0x000000000000000000000000000000000006dcf221e770813589911fdde1e415", - "0x000000000000000000000000000000a4184db5c37fb1cac638cfa9976d4e6111", - "0x000000000000000000000000000000000013cba8a2ad55e65f6de77a883b4bfb", - "0x0000000000000000000000000000005508c3c87897b3c27f01e15d39454d572d", - "0x00000000000000000000000000000000000c03afe0c334e840f52decc868ce1f", - "0x000000000000000000000000000000b54c2347c059bd0897274f2a06b9852867", - "0x00000000000000000000000000000000002a8c40de79cc7edb0cd34599a0b695", - "0x0000000000000000000000000000003a675ceb511512ede468312e41ddf079b5", - "0x000000000000000000000000000000000021337a2cae9b465d22a576381cf2a7", - "0x000000000000000000000000000000a8e99315ee1e893fd379f7305bd99f9f08", - "0x0000000000000000000000000000000000276ab90ff7f7b8a3ed0eb96d2ddb80", - "0x00000000000000000000000000000066491b529101d7821963a19a4a65654303", - "0x00000000000000000000000000000000001e286be1145d3778d81557b22f5191", - "0x0000000000000000000000000000009129d371ad9ba9f0ae0d1c094a0e09b4e9", - "0x000000000000000000000000000000000000d866f14e5a4072ad4139bbe19747", - "0x0000000000000000000000000000003d07ec532e6d9ca9a1c482f6a9ffca4d39", - "0x00000000000000000000000000000000001606838b1b4600ef3ccafb0378a816", - "0x0000000000000000000000000000000d81a2b8be7532d47441f0907ea420cc14", - "0x00000000000000000000000000000000001bc9fea9235ac08fc81c7391c33b74", - "0x00000000000000000000000000000013c6e1809869ebc4cd64b80f026030935a", - "0x000000000000000000000000000000000014b2141bc4e0890accc0da84659ff1", - "0x0000000000000000000000000000000a80fcbd2631bec07fa84a5e938c403878", - "0x00000000000000000000000000000000000133ab51eeebb770dd70b5834ba10d", - "0x00000000000000000000000000000098d7a265b57d9e90f120eabf5923dd28b1", - "0x00000000000000000000000000000000002125f1070b4b3fe3230dbb3d60195f", - "0x0000000000000000000000000000007321e14210112e2b8d50f75e0b4ff1a80c", - "0x000000000000000000000000000000000020e04f5c65d437c297c1765045c090", - "0x0000000000000000000000000000008c30e023e86d23c95855ac0b5369adce30", - "0x00000000000000000000000000000000000877de6938866e5f751fa144622977", - "0x00000000000000000000000000000073b230c0cfde5ce8ad6af2f9787f2da4b0", - "0x00000000000000000000000000000000001e5d9fefa965a2d11769f99b342bbd", - "0x0000000000000000000000000000008a71ebdded89fa57bd822979bbb0acfaae", - "0x000000000000000000000000000000000004d57b1383301cbf2c0aac8d3bd425", - "0x0000000000000000000000000000007a7e845842e54c40f2748a2165c6d9ff9e", - "0x00000000000000000000000000000000000091c362280893a6bf315026fcb841", - "0x000000000000000000000000000000243775970b14425273c34af013d924e4bb", - "0x0000000000000000000000000000000000087b1811fb438587a82cb932e30c33", - "0x000000000000000000000000000000578c8ec798deb4c0345329ddf8d42b1e01", - "0x00000000000000000000000000000000002f9bd43af5c343aa0c790eeda49ebb", - "0x00000000000000000000000000000070cedfd74af0c97c63357a0b0123fe8704", - "0x00000000000000000000000000000000002e352b63595587b4814ce838b467ee", - "0x0000000000000000000000000000007390708051edfa39b9a264a76cc2cdc6f9", - "0x00000000000000000000000000000000002ca92cdf6d78df8568203092b54061", - "0x0000000000000000000000000000005dde44c7ab7f73b8a761a08e4532bd643a", - "0x000000000000000000000000000000000028c955eba9b4c8700e02973ce55528", - "0x000000000000000000000000000000dca2fe54854d2978a0339f623ed82e8e9b", - "0x00000000000000000000000000000000000c868c511e35ce37e5a4c522b059f2", - "0x000000000000000000000000000000df91c979b83fc8ac638ef8f984807715de", - "0x00000000000000000000000000000000001fa83ddb7d5ab68b3d3c53068b3fbc", - "0x000000000000000000000000000000d5d5d11f72adddbfda8883b09e568e8dfb", - "0x000000000000000000000000000000000025046a0c4b8cb333156ffa9cda062e", - "0x000000000000000000000000000000295ee515ce7a700b4da1bfc8de86ea02af", - "0x0000000000000000000000000000000000250555ed07722370c8542dcd815613", - "0x00000000000000000000000000000072ec89bdf830ff04efcf1c4b8e7ac1e536", - "0x00000000000000000000000000000000002d00693175c1a1b9f65ba24a122129", - "0x00000000000000000000000000000035e5c65c42bd86703e09dcb4077ccd0075", - "0x0000000000000000000000000000000000070d74c8d0409bad2dc942a9f433be", - "0x000000000000000000000000000000a9912e4370e71aed72241892d446027048", - "0x00000000000000000000000000000000000b9ebeffec7d1c754d040790294d54", - "0x00000000000000000000000000000044c0bbae57bbb686424ae7b81aaa5fae5d", - "0x000000000000000000000000000000000027bdfcc9d736724af10bbde2ca2e6a", - "0x000000000000000000000000000000ed26fb12986cd667fcba42365ddbb9b6ad", - "0x0000000000000000000000000000000000167ef11820be80d81873d2145548c3", - "0x0000000000000000000000000000004d46f904fbe8737686a3971c16019affc0", - "0x000000000000000000000000000000000018586da611d78861cf143842e53583", - "0x000000000000000000000000000000e8bd7cd4fb9d35d9499aaf407b7abdfac7", - "0x0000000000000000000000000000000000065445913ab6f515d960c857708b11", - "0x000000000000000000000000000000f33908cfd5ee379f8aca8f4d367d8c4c0e", - "0x00000000000000000000000000000000002b1a955d0dca720f4626454b06b460", - "0x000000000000000000000000000000c764e67ad851f627d321ef5002b8d90fdd", - "0x00000000000000000000000000000000002107cb9b5d8aa44c72bf36c82e09f7", - "0x0000000000000000000000000000009e4c78efb4910ce95b5318a84ee08417e3", - "0x0000000000000000000000000000000000302e6831d6322b99634bd4923ac878", - "0x000000000000000000000000000000e8283266542c57c6c397d31d769e7307d4", - "0x000000000000000000000000000000000005b2c48b0a73812b73058bc562308f", - "0x000000000000000000000000000000e03aa6800d89ad6f05b4f5514f9800de48", - "0x000000000000000000000000000000000021715518aec2ecbec9ccecc876b383", + "0x00000000000000000000000000000014361f342690cd4deb4d40f30978eb3c38", + "0x00000000000000000000000000000000000caeea6096551ca77d1247c82b324f", + "0x000000000000000000000000000000bff0865704c1d910f2f25f85e1b25b2a54", + "0x000000000000000000000000000000000017ad3edce86c42c71c9c80a3cf5c0c", + "0x000000000000000000000000000000aa44e82cd3ca93e13894098623ad97fb91", + "0x00000000000000000000000000000000001bc14642ea86b1fcac6762deedcc1e", + "0x000000000000000000000000000000dc412ac4fb86b0e7495bb97b461d6376ae", + "0x000000000000000000000000000000000021058a5dea33a62a9f749286f53f9c", + "0x000000000000000000000000000000e70eeb8de36491eab8bb58169933aa87df", + "0x00000000000000000000000000000000001d93e082a3e6e2ef1c1d876d20ed05", + "0x0000000000000000000000000000005c50d01d5da87584cdff9cc21d2a85d601", + "0x0000000000000000000000000000000000104b56de344b70da70b2fcabb2b827", + "0x00000000000000000000000000000095ab56c9a0fa796c1ada7c49aa9c06fdd1", + "0x000000000000000000000000000000000011dc4a39de2594d76a4de0cd5560aa", + "0x0000000000000000000000000000009e0a7116b667b2928dc220809d5184b067", + "0x00000000000000000000000000000000000b1beb6b3892541efaf02786d44da7", + "0x0000000000000000000000000000004a48825cebf72755a41cce48d5897e0c19", + "0x00000000000000000000000000000000002a4029cc4391f7c440dabcaa4c750d", + "0x0000000000000000000000000000000917c98a10d134a0f732cb3d6f8a540ef6", + "0x00000000000000000000000000000000000c9b78c35eea7f9deea1cf22fb1d4a", + "0x000000000000000000000000000000c47b486492c330bee443920e46cdf3115f", + "0x00000000000000000000000000000000000ab1a24cebe015c666b3a9803ea2b4", + "0x00000000000000000000000000000022a56721ba6437587c8199c7dc0f154f9c", + "0x00000000000000000000000000000000001074affacc4cc82092090ac622d54e", + "0x000000000000000000000000000000e22cf3743e5cb7f3a371bafa34a51c6f3e", + "0x0000000000000000000000000000000000174619de5df7d784e3601e194d981a", + "0x000000000000000000000000000000911c4ac4eb3c690d3b6aaab8591d96837b", + "0x00000000000000000000000000000000002272ec1535e8941efb0182efe0574e", + "0x00000000000000000000000000000025590d64148dff3ca7d35829ab863d1195", + "0x00000000000000000000000000000000002c21d182318b6ce11e9ac0e88e0564", + "0x0000000000000000000000000000008c99eec57242eb9430cec48f460f649755", + "0x000000000000000000000000000000000004d517eb4437cc7d9a941f8306bc74", + "0x00000000000000000000000000000004d354aa1e0205e8cc8577c5c446ebac58", + "0x00000000000000000000000000000000000e72673d45a8f370e9818cc643a269", + "0x0000000000000000000000000000008ca3156422032e0309d328651b82ac67b6", + "0x00000000000000000000000000000000001807e5a4f4c9f49878c4db5065ba15", + "0x0000000000000000000000000000006a89aa484c0463d54cfb666cad405bd897", + "0x00000000000000000000000000000000000231c0c3b7c07fc4e1154b750a1068", + "0x000000000000000000000000000000cfe82657adaf901c15f6c5e6e962cd8d08", + "0x000000000000000000000000000000000006af5efaa75283a8fecfc804f3054a", + "0x0000000000000000000000000000005b8348629164a83e2a680cee036152574b", + "0x0000000000000000000000000000000000188dad005a25e0b77e62b6b1d5e69f", + "0x0000000000000000000000000000003073e98f5595a82929d13bc72edacbff27", + "0x0000000000000000000000000000000000002b59117c5ccb2b61503346d366ef", + "0x0000000000000000000000000000000dd50bce82c9a75e49971f1a5a2e2c9d1b", + "0x000000000000000000000000000000000000fefab39c7f8c75089d47c8fa2613", + "0x000000000000000000000000000000a0d638b343691be265311b35a4c77b4eda", + "0x0000000000000000000000000000000000248556d390ca336c899a93ce4e2a56", + "0x0000000000000000000000000000002a5ff9a32c343499c353d62ef73397bd08", + "0x00000000000000000000000000000000002fa462cce54e8fd540312b856dec55", + "0x00000000000000000000000000000010eeef50eb562c486766243b2d6a0261c2", + "0x00000000000000000000000000000000001137f554fe0dcb1fb2c800c5172619", + "0x00000000000000000000000000000030be9f37a22ff72b5f16dace7cabccd95c", + "0x0000000000000000000000000000000000264252493b3a633b66fba48ebba3c4", + "0x0000000000000000000000000000004cacfdc3394ad0604a4a6792f6b49b9102", + "0x00000000000000000000000000000000001801d22fe50c50879eeb96cc99e6ba", + "0x00000000000000000000000000000000a556461f5f8894dc8935bb9f44b6c263", + "0x000000000000000000000000000000000014fad790756dfcd38939802545e75f", + "0x00000000000000000000000000000021a23d49055b34c06a03aac2b31eb07c0b", + "0x000000000000000000000000000000000022105e4a6c0352d8f96605d5c6f32f", + "0x000000000000000000000000000000f47d6f448765953ee793ccee38b21334f9", + "0x00000000000000000000000000000000001e76374ed7569f8a0f034f11d93bbe", + "0x0000000000000000000000000000002a1cd67d3409f9eb2899c9b088ea5a6b36", + "0x0000000000000000000000000000000000203b27ae5626ea986af8e1be098a7f", + "0x0000000000000000000000000000003e5a8374e4a7afed06dc2c4af8b1d462c3", + "0x0000000000000000000000000000000000118d66f0e0de545aa1fb6a62d2b9bd", + "0x0000000000000000000000000000007395a59a5f72ddc3229ebad099d12fc834", + "0x00000000000000000000000000000000000e52049337b35e4423ad4f37252071", + "0x0000000000000000000000000000003b2e5e724b898611c08e724266641e05e8", + "0x00000000000000000000000000000000001b485375a2ad236f002f0963ddca2d", + "0x0000000000000000000000000000000653da5167498b557b45db75a9782add83", + "0x000000000000000000000000000000000015fa7461195e1bfe95bb8455a36a3c", + "0x000000000000000000000000000000407e7accd0f34df669de2258bff4a53bfd", + "0x00000000000000000000000000000000000fc5c3617d87a91a916773b14d3468", + "0x0000000000000000000000000000001e696b4fd28fe9f63adfd2e9e10079a47d", + "0x00000000000000000000000000000000001f6d82cf182394396522db3584f6c5", + "0x0000000000000000000000000000001ddd90c26515b53f2dea5f82b5d5a48261", + "0x000000000000000000000000000000000029fef3405a7604dfcbeaa7c01c184c", + "0x000000000000000000000000000000123e0f04860e1f83e4fdcdcd796da1b883", + "0x00000000000000000000000000000000000f02fb7bbccb43481063825d962456", + "0x000000000000000000000000000000539a0777f0b167cccfbd0d91432aa78413", + "0x00000000000000000000000000000000001c143785d16eeaf944b162e66a633a", + "0x000000000000000000000000000000549cb733a91d85ed5be8ddca9920a14915", + "0x000000000000000000000000000000000018f77a7c8986165b4f2a394cef2061", + "0x00000000000000000000000000000050d1b6dfaff2d2c5abe4ed8c56cc176dc5", + "0x000000000000000000000000000000000025ff411db197a1f181b2966f397e86", + "0x000000000000000000000000000000e2e587d24b0ad383cfd47adc734958a6ef", + "0x000000000000000000000000000000000007ba08b5e67c187210ed06db4bf394", + "0x000000000000000000000000000000620e9b3d19c8cdff7e3a31fa3fc0c168dc", + "0x0000000000000000000000000000000000010aedec6b4712a533b6efea7019d1", + "0x00000000000000000000000000000063cde6622d653dbd3321a6cfc6a2d3d6c5", + "0x0000000000000000000000000000000000008438b4884539fa320e9323d1f484", + "0x00000000000000000000000000000026a3b7eafa0d91361a86c3901078392db1", + "0x00000000000000000000000000000000001ef0e855b11bb37d7a306198d1d6af", + "0x0000000000000000000000000000006fc7532a51760b09301fc1d0f165815d21", + "0x00000000000000000000000000000000002711b761e5f73eace7dd8c66c0c711", + "0x000000000000000000000000000000afdfcd94b14289ae8727001d12b2e35dac", + "0x0000000000000000000000000000000000136609fbf4de871dc22fb27033dfab", + "0x0000000000000000000000000000002cd4d9cfe09a023e3fb6fd74baf2689b82", + "0x00000000000000000000000000000000000c9054a9084deaa4ce84c4673a73d3", "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x000000000000000000000000000000a3b19d55a4bad664b00349216a7f7ca471", - "0x000000000000000000000000000000000024c74d5282cf3bc3ea013902a51815", - "0x000000000000000000000000000000a2c4e856fb1d37d563d7b15d6de69600c3", - "0x00000000000000000000000000000000000f32679f385f980fb1c92f75df1ab8" + "0x0000000000000000000000000000009be60c96af032327e34113ac4dedb692f6", + "0x0000000000000000000000000000000000070342ee4b19b68e7978888625616c", + "0x0000000000000000000000000000009abf3c6aa16ea9b2f9d5795c14637641c6", + "0x000000000000000000000000000000000015bcc6645ec86c222a69d2426f4016" ] -hash = "0x05190bfb829fdf455187cce59285c5d5b49219228b207ae40bba5d062dac92ea" +hash = "0x036aa8c1ad36f39d58374255796c7367c09d8e18bfb2977c9187f222dfc90224" [inputs.previous_rollup_data.vk_witness] leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000009" sibling_path = [ "0x213fb9c7202198fffd4baec80885d5a42ffa329b5297936c925c3d68a05485be", - "0x2329f0530daa44647914ea8ad0cdcf30191eaf13ee67ba09908271920a327c60", - "0x24b4a9d665f01537d4611a15974ddccff6ad92887063ee9f7f1cc9bbbd6afcfd", - "0x04a097c17f5377c94ec09401ec396021e7c9ee13d981ef339a563b76f7be8df8", + "0x12362d30d5079f57e1cd1171ce0057b21c3962d2ba7d7c461645b5b09ef44f31", + "0x2489113f912b343d6df5fac3449c1833efd317c0abc64a8ed9d59df4130d7fc6", + "0x2f5f0e8285b051021accb7ac271d2a103f043226b5eaf3597a23e6535bd9eb97", "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-block-root/Prover.toml b/noir-projects/noir-protocol-circuits/crates/rollup-block-root/Prover.toml index 49ebe15b4efb..8196fb1dc931 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-block-root/Prover.toml +++ b/noir-projects/noir-protocol-circuits/crates/rollup-block-root/Prover.toml @@ -3,56 +3,56 @@ rollup_type = "0x0000000000000000000000000000000000000000000000000000000000000001" num_txs = "0x0000000000000000000000000000000000000000000000000000000000000002" out_hash = "0x00f5a5fd42d16a20302798ef6ed309979b43003d2320d9f0e8ea9831a92759fb" -accumulated_fees = "0x0000000000000000000000000000000000000000000000000000000030c4ca40" -accumulated_mana_used = "0x00000000000000000000000000000000000000000000000000000000000187ae" +accumulated_fees = "0x000000000000000000000000000000000000000000000000000000002d6b14d0" +accumulated_mana_used = "0x0000000000000000000000000000000000000000000000000000000000016d38" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants] - vk_tree_root = "0x0f41ca517c1c4dabab14d88d50dcbaa9638b23bfdbc28fa3a94d7260ef0c7427" - protocol_contract_tree_root = "0x0af0a7a13726bd13afe2a3fbfa52690c43ca774227d6c2bfe86fce93c387953a" + vk_tree_root = "0x18c54e1814ecadeffcd11feed9049f02d31148f4457ddcf84e4d580bbc5ccb0f" + protocol_contract_tree_root = "0x2098b90e2b21f02ad7a1fc6afcf944ef3685236caeb015b51a502471c492cdfb" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.last_archive] - root = "0x1f7a1f2c370c7feb3411a7b2abf18f49678ee4a5bab4d9d51d31978f60b8a90e" + root = "0x0d3828a8fd93fdb49ce09ccc58b3a5903cd3c87783948c2095687dcf7fd44bc7" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000008" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000008" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000013" - timestamp = "0x00000000000000000000000000000000000000000000000000000000680688ab" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680784cd" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fe0" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fd6" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.note_hash_tree] -root = "0x1be2d9ba565b13aab58c5d47326ef65195646726dfcd887dfd1bb5b740ab0470" +root = "0x2205a826a3f9516231b2edd7cb8f0573517202c36c5935573a30020f5b5b9791" next_available_leaf_index = "0x00000000000000000000000000000000000000000000000000000000000001c0" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.nullifier_tree] -root = "0x0629ae46bbfbe94e9cf1c7c357796255fc3086094102b16bbe46b0c2645ecd6e" +root = "0x04f4bf59e2a38d5910ae6ff74c70fe0c4bad3b82d5fd5a85b89fc98a4381d569" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000240" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.public_data_tree] -root = "0x1af12b3c1566fb5504d12d5f57ed340c9e6fbdef31ded5265e5b6c99b7f1ec98" +root = "0x150991e665deef36358651132dae8ed393beb6033496590a727d84e6d72f2385" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.note_hash_tree] -root = "0x270f4d1f827decbabee53c6fc37a1cddd5037d8726b5e64679120e6545243dbe" +root = "0x0e78f1d5dec20ceac046bed6d2695d5086169440bdcd985416da690e4555cd13" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000240" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.nullifier_tree] -root = "0x08c558ea90d328ca7c6035bb7f74bafe2c1ad1ec1d5222d1b966448f32e620cd" +root = "0x027e0b77bd515faf05c278bbd22692ef6c2daf9262660da2f2285e7f4a276282" next_available_leaf_index = "0x00000000000000000000000000000000000000000000000000000000000002c0" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.public_data_tree] -root = "0x132907e01eff41322b0c94c84994f3e03b60ecb704df43106a15c057d58abc09" +root = "0x23045d8524ba8a3266bdc3c79c9343c058d86f2adc267433d1f7b5bda53dfc16" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start_sponge_blob] @@ -80,15 +80,15 @@ next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000 [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end_sponge_blob.sponge] cache = [ - "0x00000000000000000000000000000000000000000000021e19e0c9b082deceea", + "0x00000000000000000000000000000000000000000000021e19e0c9b102f93bb0", "0x00000000000000000000000000000000000000000000000000000000000003e8", - "0x00cb2426dd7547fb371e50b1861ce295c8850a11cd5546aefafe62002801af77" + "0x18d96139c7e5ebed33c1dcef805f02ca611ca80bb132169d411007c8b4d4d654" ] state = [ - "0x1c2675094132c5e5b39d289e0a35c55437ba280ad3bb6ddfd29a946cf18c7b6d", - "0x24aed04ae991f9e567ae9d7cfdc2109711a44e348011357bf2af79844da9b876", - "0x303bf33985a8528aa24fe9a776bf0377bcb8e6fe7682322bac31683d64e7c664", - "0x00409bc421d8bb49c43f21e2ff2a68c7c62af0285ab287f3f33f8e34a834bc8b" + "0x0c77bf4c89940f917c1217a13ac86017dcdde1a5ee98c5bb430e651b905683b9", + "0x0ecb9ec3eb7eb81eeb5a691167a965a033bce02d845ac8a2feb8f5776ae8fd8c", + "0x2af2576a0bd8ad1889a14910de4a3d568df46fc8c239488315ba2c00554a7938", + "0x0629b1095bf45777cba95efd372c6aa521851b843df2bff16e5edf5ed499fbd5" ] cache_size = "0x0000000000000000000000000000000000000000000000000000000000000001" squeeze_mode = false @@ -769,10 +769,10 @@ hash = "0x213fb9c7202198fffd4baec80885d5a42ffa329b5297936c925c3d68a05485be" [inputs.previous_rollup_data.vk_witness] leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000008" sibling_path = [ - "0x05190bfb829fdf455187cce59285c5d5b49219228b207ae40bba5d062dac92ea", - "0x2329f0530daa44647914ea8ad0cdcf30191eaf13ee67ba09908271920a327c60", - "0x24b4a9d665f01537d4611a15974ddccff6ad92887063ee9f7f1cc9bbbd6afcfd", - "0x04a097c17f5377c94ec09401ec396021e7c9ee13d981ef339a563b76f7be8df8", + "0x036aa8c1ad36f39d58374255796c7367c09d8e18bfb2977c9187f222dfc90224", + "0x12362d30d5079f57e1cd1171ce0057b21c3962d2ba7d7c461645b5b09ef44f31", + "0x2489113f912b343d6df5fac3449c1833efd317c0abc64a8ed9d59df4130d7fc6", + "0x2f5f0e8285b051021accb7ac271d2a103f043226b5eaf3597a23e6535bd9eb97", "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] @@ -782,56 +782,56 @@ sibling_path = [ rollup_type = "0x0000000000000000000000000000000000000000000000000000000000000000" num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" -accumulated_fees = "0x0000000000000000000000000000000000000000000000000000000012bbd160" -accumulated_mana_used = "0x0000000000000000000000000000000000000000000000000000000000009675" +accumulated_fees = "0x0000000000000000000000000000000000000000000000000000000012af39aa" +accumulated_mana_used = "0x000000000000000000000000000000000000000000000000000000000000963f" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants] - vk_tree_root = "0x0f41ca517c1c4dabab14d88d50dcbaa9638b23bfdbc28fa3a94d7260ef0c7427" - protocol_contract_tree_root = "0x0af0a7a13726bd13afe2a3fbfa52690c43ca774227d6c2bfe86fce93c387953a" + vk_tree_root = "0x18c54e1814ecadeffcd11feed9049f02d31148f4457ddcf84e4d580bbc5ccb0f" + protocol_contract_tree_root = "0x2098b90e2b21f02ad7a1fc6afcf944ef3685236caeb015b51a502471c492cdfb" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.last_archive] - root = "0x1f7a1f2c370c7feb3411a7b2abf18f49678ee4a5bab4d9d51d31978f60b8a90e" + root = "0x0d3828a8fd93fdb49ce09ccc58b3a5903cd3c87783948c2095687dcf7fd44bc7" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000008" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000008" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000013" - timestamp = "0x00000000000000000000000000000000000000000000000000000000680688ab" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680784cd" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fe0" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fd6" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.note_hash_tree] -root = "0x270f4d1f827decbabee53c6fc37a1cddd5037d8726b5e64679120e6545243dbe" +root = "0x0e78f1d5dec20ceac046bed6d2695d5086169440bdcd985416da690e4555cd13" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000240" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.nullifier_tree] -root = "0x08c558ea90d328ca7c6035bb7f74bafe2c1ad1ec1d5222d1b966448f32e620cd" +root = "0x027e0b77bd515faf05c278bbd22692ef6c2daf9262660da2f2285e7f4a276282" next_available_leaf_index = "0x00000000000000000000000000000000000000000000000000000000000002c0" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.public_data_tree] -root = "0x132907e01eff41322b0c94c84994f3e03b60ecb704df43106a15c057d58abc09" +root = "0x23045d8524ba8a3266bdc3c79c9343c058d86f2adc267433d1f7b5bda53dfc16" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.note_hash_tree] -root = "0x270f4d1f827decbabee53c6fc37a1cddd5037d8726b5e64679120e6545243dbe" +root = "0x0e78f1d5dec20ceac046bed6d2695d5086169440bdcd985416da690e4555cd13" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000280" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.nullifier_tree] -root = "0x229e3dd5a33a6a8297afebed828807e5878c4b00d74f213ce08e712437389c71" +root = "0x1cdcf3f81d3f8a38753a350f7c452a9771eb4ed31e4c5e898ee4ea9ba3b33afa" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000300" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.public_data_tree] -root = "0x085e05f86513d51e9f31237f24be2c331967c2e152bb2ca56e67ae0bd5035226" +root = "0x26b61fd8b4fac08968040eceda7dfe8dfb0f1a3ee607987c21e5b6945c612ce1" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start_sponge_blob] @@ -840,15 +840,15 @@ next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000 [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start_sponge_blob.sponge] cache = [ - "0x00000000000000000000000000000000000000000000021e19e0c9b082deceea", + "0x00000000000000000000000000000000000000000000021e19e0c9b102f93bb0", "0x00000000000000000000000000000000000000000000000000000000000003e8", - "0x00cb2426dd7547fb371e50b1861ce295c8850a11cd5546aefafe62002801af77" + "0x18d96139c7e5ebed33c1dcef805f02ca611ca80bb132169d411007c8b4d4d654" ] state = [ - "0x1c2675094132c5e5b39d289e0a35c55437ba280ad3bb6ddfd29a946cf18c7b6d", - "0x24aed04ae991f9e567ae9d7cfdc2109711a44e348011357bf2af79844da9b876", - "0x303bf33985a8528aa24fe9a776bf0377bcb8e6fe7682322bac31683d64e7c664", - "0x00409bc421d8bb49c43f21e2ff2a68c7c62af0285ab287f3f33f8e34a834bc8b" + "0x0c77bf4c89940f917c1217a13ac86017dcdde1a5ee98c5bb430e651b905683b9", + "0x0ecb9ec3eb7eb81eeb5a691167a965a033bce02d845ac8a2feb8f5776ae8fd8c", + "0x2af2576a0bd8ad1889a14910de4a3d568df46fc8c239488315ba2c00554a7938", + "0x0629b1095bf45777cba95efd372c6aa521851b843df2bff16e5edf5ed499fbd5" ] cache_size = "0x0000000000000000000000000000000000000000000000000000000000000001" squeeze_mode = false @@ -859,15 +859,15 @@ next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000 [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end_sponge_blob.sponge] cache = [ - "0x00cb2426dd7547fb371e50b1861ce295c8850a11cd5546aefafe62002801af77", - "0x00000000000000000000000000000000000000000000021e19e0c9b07022fd8a", - "0x0d276f24617f511e59fd25490f3cfbf48d2da5316bbe844093e4e2a81cd506bb" + "0x18d96139c7e5ebed33c1dcef805f02ca611ca80bb132169d411007c8b4d4d654", + "0x00000000000000000000000000000000000000000000021e19e0c9b0f04a0206", + "0x2767f9570de8773ff9c0ee7316694a7959e85930a452a3b991946494c036e37f" ] state = [ - "0x188a3c7107d47346d78fbea0b59fce14a7150320e0d8ddee1b0e86bedc795eb8", - "0x2fcf95b5b0a3a6effe99e8f4b7c0b7dcad5ab25b0479748ce298837ea5b68de5", - "0x1bd9e4366083c90a6f6581932b9f26cd015217c6caec70dabe9968115a5853fc", - "0x2998170972060e10b9d733a9e420bb95c910ea150ae3772c36eb3d66e0b64068" + "0x1666a8700b7a0fbc5f4fa2c2cd683a44dedf1caceb6defb0bc0aa49541ec8313", + "0x1f16ad0681ed021f3b581053e2fd2d3de5a77e501f3e3b41904f4e1197bf8157", + "0x11907a0c0955aa8e9e2b53c2170d796cf74c79d410fe87f9f40564f2129c284b", + "0x0337bac06464bd2fb20a980aa908b6f8e7b63826bbba80b1616e81dcc0eaa9a4" ] cache_size = "0x0000000000000000000000000000000000000000000000000000000000000002" squeeze_mode = false @@ -1434,90 +1434,90 @@ key = [ "0x0000000000000000000000000000000000000000000000000000000000000042", "0x0000000000000000000000000000000000000000000000000000000000000043", "0x0000000000000000000000000000000000000000000000000000000000000044", - "0x000000000000000000000000000000d0b1197f7bfffd38b595bcff0d5910ecde", - "0x000000000000000000000000000000000018801fc3fa8ead73b87a2860434d94", - "0x000000000000000000000000000000e1cec157d1f63dc6e753da9cde023aa4fc", - "0x00000000000000000000000000000000002ca649dd79903f83ef16e61d29bf3d", - "0x00000000000000000000000000000005f525ab89136f84aa1729019cde79b37a", - "0x000000000000000000000000000000000014c3a8b51c8a1ae7d70b88336d6b4f", - "0x00000000000000000000000000000006e1b61e57b915f20f4b0b8a2535a494fb", - "0x000000000000000000000000000000000018aabb66abf6cc174fb74272b986c6", - "0x00000000000000000000000000000093e25378fa23e5ee8b8413335b22cead35", - "0x000000000000000000000000000000000018ba7fe5f59f2ce745506e2981259f", - "0x00000000000000000000000000000071f00f0ea2825dfc4eeba4ff69e7602660", - "0x00000000000000000000000000000000001af3f6d1fd30301be5b0d9baec451d", - "0x0000000000000000000000000000007aa76ac355aced47d588087bba42c48187", - "0x000000000000000000000000000000000010fb86fd3c9789312c7549f53735ed", - "0x000000000000000000000000000000aa5510d2f88f749e0927e6690d5df9f901", - "0x00000000000000000000000000000000000efb5492bf10654ffa3e5b97d6fc13", - "0x0000000000000000000000000000004fe429a6f715450096b0ed669efe474542", - "0x00000000000000000000000000000000000597a35b4c33e8412029b0cb445c3f", - "0x0000000000000000000000000000008f44f30a75c7bebb69fde5437ac66f7bb3", - "0x00000000000000000000000000000000002e77abebeec09c2c9a56baa1eb99d2", - "0x000000000000000000000000000000cb98f32c2a93984c328d94538c024ad0f1", - "0x000000000000000000000000000000000004ed67cc0eb9d6a915f1a87e4a21c4", - "0x000000000000000000000000000000b8b1c715cc3a995da3e356d84a49b3461f", - "0x00000000000000000000000000000000001c756a469fb761db9781c3b9eb2b35", + "0x000000000000000000000000000000307f5b8d76dd2a6510221d72ef2af872de", + "0x000000000000000000000000000000000021c674ae84acf95641d459aaeebf73", + "0x0000000000000000000000000000002e1d308105f1ae6bed2310a0f6f3554c6d", + "0x00000000000000000000000000000000001645f93a33f9454bd3a48f0435ab7c", + "0x000000000000000000000000000000f9514ed6fb8f36b60052b4a7ee87b58891", + "0x0000000000000000000000000000000000236c0e98f540a52818d53063f80ab3", + "0x000000000000000000000000000000093d4fb792c433f8a3f78651fbd00154bf", + "0x000000000000000000000000000000000015fef1f8ac1fa0afe6d4b86d0703fd", + "0x000000000000000000000000000000f3f1d5db5cd86529eb4be793a1c09c90d0", + "0x00000000000000000000000000000000002b1c0b1b6e6ff40a1db0d56b92e48c", + "0x000000000000000000000000000000c87448ac0aa0ac0289540732c0be55a27c", + "0x00000000000000000000000000000000001d4b1bb612a4e03e99d6a34eb8a19c", + "0x000000000000000000000000000000653b6a66eb5f828a305feebcc32e6c4991", + "0x000000000000000000000000000000000022cb8bb34f30da3b2cafa6bed058d2", + "0x000000000000000000000000000000cf167ec9502aef45bcc3e9532e0c35213d", + "0x0000000000000000000000000000000000089988b259ea79bc7e5279a584fcca", + "0x000000000000000000000000000000559ea843cb44625df56c97d84fd431af08", + "0x000000000000000000000000000000000007419e3e6e97977939958acc8a257a", + "0x000000000000000000000000000000a5db67870c6c3fcc896f2837fe8861abf1", + "0x0000000000000000000000000000000000104e397c72db51d5e8ef949bc4a736", + "0x00000000000000000000000000000018728c390bc83fa2ac2ecd34989b3200c3", + "0x00000000000000000000000000000000001fc6ff9c5f27febaa9bfa3efa16c42", + "0x000000000000000000000000000000ace95fb022b84dd977890e6b4b6e2f02ff", + "0x000000000000000000000000000000000007d5e1c80a25150fcc9d4e5069a8bd", "0x000000000000000000000000000000e7bab6896d9724b5b46b796551dc5feed2", "0x00000000000000000000000000000000001fd93debdcf16cc93f99efd69e938d", "0x0000000000000000000000000000004b94434e1705c9bc2a4f5b2bc2a05c3c03", "0x00000000000000000000000000000000002a29d5563fd08e454dace1605a1aa5", - "0x0000000000000000000000000000003009f654219b8803e498a56757ecaf0caa", - "0x000000000000000000000000000000000003728de03bd351f8f0bce759c5805b", - "0x000000000000000000000000000000683414df390cead2dc0e7684fcb4787587", - "0x00000000000000000000000000000000001e54d98735a5b9467d1beb1e3d0118", - "0x000000000000000000000000000000266fe520eb75b38d1f387b397c3a960ec9", - "0x0000000000000000000000000000000000099f31c9b901ea0ad0199f977fd2f7", - "0x000000000000000000000000000000d967071cba6b6d76d19f21c6df7cda83b0", - "0x000000000000000000000000000000000018418dae1ed14e2a4a5a312fd6ecb3", - "0x000000000000000000000000000000cecbbeccf049978fd1f66f14912f67af8d", - "0x000000000000000000000000000000000018bb15d360d2551a5d207385e727d4", - "0x000000000000000000000000000000d230bc446b8a0faf004108ab516938cfc7", - "0x00000000000000000000000000000000001a1871eeb3397006ebc843eb592f4e", - "0x000000000000000000000000000000e66f67b944be82350d6888526b40f03c25", - "0x000000000000000000000000000000000022d645840597781881948ca21576c4", - "0x000000000000000000000000000000197d19eaa8f0b079668d422c598290624d", - "0x0000000000000000000000000000000000082d467fe2788fe116b09fa660c8be", - "0x00000000000000000000000000000074f0f2be05a6ee6b762dfab98ff81aa2a1", - "0x000000000000000000000000000000000004f29049e4021f13b20a9c6f6de348", - "0x0000000000000000000000000000007ed2cf56ecf217c789f55c6280ff58c8b5", - "0x0000000000000000000000000000000000126426a6a4c78fd210d294738782c2", - "0x000000000000000000000000000000d8ba065a9a47585d0668848cd72ea43f02", - "0x000000000000000000000000000000000028efe8a5d31fe28db1f4416e1a5d15", - "0x00000000000000000000000000000037fda589bb7d043fd7f904a1e1c9614937", - "0x0000000000000000000000000000000000041eb2d9404d385e81212235221094", - "0x0000000000000000000000000000002bc1ed0b54b0c79df43d393aed01ef5046", - "0x0000000000000000000000000000000000010bb57c07226d23c4b0a1382fead8", - "0x000000000000000000000000000000cfa700a4574fe511a5428cd0432befa3db", - "0x00000000000000000000000000000000002aa1d1265c9b3cdb3ee61c294b6c41", - "0x000000000000000000000000000000342d3d0ccf3f2e2282196541d14a2eac4a", - "0x0000000000000000000000000000000000012021fc1373268bac85dbe809051c", - "0x000000000000000000000000000000fd21012b7885c64c921dfbf5bb7ff9b2b8", - "0x00000000000000000000000000000000000dc15e46d5b9be254f15a6fd8b2fdd", - "0x00000000000000000000000000000096f518a5fc6745a7d6872ee8e6002f6d04", - "0x00000000000000000000000000000000000a672fd5ca5353c436ca8f6a89da25", - "0x000000000000000000000000000000bfc178df13bbbd96cbaa68b0ba5ce12391", - "0x0000000000000000000000000000000000229c479dfd6515332827311f8463da", - "0x0000000000000000000000000000006e533bba53139447130b32198593a1aa8b", - "0x00000000000000000000000000000000002285f4a36cd9b9d94bbd2c4be671f4", - "0x00000000000000000000000000000057ee2d38abfc554336eca1b6e8d1a4dc8e", - "0x00000000000000000000000000000000002b5795ec4e6db8936b52ba10c701b7", - "0x0000000000000000000000000000003c5e49804e67220fc9af0572ccff0f7f29", - "0x00000000000000000000000000000000002f6fb1f7eccc85aea61837a6743aec", - "0x000000000000000000000000000000affc2fcc12fc62cf4e5cd4d9b31e5eee26", - "0x000000000000000000000000000000000017ba16a94027618102b4833a334563", - "0x0000000000000000000000000000002bad43d3bcd2bb672c661eef7475a70b0f", - "0x00000000000000000000000000000000000d18100c708cd78b6f2bf7ca26fa82", - "0x0000000000000000000000000000002bb1f85057bf952feb46ede9d9c0678a35", - "0x0000000000000000000000000000000000243938ed5bdfd50e6dc164231c8f4b", - "0x0000000000000000000000000000008a5a7f973a11b790d674ef2b0ed2203119", - "0x00000000000000000000000000000000001cbb3f5acd40f6570af6d9dabc16db", - "0x0000000000000000000000000000007874e66a3dd5f30741309c0938efe3bdd1", - "0x000000000000000000000000000000000015a90bcd2211c6b3c86dcd955ab296", - "0x000000000000000000000000000000dcda92e58af23db5de259e370acee509e6", - "0x00000000000000000000000000000000002e5a76a0d64e317373b7fa76062fa2", - "0x000000000000000000000000000000a4899298e40d9366e1ebfda4359d0c8b23", - "0x000000000000000000000000000000000018af824381429a3e88dbd60745ec9a", + "0x00000000000000000000000000000001ff2ac57b1c52fd3a5589a5ef3ef608cc", + "0x00000000000000000000000000000000000ae1f6d097efb73837c888206b5627", + "0x0000000000000000000000000000006a94cb27951e584fc7f6a77c685ad6b3d6", + "0x000000000000000000000000000000000019033c84dd0600c909bb8890907b6c", + "0x0000000000000000000000000000002f797ff83a0322e549a331c3e371e42317", + "0x000000000000000000000000000000000001682d1c02a03f8a86ecf633d68035", + "0x000000000000000000000000000000264c49167f0708052d371dbd0b9db133f9", + "0x00000000000000000000000000000000000def14918ebd1ec70252b1aa4f2f30", + "0x0000000000000000000000000000005a0ea3aa1dcb16c1e378a12776139175e6", + "0x00000000000000000000000000000000002230ef6d2bbfa1e43387c54053acda", + "0x0000000000000000000000000000002eba4a74542fcfc0d0c9f20f4266c29be2", + "0x0000000000000000000000000000000000122782fec208fa2da7a3806b3f0411", + "0x000000000000000000000000000000e47cd90b2766343c427897b438440f85f0", + "0x000000000000000000000000000000000001843b9079a49fdcd73c16b776afce", + "0x00000000000000000000000000000053362ad18d8713df3273e67f27a98bc375", + "0x00000000000000000000000000000000001a78a3a8232eb885f480c958fe96b3", + "0x0000000000000000000000000000007d034f697037899c24c6eff17ec8ec99b3", + "0x0000000000000000000000000000000000237adf05233c7587b7816cc71e1206", + "0x00000000000000000000000000000083d2a090d67772f3c78797cee894b1563f", + "0x00000000000000000000000000000000001b6075b87892de831d14dba4b42ca1", + "0x0000000000000000000000000000009e67d900ce38bc0a8ba4ba574627e95535", + "0x000000000000000000000000000000000023a12ad8dc157995bee182a1984bba", + "0x000000000000000000000000000000f8611d968082bab97c4caff11d8504e7b2", + "0x000000000000000000000000000000000023747bf4d19033795b66878bc77504", + "0x0000000000000000000000000000007012d641797376834f136a3cc9239b1922", + "0x00000000000000000000000000000000000bc4036aff2fd78afa72b53d26ea9a", + "0x0000000000000000000000000000009f79a73ba8c460801141cfef6a699f52bd", + "0x000000000000000000000000000000000011c13766ad192df4ddada5b412b0e0", + "0x00000000000000000000000000000057079418ae7686eb442cc4a9e4fa08a908", + "0x00000000000000000000000000000000002ae5e170f3e228b1ea2bbcbd277f42", + "0x000000000000000000000000000000da3cef02586fd7acdb2868edec4cde83c7", + "0x000000000000000000000000000000000001e2d8a35f8d8d85af2f433537c377", + "0x000000000000000000000000000000f9e997bb1718df60f3f958a827db0eea9e", + "0x000000000000000000000000000000000021fdeb56e87b959d2e0d48dfc5517b", + "0x000000000000000000000000000000d5110e9037e70d55d6c726a7608703009c", + "0x000000000000000000000000000000000012d7b7a753bffe46b32fbf04299da3", + "0x000000000000000000000000000000d33100f3a27346c959de3636e67373bad0", + "0x00000000000000000000000000000000002ea5a3a3baec5d0f9ace2c6400d566", + "0x0000000000000000000000000000006562dea7d8149e7e1b43fc816fd8eacbe7", + "0x000000000000000000000000000000000019b679db1fbc606804a344b7c338b9", + "0x0000000000000000000000000000002cb02cc09d5c9dc19cc3a089bf6027f0c0", + "0x00000000000000000000000000000000002959370c7abaefcf98ee27bf19313f", + "0x0000000000000000000000000000001592dcd3bb305e32b40619d9135153f03b", + "0x0000000000000000000000000000000000282d2b2c5f2bf993517721fd2d2b1f", + "0x0000000000000000000000000000001acd10314f56403d936c89faaf382c46c0", + "0x000000000000000000000000000000000009b9d53924cf543750b6d278659b6f", + "0x00000000000000000000000000000094f08329658951cbed51f33549fe64ab5f", + "0x0000000000000000000000000000000000164697c899d232d842f48ce348f492", + "0x000000000000000000000000000000afd86924f1e86aa270ad8c6da8343f4a77", + "0x00000000000000000000000000000000000314a4b080634c56931653166fbabf", + "0x000000000000000000000000000000eb1246f4419815e47f1d5ae8d6dba6d962", + "0x00000000000000000000000000000000001f313c2da4433c6c54d4af0d2b2b17", + "0x000000000000000000000000000000236795d1eebaf06bfbdb1493a682637d52", + "0x000000000000000000000000000000000011b0eeaa05e3097cd5da0a34873236", + "0x000000000000000000000000000000dad932f24983ce4571cd0ead65267e8e7b", + "0x000000000000000000000000000000000015240dde6f5f8790cc86a5fc2fb794", "0x000000000000000000000000000000e97fb648fc1ff99f9988a73de181e0de22", "0x000000000000000000000000000000000024cae2d5d2c4daefe858889eeb01b8", "0x000000000000000000000000000000e072297115d09425f5612d626dc82f1002", @@ -1538,20 +1538,20 @@ key = [ "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x000000000000000000000000000000d537f76c99e3c033a50b78b2cd4f088519", - "0x0000000000000000000000000000000000174b8bc2cbf48193034c5dedf3aa70", - "0x0000000000000000000000000000008a90dd680a397419d6a3335acb7564d4a4", - "0x00000000000000000000000000000000000596f669cac83c372d6fe094c83aba" + "0x0000000000000000000000000000001567f3f96a0c53ad32d96de09ac1cae126", + "0x000000000000000000000000000000000026baae0f0d8505282894f5ada72223", + "0x00000000000000000000000000000011679c6c956cae3c86d399a00bb3aa46de", + "0x00000000000000000000000000000000001bd9f4cdafea960e099cb8afad8a8a" ] -hash = "0x2ce5fb22eb89d2901a9fdd5822b2cc0032dc4a851355040ecc53407ead4306d9" +hash = "0x14caa5816578cf92f252792e62335331c3c7b3aba456597e9d2ec7131722bdfe" [inputs.previous_rollup_data.vk_witness] leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000007" sibling_path = [ - "0x0b3d95928e22547d7d2a653a9adbd87ac223be58c381de383d545c316ec538c7", + "0x2ef0677eced88cf91ef001e856c0e3e649ab915b579ddcede447fa49fcbc0e2c", "0x0f410eb6e69a2497aabc2f1686a1bdf90876c704621e028ec62c0341f74560ec", "0x07c008584a3bc294cfed5d5a726d88e5ce8be9a34100232e67e6b790e0a2905e", - "0x1392b27d933b41fb9e36e29ac5d45040893997a526088cfa50d707fc2d5fa986", + "0x1a8c157a307350dc57f06625e220057348008c02bc50c04154826acb1153bb77", "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] @@ -1594,11 +1594,42 @@ l1_to_l2_message_subtree_sibling_path = [ "0x0f55a0d491a9da093eb999fa0dffaf904620cbc78d07e63c6f795c5c7512b523", "0x21849764e1aa64b83a69e39d27eedaec2a8f97066e5ddb74634ffdb11388dd9a" ] +previous_archive_sibling_path = [ + "0x2f9744998facf20ece1a4bdccc896d360259f265ac9d3ec723650bfc36da904d", + "0x1428c191da00ae9e6328322750fa77bbf6c5b2dd70ee3c219a39f0f1e9784b81", + "0x2ae950126da08ba15878702e2394c18a583d27e508fe0ababc036b9fc66f1fa0", + "0x21f9172d72fdcdafc312eee05cf5092980dda821da5b760a9fb8dbdf607c8a20", + "0x2373ea368857ec7af97e7b470d705848e2bf93ed7bef142a490f2119bcf82d8e", + "0x120157cfaaa49ce3da30f8b47879114977c24b266d58b0ac18b325d878aafddf", + "0x01c28fe1059ae0237b72334700697bdf465e03df03986fe05200cadeda66bd76", + "0x2d78ed82f93b61ba718b17c2dfe5b52375b4d37cbbed6f1fc98b47614b0cf21b", + "0x067243231eddf4222f3911defbba7705aff06ed45960b27f6f91319196ef97e1", + "0x1849b85f3c693693e732dfc4577217acc18295193bede09ce8b97ad910310972", + "0x2a775ea761d20435b31fa2c33ff07663e24542ffb9e7b293dfce3042eb104686", + "0x0f320b0703439a8114f81593de99cd0b8f3b9bf854601abb5b2ea0e8a3dda4a7", + "0x0d07f6e7a8a0e9199d6d92801fff867002ff5b4808962f9da2ba5ce1bdd26a73", + "0x1c4954081e324939350febc2b918a293ebcdaead01be95ec02fcbe8d2c1635d1", + "0x0197f2171ef99c2d053ee1fb5ff5ab288d56b9b41b4716c9214a4d97facc4c4a", + "0x2b9cdd484c5ba1e4d6efcc3f18734b5ac4c4a0b9102e2aeb48521a661d3feee9", + "0x14f44d672eb357739e42463497f9fdac46623af863eea4d947ca00a497dcdeb3", + "0x071d7627ae3b2eabda8a810227bf04206370ac78dbf6c372380182dbd3711fe3", + "0x2fdc08d9fe075ac58cb8c00f98697861a13b3ab6f9d41a4e768f75e477475bf5", + "0x20165fe405652104dceaeeca92950aa5adc571b8cafe192878cba58ff1be49c5", + "0x1c8c3ca0b3a3d75850fcd4dc7bf1e3445cd0cfff3ca510630fd90b47e8a24755", + "0x1f0c1a8fb16b0d2ac9a146d7ae20d8d179695a92a79ed66fc45d9da4532459b3", + "0x038146ec5a2573e1c30d2fb32c66c8440f426fbd108082df41c7bebd1d521c30", + "0x17d3d12b17fe762de4b835b2180b012e808816a7f2ff69ecb9d65188235d8fd4", + "0x0e1a6b7d63a6e5a9e54e8f391dd4e9d49cdfedcbc87f02cd34d4641d2eb30491", + "0x09244eec34977ff795fc41036996ce974136377f521ac8eb9e04642d204783d2", + "0x1646d6f544ec36df9dc41f778a7ef1690a53c730b501471b6acd202194a7e8e9", + "0x064769603ba3f6c41f664d266ecb9a3a0f6567cd3e48b40f34d4894ee4c361b3", + "0x1595bb3cd19f84619dc2e368175a88d8627a7439eda9397202cdb1167531fd3f" +] new_archive_sibling_path = [ "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0b63a53787021a4a962a452c2921b3663aff1ffd8d5510540f8e659e782956f1", "0x0e34ac2c09f45a503d2908bcb12f1cbae5fa4065759c88d501c097506a8b2290", - "0x1f82a2f3c37bbe0de64e538c23e123ae6628ef930ce4ea190eb6e89b123ef91d", + "0x26f2254416c3ed362e156d8124e734b5af1086f68f5f16afb41eb0258bddd0aa", "0x2373ea368857ec7af97e7b470d705848e2bf93ed7bef142a490f2119bcf82d8e", "0x120157cfaaa49ce3da30f8b47879114977c24b266d58b0ac18b325d878aafddf", "0x01c28fe1059ae0237b72334700697bdf465e03df03986fe05200cadeda66bd76", @@ -1630,9 +1661,9 @@ prover_id = "0x0000000000000000000000003c44cdddb6a900fa2b585dd299e03d12fa4293bc" [inputs.data.l1_to_l2_roots] vk_path = [ "0x2d133f1353a0c1bd24faab6cc05696677d88a24d4e2767b77446437451fb7ce4", - "0x117ce82346090c360a98d62ce35fa65b8867c81f46e7ba865189512dbf89d3c8", - "0x03db9bf66f885e682339e240f9e513e6755f5eb80c99efdac800ae5dede4fa1c", - "0x04a097c17f5377c94ec09401ec396021e7c9ee13d981ef339a563b76f7be8df8", + "0x235ea71e8a7e1bd64f7de95985ed7abe7d8b4605a1dfa7e1f636625f0f5f413b", + "0x0a80e4c3fa91f16ab6e479a924b71ed3d9b192794ce5744116b534a38f60e8fa", + "0x2f5f0e8285b051021accb7ac271d2a103f043226b5eaf3597a23e6535bd9eb97", "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] @@ -2233,19 +2264,19 @@ prover_id = "0x0000000000000000000000003c44cdddb6a900fa2b585dd299e03d12fa4293bc" [inputs.data.l1_to_l2_roots.public_inputs] sha_root = "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c" converted_root = "0x2373ea368857ec7af97e7b470d705848e2bf93ed7bef142a490f2119bcf82d8e" - vk_tree_root = "0x0f41ca517c1c4dabab14d88d50dcbaa9638b23bfdbc28fa3a94d7260ef0c7427" + vk_tree_root = "0x18c54e1814ecadeffcd11feed9049f02d31148f4457ddcf84e4d580bbc5ccb0f" [inputs.data.previous_block_header] - total_fees = "0x00000000000000000000000000000000000000000000000000000000093eb800" + total_fees = "0x00000000000000000000000000000000000000000000000000000000093bd180" total_mana_used = "0x0000000000000000000000000000000000000000000000000000000000004a40" [inputs.data.previous_block_header.last_archive] - root = "0x05c542a9aadd68598f9f32cc066dc9e71519fdd09d3bb25917721220c3ffe99d" + root = "0x01f3f9528860628e391a0775aa92501d300cbdf884e49318747dc9c8c4be2670" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000007" [inputs.data.previous_block_header.content_commitment] num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" - blobs_hash = "0x0005af62295377b08ccd0b8f328008624a019c866bb1f784ebf0d7fc1ee956a7" + blobs_hash = "0x00de62c24ff7dc1dedd485056a4ffa2f8d90ae7e7d86304070af64f51631c670" in_hash = "0x00089a9d421a82c4a25f7acbebe69e638d5b064fa8a60e018793dcb0be53752c" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -2254,128 +2285,128 @@ root = "0x2e33ee2008411c04b99c24b313513d097a0d21a5040b6193d1f978b8226892d6" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000070" [inputs.data.previous_block_header.state.partial.note_hash_tree] -root = "0x1be2d9ba565b13aab58c5d47326ef65195646726dfcd887dfd1bb5b740ab0470" +root = "0x2205a826a3f9516231b2edd7cb8f0573517202c36c5935573a30020f5b5b9791" next_available_leaf_index = "0x00000000000000000000000000000000000000000000000000000000000001c0" [inputs.data.previous_block_header.state.partial.nullifier_tree] -root = "0x0629ae46bbfbe94e9cf1c7c357796255fc3086094102b16bbe46b0c2645ecd6e" +root = "0x04f4bf59e2a38d5910ae6ff74c70fe0c4bad3b82d5fd5a85b89fc98a4381d569" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000240" [inputs.data.previous_block_header.state.partial.public_data_tree] -root = "0x1af12b3c1566fb5504d12d5f57ed340c9e6fbdef31ded5265e5b6c99b7f1ec98" +root = "0x150991e665deef36358651132dae8ed393beb6033496590a727d84e6d72f2385" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" [inputs.data.previous_block_header.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000007" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000012" - timestamp = "0x0000000000000000000000000000000000000000000000000000000068068893" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680784b5" [inputs.data.previous_block_header.global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [inputs.data.previous_block_header.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.data.previous_block_header.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fe0" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fd6" [inputs.blob_data] blobs_fields = [ "0x000000000000000000000000000000000074785f737461727400004600010000", - "0x005e5724d6617772bf1426ba7e081d35f4837ea162e3685b387ffae8e243d556", - "0x00020000000000000000000000000000000000000000000000000000093eb800", + "0x0c21a877defa3d12d8a12e94e79c79d255fafdf4c088b7cb87e141b42465b612", + "0x00020000000000000000000000000000000000000000000000000000093bd180", "0x0000000000000000000000000000000000000000000000000000000003000002", - "0x222c4d4728b5fdefa4d20a6f333d862956eba4208e113b2df3c8900eca6d2f67", - "0x0d6bdc9030e9227301febf1dc89607c53d5c14f0e6f0e318180f1d576f17d380", + "0x10adb3ed29181266a51b134fefdf8a8bda10eb4f7b88d4d07fed48cb4321922e", + "0x25ea2696aa4598d58ee7d0dca8e3728952e5e4caed60f77d8a2317db0233b038", "0x0000000000000000000000000000000000000000000000000000000004000002", - "0x1c3b471a71cac8f26daa5e5e8df85ef09f44b9438948fabe9d7ef2086fae5c55", - "0x1dcd58f418393b8a35ef81efdfcaa42a80c9ecea63567476ee34d44b9115384e", + "0x2fd2e12aa0a6d530d8f0f23e7af3bae008ae0aa1dc7a60797eeeadd8aa7d4c7e", + "0x04c6ffa0b01f9dcbde73020d4b9443bd65991f481f058aff1dda3a90e6ca02e9", "0x0000000000000000000000000000000000000000000000000000000006000002", - "0x00cb2426dd7547fb371e50b1861ce295c8850a11cd5546aefafe62002801af77", - "0x00000000000000000000000000000000000000000000021e19e0c9b0aa64e12a", + "0x18d96139c7e5ebed33c1dcef805f02ca611ca80bb132169d411007c8b4d4d654", + "0x00000000000000000000000000000000000000000000021e19e0c9b127287f00", "0x0000000000000000000000000000000000000000000000000000000007000039", "0x0000000000000000000000000000000000000000000000000000000000000012", - "0x01fab996c68a3bd976c813a154f789c5710cd450a391fadefb073baf3682fa7a", - "0x1075e23358e95e3a6ea80c5e5e99fcb7f42f619ee179e5341e2871acdd1e1b73", - "0x00008b66151ff033d63e4d83c069b9d381358a4bc93439f2f79b1b694abae0ab", - "0x00d453ebf1202d57ffc97472e120004b0ea8658dc34e757c75e584808b8e9b32", - "0x00a38f893d0f3b4a61c92165aa69f021b2e08d19d8da395105bb4d4591878bce", - "0x0077d5ec45b2e50b20d9b6404bbaa48125568030f8cd648ea821a77582903bd3", - "0x00118ceba3f350585d40e4c9732b212753a4503bfbfa65fa329321a59f7759dc", - "0x00af58ab7e1643ba94f0835abc9d83e6b1e32a352f823bacafd7155895757685", - "0x0036c0bd629854cbbc8d4076954827d8c4765a4d720be31632038446a7b0ba11", - "0x00ee7c5e3022d058e2b9e9c3764cd7a2063481c26a6244aa9da356c251a8b431", - "0x006d2ad89f393e5e20f04dfe1e5c969b2671defe8c41552564b1d4577c6658af", - "0x00e485c42ec838b02299ee5f76a0ab75ac567941b0d2688de344f2f307ea09c6", - "0x000834fb7273e2b7685ec2ccbea5e525373686bb88d8f1339945cb6e21615b7a", - "0x005ef8913f8f3c9fece83c4f572f0cc627c2850d698db030242e1e17aeaf23cc", - "0x006289fd56dec754fab6be0a07c8fcaa37dcab4f8c6ded40adcf339e2a08d0bc", - "0x00cbabaf5ca638ae2254a4c61ec00052b4eeeb6cda8e03578c90471183a0825a", - "0x00994f65d6ce5f22683bb91446b13f523b002fcb229bec298bbf9ae8a4bc5fed", - "0x006cce35b84a6b5f395cede649394b9a27e476f68ba840325a49ab91b387d7f7", + "0x039a4a3c3c16862a069e69b780e5bc8a0770cd9882cb87147f8f232161dcb6f4", + "0x0dd48f7d8d86c28de8542281e0aa07822cc95c098c246997ceffe0ffde03f69c", + "0x000005f40aab0cd96fd28b40e8e1bfa0eeb163d2b22cc2e7cbd7a559ebaf458e", + "0x00aa7d2df5b14aaf759121509fb6b7ec112f98cf4a085ee5072a08d8cda1f282", + "0x0052d4e85ef66fc58c5dd4a7aa1eb5ba60c7aede4313c2aa2cc1475c55dc9073", + "0x00c44ccd106354c7eab9c67b50197979fefac047f48fda2422b88578aca678d7", + "0x00dc8078c09ce0e995e767b45c742ce0d46b70f90a200a49826247f7142c2a7c", + "0x008d1c15d0a3a32441d03ef0b7306ddbea8341067d23fbd274a6e89ffb7b9644", + "0x00fb7d5fa5bf946f2d4befbd044a708e9690d2682f38034fe0680ea742ce0eef", + "0x009894fe50184d6bafe006a0e63810e27ed2ab1f4b525eb9cab1f38227365176", + "0x000ebdd479d08add56c8c4c237ea2b7ba126c53b5fdaf5169df4514c48e20a81", + "0x007e17b3cd6ddd2b34f216f811301f4b2b3ef5cc0b35727fc499e24b8735ea77", + "0x008ee53f1904be62ef594320a33a4ab67b06c60c8e04bba85f2fed8e8b3b958c", + "0x00e35634172a90fd3ca6b68bfba5e368f33a36d30a10d3c7d6d476f0819e886a", + "0x00088520aeb612750b2982920805876d99daaab67c9f2a10fef5e6196acb6e27", + "0x0008a78afbf381b2f6014762793c27dcec99f523436063530c4dd17b3e84cecb", + "0x003dc11aaade39eb054f499512712bf3e55571da34d19e6295ff77f900783989", + "0x0099aca5d2115caced1d29691068288b064e5f5a303974bb0c2e1daff69315d2", "0x0000000000000000000000000000000000000000000000000000000000000012", - "0x1f700c843089e5f82fc8d25a1c7b8b198c9cadf7de669604753bba152422b600", - "0x128cad69e078ed140683799fecf5cc6370a958500405551f3ebf3e37d1f3f90b", - "0x0000d179e24f934790b797dde7363ca88423da54acd3a4ac79f663c8e22dfaaa", - "0x000221f59bcddfe4b9b4460e2a858dd6883ec6a3f74b815f2f09fdb2bb56fc7f", - "0x00412a4bedc6c46d133e84b4d68b3b39e18ee004a33b70f5d19c9369f9f09d95", - "0x00b97447b35fc9d16006b2ab1c011a710b4d0c647c6f463a1a00e86f9a122e88", - "0x00ecba1fa8d04fdefeb1a8346dab9e200a8e134ba5d980cdd6c1832de782425b", - "0x004f05030de945b623748e4287050eaa07a6e12fd9574e4a971f26ea77ce55ba", - "0x002d7dbe8ba4402c0e835385cf30612ed62c327a2cb9f54f7bd88ac508c16793", - "0x009183fad826e8944d1a1f2893cc6fbe2d818f934c0513d9fb3e3b4431a899cd", - "0x0025aceb1c6fc274816b5fae6f0c83a59b58f591880f5c8c836a7e9803be1d76", - "0x00462e9ab6f5322ac6e96e40a9e4abcf092a107877feddc3664ff1aecf15909d", - "0x00a8dcab76fe67e7700144182ac611f0f34292a978751bfdb16ea0c06d115799", - "0x003ac0dc4d35bfc7e36e5a0993badac2d2da5a7d2c8d22260c92a997734ada68", - "0x00bb49c942eb36bdcba09838d13d211fbd12f62e0ed523fac932332e48b3874c", - "0x000cafeada0735ac7d2a4d60ee1e7902260c17b0cd3aa39bcb95d3f3fc0bd7ce", - "0x0062636191a597f39586cb38f92e3c7c6de2560cafeb935bd88c2534af5d35fb", - "0x0057cc2ad08a8a3fa89c465170813bcdb283f167eef98626b8baec6589e03d19", + "0x1fde1eff9f179610b383c551fdaf89112cd14d2b288ffcf9b0c1238834274ea9", + "0x2cd8fc2475a32a3fc4741537bd40e12794b9688ba634ff11a0687dc4960edd62", + "0x000133b6d73ca561998d9a1c4a0af1a2c35681aabc3aaffe6080389ee27b6931", + "0x00846002b17aa3e5026d30100ff0139adda91641356f7fe7cc5a0f25463836ef", + "0x001db402ae4f0d6311d084d6d81184e34931983d99d431b2baed52a2acaeea56", + "0x00942fd34fe814d0220ed14df87845d81cf6032fda533abf2efdf84d9aa59ca7", + "0x005b380295c12c1d60bdaa77209095cf2cbe6a5b050077775b2e64ff317fab26", + "0x00c03f8a7931fad30e7f47b4fc150786a770070c406be5ab275f30d77438007a", + "0x0014b1fea82d41d9f0c42c653aa9e2697cd7965c61b481e40ea67d6ec941efa8", + "0x005a2612fa5d28856c61e209eb7c4f2d58b0c54fda9ad9375cc4f6818b5c7ac5", + "0x003a5c4b2011e0ba2a0a1c7311b6377420177de9916771edad89b845622870cf", + "0x005eaf382bce51baa1b2d592b39e9d88a8a1fc3333a6d9e3f896d582f2c3dd29", + "0x001e3ad0c17ba8ccbffabcbb5ea8d70d0ca24d222848cdcc41cafa139e8dd808", + "0x009fcef850ed3e54c37ad535bdd207bd9f66ef3e4560445ce7893220cae1f428", + "0x009df99ad53b27bbd65d5d508e9584608396c7f42a87a31540456f0fbb13d6aa", + "0x00cad22fc7934a57778cb66f41cd7cf1e5f942dffcbceb9e18f2dfb079a21707", + "0x00c67b7a92275b20161d07f045bd028a516e61154b592635c887cdf5e273d491", + "0x003355e0d1911a86417e67e23d3f16c25e59a3c679fa1266b994ae9f87dd71fe", "0x0000000000000000000000000000000000000000000000000000000000000012", - "0x0f6b28f5b48b8f4564816b8ea9a6833401dd3ba0c1844ff1aeca709262cc426d", - "0x23f5af16ff32eee8aa8068287e1eae938e5d1bee30eadad2e95015d7812ef5ec", - "0x0000fe0b7b9f5b41c3f79b07d5b00b25d06512c5c71c7627289effb085c52361", - "0x00bd317dea4eac33ced054b6824052739ef097de8f0d807a611981ab08cb35a2", - "0x001549bc47ac39b8ca2567750f9b700bf3db0fdd9e1757fc79a81683ae4bfb5a", - "0x00b1500cf732551d841ffabad27e5c9008ce1bb96dcd669de0631d64da6af504", - "0x009bf662349d1532bd311b250b02b5431bb30109862aeb7c9769e2f5200bce77", - "0x002447519c4ed05d6facba1572bab10b9b61761f984f63fd5b568f05e8130f07", - "0x0001687fb671a0dabf56003fd74c8f7104e11f338c2fb3ea2ef041cf20a28851", - "0x00117a131b082651a34a153b6df7b7c94740b13e3d4777a01b7299571119f036", - "0x006ec8a1227aae5f853a2550728b165157ae39fc85c9fe0e7af07af269708ddd", - "0x00e10d8dbef202ffe381b1ed4b7d98d1e9cb6a9413dbc8d471c9f437bfe8d2e8", - "0x004ece9b58c15028aa632a2f7d1da294cc75d9d037aa30db86b1135b3837723a", - "0x00d6b4adbfa2a583c5a07757077c346963d9418fa21ec3cfec53dbc7050b7a87", - "0x008d82887cf22d455402d877ad900bd9de31c31c969ee163bef890b2bcbdde53", - "0x0056860a8fd94e89739c71f3bcb0e7c763f9ecb05fc9d7293b1a1025bbe632af", - "0x00b67bf18f6e448c8e05582f5af51f4e0c343e304483384ffe1a3d6f9bfbe30e", - "0x009a57442ca51680458906cf811e486ee05e9330e7dbe5b2422c5c5689381aeb", + "0x1835b83f346b0996b392bec8ee235522b526dc574fa545809222ff1934960dec", + "0x02c8a6c2bca15af58a4005e22871fb0c95cb6c91e8bcf1d84f7ed5bbf08c52f6", + "0x00019e60a68e620a94a5753a3e0f26bcf838aecd7f8748fe595640927ef7e606", + "0x007989c4cf61e955d842394cd90c9836f33930ee6e8f087d94242e940887de3e", + "0x00aa6082d4ff67060dfdccd64cd1792e8af756a30ed45b498697a00e1d193fe1", + "0x00f934068d09495eb4a41c1f7b9f8440185158239c1473195ccbb8e869a3a0d1", + "0x000e011a06fe61a8e2c8d69ba9ab57dde0684703dfe51d3927ca7b64509ce98b", + "0x00e393576b21197948a471525b374c62b2aadb0a6a8a0964f66fc3a0a2fce411", + "0x00e9b7aa46f0e83a418b4c2501a12119ce891f9970cbb65f9f92d118799512b0", + "0x007a4e90358cfd83e35800c2f0ecf16089e450c67650993bee9827c1f6bf8170", + "0x004c194829fe34f518ad3be52da7b65a7ce5d2e80f39ec536f71f697c942e1a6", + "0x001aa7dea3908b681fa80c6fe0126c3f30cd0dc3c7bd3aa537dccd0b1b0101d3", + "0x00f22909581df7b6da13fa0d98a05df5852b9f18622f670796868ca2fc6f2551", + "0x00f3296484063df8e1ded914233e018f9f8858c524a849bcd68ae552296975a4", + "0x001f79ffd016a883c750b8716698dd3efa4a754237e57c873a00b3412c9eb1e7", + "0x00ea8a67bdf4fcb0c81b9b6972f76d1456afc0d9e06a22954c997a555a8e76b6", + "0x00acb3dad6cd68dea76a18536a222ca901ba1fc14a854030cbda4c8a4d515b33", + "0x003b23bc07c30d6a3b5e5e6eec1a674033836190f84176b7f518b25557a4b5f6", "0x000000000000000000000000000000000074785f737461727400000c00010000", - "0x13755b6bca78536d409b79a4b9a1fb8905d1d17080b5ce803328b46bf4be3c62", - "0x0002000000000000000000000000000000000000000000000000000027861240", + "0x2393732a1d114df303dd17adf48e3f35a4e2cec05420ec7472d7324b79486e2c", + "0x00020000000000000000000000000000000000000000000000000000242f4350", "0x0000000000000000000000000000000000000000000000000000000004000001", - "0x28b132d5c0be06cce478c0baaf876edba06aa16d5685c7907e495c445e8ba0c3", + "0x2065eb29a2bfbf807660b650a06a4590e77520eab16e425be8d1b15d34cc2432", "0x0000000000000000000000000000000000000000000000000000000006000006", - "0x2132891de6e6992867143b20ce6cf1c8cb005c85b4967340c3e39b74cf9c6bb7", + "0x142c9cb52b4cc578630b15c79176858858a4cbae8d7c29358d66da0fa361ff44", "0x0000000000000000000000000000000000000000000000000000000000002328", - "0x0f0f229d2016ca05be7a6753cb1a2eb1af7ae9f41f233f976861b471ca2d78bb", + "0x239d87885659c85849d8950cd42a0b69d41521f8c9a10670e86bb5fe24aa7192", "0x00000000000000000000000000000000000000000000000000000000000003e8", - "0x00cb2426dd7547fb371e50b1861ce295c8850a11cd5546aefafe62002801af77", - "0x00000000000000000000000000000000000000000000021e19e0c9b082deceea", + "0x18d96139c7e5ebed33c1dcef805f02ca611ca80bb132169d411007c8b4d4d654", + "0x00000000000000000000000000000000000000000000021e19e0c9b102f93bb0", "0x000000000000000000000000000000000074785f737461727400000a00010000", - "0x289aba81a8532c559f5888bb015d1b6c98bfdd99c940257277ec032d6d5fbdea", - "0x0002000000000000000000000000000000000000000000000000000012bbd160", + "0x2e0935175d333c9b0f374a4951167708c667d927df432bcf795f489c13a6d093", + "0x0002000000000000000000000000000000000000000000000000000012af39aa", "0x0000000000000000000000000000000000000000000000000000000004000001", - "0x2f74098537343b9cf2ebd8476e3ac002126482e90372f4d257b26e55a6d8d8e9", + "0x1f46b5874e9e5d27fa4e2589415cb61afef6d460b829e1f7fd68f087429a5ee3", "0x0000000000000000000000000000000000000000000000000000000006000004", - "0x2aab678ab5f275729c4d39b4feb010f9362a207be44f1080da2321a4bd581a65", - "0x0d276f24617f511e59fd25490f3cfbf48d2da5316bbe844093e4e2a81cd506bb", - "0x00cb2426dd7547fb371e50b1861ce295c8850a11cd5546aefafe62002801af77", - "0x00000000000000000000000000000000000000000000021e19e0c9b07022fd8a", + "0x0f9caec453d2ff1709e711d4b8573cfb06eba2f0de513bab849cfd80971c0660", + "0x2767f9570de8773ff9c0ee7316694a7959e85930a452a3b991946494c036e37f", + "0x18d96139c7e5ebed33c1dcef805f02ca611ca80bb132169d411007c8b4d4d654", + "0x00000000000000000000000000000000000000000000021e19e0c9b0f04a0206", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -14573,12 +14604,12 @@ blobs_fields = [ "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000000" ] -blobs_hash = "0x0048699be47aff51e16faafbcd3da7f606fae1e6218d3d4c849013e03acf906d" +blobs_hash = "0x008a68564f13d17b5b4b8d2c6e9b645c2afdacdc4f8869d0c74c0f6c08179cfb" [[inputs.blob_data.blob_commitments]] inner = [ - "0x00b254cbfe78b8445bf9390be85821266de78209f1c11f2cb5f1e9e058c4ddd2", - "0x0000000000000000000000000000001244f1e204042a948000d8efcfda01c01a" + "0x008abf61373dd489794229987b3f1e6549b102719f023a973ab284074469c7cf", + "0x0000000000000000000000000000009c8747b18cf207a60939988ca7a69d327c" ] [[inputs.blob_data.blob_commitments]] diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/abis/block_root_or_block_merge_public_inputs.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/abis/block_root_or_block_merge_public_inputs.nr index 84dfcf518700..637fb5c801ad 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/abis/block_root_or_block_merge_public_inputs.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/abis/block_root_or_block_merge_public_inputs.nr @@ -45,8 +45,6 @@ impl Eq for FeeRecipient { pub struct BlockRootOrBlockMergePublicInputs { pub previous_archive: AppendOnlyTreeSnapshot, // Archive tree root immediately before this block range pub new_archive: AppendOnlyTreeSnapshot, // Archive tree root after adding this block range - pub previous_block_hash: Field, // Identifier of the previous block before the range - pub end_block_hash: Field, // Identifier of the last block in the range pub start_global_variables: GlobalVariables, // Global variables for the first block in the range pub end_global_variables: GlobalVariables, // Global variables for the last block in the range pub out_hash: Field, // Merkle node of the L2-to-L1 messages merkle roots in the block range @@ -68,8 +66,6 @@ impl Empty for BlockRootOrBlockMergePublicInputs { BlockRootOrBlockMergePublicInputs { previous_archive: AppendOnlyTreeSnapshot::zero(), new_archive: AppendOnlyTreeSnapshot::zero(), - previous_block_hash: 0, - end_block_hash: 0, start_global_variables: GlobalVariables::empty(), end_global_variables: GlobalVariables::empty(), out_hash: 0, @@ -86,8 +82,6 @@ impl Eq for BlockRootOrBlockMergePublicInputs { fn eq(self, other: Self) -> bool { (self.previous_archive.eq(other.previous_archive)) & (self.new_archive.eq(other.new_archive)) - & (self.previous_block_hash == other.previous_block_hash) - & (self.end_block_hash == other.end_block_hash) & (self.start_global_variables.eq(other.start_global_variables)) & (self.end_global_variables.eq(other.end_global_variables)) & (self.out_hash == other.out_hash) @@ -106,8 +100,6 @@ impl Serialize for BlockRootOrBl fields.extend_from_array(self.previous_archive.serialize()); fields.extend_from_array(self.new_archive.serialize()); - fields.push(self.previous_block_hash as Field); - fields.push(self.end_block_hash as Field); fields.extend_from_array(self.start_global_variables.serialize()); fields.extend_from_array(self.end_global_variables.serialize()); fields.push(self.out_hash as Field); @@ -134,8 +126,6 @@ impl Deserialize for BlockRootOr let item = Self { previous_archive: reader.read_struct(AppendOnlyTreeSnapshot::deserialize), new_archive: reader.read_struct(AppendOnlyTreeSnapshot::deserialize), - previous_block_hash: reader.read(), - end_block_hash: reader.read(), start_global_variables: reader.read_struct(GlobalVariables::deserialize), end_global_variables: reader.read_struct(GlobalVariables::deserialize), out_hash: reader.read(), diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/abis/block_root_rollup_data.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/abis/block_root_rollup_data.nr index af394defdd3b..7f78a28da1fd 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/abis/block_root_rollup_data.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/abis/block_root_rollup_data.nr @@ -13,13 +13,14 @@ pub struct BlockRootRollupData { // Hint for inserting the new l1 to l2 message subtree. pub l1_to_l2_message_subtree_sibling_path: [Field; L1_TO_L2_MSG_SUBTREE_SIBLING_PATH_LENGTH], + // Hint for checking the hash of previous_block_header is the last leaf of the previous archive. + pub previous_archive_sibling_path: [Field; ARCHIVE_HEIGHT], + // Hint for inserting the new block hash to the last archive. pub new_archive_sibling_path: [Field; ARCHIVE_HEIGHT], // Previous block header is used to verify the start state of the first tx in a block. - // Its hash will be included in the public inputs. It will be checked: - // - against previous block hash on L1 for the first block in batch. - // - against previous block_root.end_block_hash in a block_merge. + // Its hash is checked against the previous archive. pub previous_block_header: BlockHeader, // TODO(#7346): Temporarily added prover_id while we verify block-root proofs on L1 diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_merge/block_merge_rollup_inputs.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_merge/block_merge_rollup_inputs.nr index 6ab69aef31db..a0e7d9fe737d 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_merge/block_merge_rollup_inputs.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_merge/block_merge_rollup_inputs.nr @@ -62,8 +62,6 @@ impl BlockMergeRollupInputs { BlockRootOrBlockMergePublicInputs { previous_archive: left.previous_archive, new_archive: right.new_archive, - previous_block_hash: left.previous_block_hash, - end_block_hash: right.end_block_hash, start_global_variables: left.start_global_variables, end_global_variables: right.end_global_variables, out_hash, @@ -110,15 +108,6 @@ mod tests { let _output = inputs.block_merge_rollup_circuit(); } - #[test(should_fail_with = "input block hashes do not follow on from each other")] - fn previous_rollups_dont_follow_block_hash() { - let mut inputs = default_block_merge_rollup_inputs(); - inputs.previous_rollup_data[0].block_root_or_block_merge_public_inputs.end_block_hash = 0; - inputs.previous_rollup_data[1].block_root_or_block_merge_public_inputs.previous_block_hash = - 1; - let _output = inputs.block_merge_rollup_circuit(); - } - #[test(should_fail_with = "input block numbers do not follow on from each other")] fn previous_rollups_dont_follow_block_number() { let mut inputs = default_block_merge_rollup_inputs(); diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/block_root_rollup_inputs.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/block_root_rollup_inputs.nr index 915eef2cca05..88b6e9dc018a 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/block_root_rollup_inputs.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/block_root_rollup_inputs.nr @@ -27,8 +27,7 @@ impl BlockRootRollupInputs { BlockRootRollupInputsValidator::new( self.previous_rollup_data, ALLOWED_PREVIOUS_CIRCUITS, - self.data.l1_to_l2_roots, - self.data.previous_block_header, + self.data, ) .validate(); @@ -193,4 +192,25 @@ pub(crate) mod tests { let _ = builder.execute(); } + + #[test(should_fail_with = "input proofs have different note hash tree snapshots")] + unconstrained fn random_block_header_for_second_tx_fails() { + let mut builder = TestBuilder::new(); + + builder.inputs.previous_rollup_data[1].base_or_merge_rollup_public_inputs.start.note_hash_tree.root += + 1; + + let _ = builder.execute(); + } + + #[test(should_fail_with = "hash of the previous block header is not the last leaf in the archive tree")] + unconstrained fn random_previous_block_header_fails() { + let mut builder = TestBuilder::new(); + + builder.inputs.previous_rollup_data[0].base_or_merge_rollup_public_inputs.start.note_hash_tree.root += + 1; + builder.inputs.previous_block_header.state.partial.note_hash_tree.root += 1; + + let _ = builder.execute(); + } } diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/components/block_root_rollup_inputs_validator.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/components/block_root_rollup_inputs_validator.nr index 3af46faa2b52..ff4f4ec0d837 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/components/block_root_rollup_inputs_validator.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/components/block_root_rollup_inputs_validator.nr @@ -1,37 +1,40 @@ use crate::{ - abis::previous_rollup_data::PreviousRollupData, + abis::{block_root_rollup_data::BlockRootRollupData, previous_rollup_data::PreviousRollupData}, merge::utils::validate_consecutive_rollups::validate_consecutive_rollups, }; -use parity_lib::root::root_rollup_parity_input::RootRollupParityInput; -use types::{abis::sponge_blob::SpongeBlob, block_header::BlockHeader, proof::traits::Verifiable}; +use types::{ + abis::{append_only_tree_snapshot::AppendOnlyTreeSnapshot, sponge_blob::SpongeBlob}, + merkle_tree::membership::check_membership, + proof::traits::Verifiable, + traits::Hash, +}; pub struct BlockRootRollupInputsValidator { previous_rollups: [PreviousRollupData; NUM_ROLLUPS], allowed_vk_indices: [u32; N], - l1_to_l2_roots: RootRollupParityInput, - previous_block_header: BlockHeader, + data: BlockRootRollupData, } impl BlockRootRollupInputsValidator { pub fn new( previous_rollups: [PreviousRollupData; NUM_ROLLUPS], allowed_vk_indices: [u32; N], - l1_to_l2_roots: RootRollupParityInput, - previous_block_header: BlockHeader, + data: BlockRootRollupData, ) -> Self { - BlockRootRollupInputsValidator { - previous_rollups, - allowed_vk_indices, - l1_to_l2_roots, - previous_block_header, - } + BlockRootRollupInputsValidator { previous_rollups, data, allowed_vk_indices } } pub fn validate(self) { + assert(NUM_ROLLUPS != 0); + self.validate_root_parity_proof(); self.validate_rollup_proofs(); self.validate_first_rollup(); + let previous_archive = + self.previous_rollups[0].base_or_merge_rollup_public_inputs.constants.last_archive; + self.validate_previous_block_header(previous_archive); + if NUM_ROLLUPS == 1 { assert_eq( self.previous_rollups[0].base_or_merge_rollup_public_inputs.num_txs, @@ -48,18 +51,23 @@ impl BlockRootRollupInputsValidator BlockRootRollupInputsValidator BlockRootRollupInputsValidator BlockRootOrBlockMergePublicInputs { - let new_block_header = if is_padding { - self.data.previous_block_header + let new_archive = if is_padding { + constants.last_archive } else { - self.create_new_block_header( - constants, - self.data.previous_block_header.state.partial, - empty_effect_blobs_hash, - ) + let new_block_hash = self + .create_new_block_header( + constants, + self.data.previous_block_header.state.partial, + empty_effect_blobs_hash, + ) + .hash(); + self.update_archive(constants.last_archive, new_block_hash) }; let mut block_blob_public_inputs = BlockBlobPublicInputs::empty(); @@ -90,7 +95,7 @@ impl BlockRootRollupOutputComposer { self.finish_with_new_values( constants, - new_block_header, + new_archive, 0 /* out_hash */, block_blob_public_inputs, 0, /* accumulated_fees */ @@ -100,26 +105,11 @@ impl BlockRootRollupOutputComposer { fn finish_with_new_values( self, constants: ConstantRollupData, - new_block_header: BlockHeader, + new_archive: AppendOnlyTreeSnapshot, out_hash: Field, block_blob_public_inputs: BlockBlobPublicInputs, accumulated_fees: Field, ) -> BlockRootOrBlockMergePublicInputs { - let previous_block_hash = self.data.previous_block_header.hash(); - let end_block_hash = new_block_header.hash(); - - let previous_archive = constants.last_archive; - let new_archive = if end_block_hash == previous_block_hash { - // If the block hash hasn't changed, the archive remains the same. - // This scenario only applies to padding blocks. - // For non-padding blocks, create_new_block_header will be called. And the next_available_leaf_index of the - // l1_to_l2_message_tree will be incremented when a new block header is created. So the block hash will - // always be different. - previous_archive - } else { - self.update_archive(constants.last_archive, end_block_hash) - }; - let mut fees = [FeeRecipient::empty(); AZTEC_MAX_EPOCH_DURATION]; fees[0] = FeeRecipient { recipient: constants.global_variables.coinbase, @@ -130,10 +120,8 @@ impl BlockRootRollupOutputComposer { blob_public_inputs[0] = block_blob_public_inputs; BlockRootOrBlockMergePublicInputs { - previous_archive, // archive before this block was added + previous_archive: constants.last_archive, // archive before this block was added new_archive, // archive once this block was added - previous_block_hash, - end_block_hash, // current newest block hash = this block hash start_global_variables: constants.global_variables, // we have asserted that left.constants == right.constants => ... end_global_variables: constants.global_variables, // ...with a current block range of 1, we only have 1 set of constants out_hash, diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/empty_block_root_rollup_inputs.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/empty_block_root_rollup_inputs.nr index 56910936560b..f410680a7210 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/empty_block_root_rollup_inputs.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/empty_block_root_rollup_inputs.nr @@ -31,10 +31,9 @@ impl EmptyBlockRootRollupInputs { let validator = BlockRootRollupInputsValidator::new( [], // previous_rollup_data [], // allowed_vk_indices - self.data.l1_to_l2_roots, - self.data.previous_block_header, + self.data, ); - validator.validate_without_previous_rollups(self.is_padding); + validator.validate_without_previous_rollups(self.is_padding, self.constants.last_archive); let mut blob_public_input = BlobPublicInputs::empty(); blob_public_input.kzg_commitment.inner = EMPTY_EFFECT_BLOB_COMMITMENT; @@ -92,7 +91,6 @@ mod tests { let output = builder.execute(); assert(output.previous_archive != output.new_archive); - assert(output.previous_block_hash != output.end_block_hash); assert_eq(output.start_global_variables, output.end_global_variables); assert_eq(output.out_hash, 0); assert_array_eq( @@ -140,10 +138,18 @@ mod tests { let output = builder.execute(); assert_eq(output.previous_archive, output.new_archive); - assert_eq(output.previous_block_hash, output.end_block_hash); assert_eq(output.start_global_variables, output.end_global_variables); assert_eq(output.out_hash, 0); assert_array_eq(output.fees, []); assert_array_eq(output.blob_public_inputs, []); } + + #[test(should_fail_with = "hash of the previous block header is not the last leaf in the archive tree")] + unconstrained fn random_previous_block_header_fails() { + let mut builder = TestBuilder::new(); + + builder.inputs.previous_block_header.state.partial.note_hash_tree.root += 1; + + let _ = builder.execute(); + } } diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/single_tx_block_root_rollup_inputs.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/single_tx_block_root_rollup_inputs.nr index 4e2e5109897b..078161ca9118 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/single_tx_block_root_rollup_inputs.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/single_tx_block_root_rollup_inputs.nr @@ -26,8 +26,7 @@ impl SingleTxBlockRootRollupInputs { BlockRootRollupInputsValidator::new( self.previous_rollup_data, ALLOWED_PREVIOUS_CIRCUITS, - self.data.l1_to_l2_roots, - self.data.previous_block_header, + self.data, ) .validate(); @@ -89,4 +88,25 @@ mod tests { }; assert_array_eq(output.fees, [expected_fee]); } + + #[test(should_fail_with = "the start state of the block's first tx does not match the state in previous header")] + unconstrained fn random_block_header_for_first_tx_fails() { + let mut builder = TestBuilder::new(); + + builder.inputs.previous_rollup_data[0].base_or_merge_rollup_public_inputs.start.note_hash_tree.root += + 1; + + let _ = builder.execute(); + } + + #[test(should_fail_with = "hash of the previous block header is not the last leaf in the archive tree")] + unconstrained fn random_previous_block_header_fails() { + let mut builder = TestBuilder::new(); + + builder.inputs.previous_rollup_data[0].base_or_merge_rollup_public_inputs.start.note_hash_tree.root += + 1; + builder.inputs.previous_block_header.state.partial.note_hash_tree.root += 1; + + let _ = builder.execute(); + } } diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/components.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/components.nr index 303e35a78b03..4f11779bc44b 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/components.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/components.nr @@ -38,10 +38,6 @@ pub fn assert_prev_block_rollups_follow_on_from_each_other( left.new_archive.eq(right.previous_archive), "input blocks have different archive tree snapshots", ); - assert( - left.end_block_hash.eq(right.previous_block_hash), - "input block hashes do not follow on from each other", - ); assert( left.end_global_variables.chain_id == right.start_global_variables.chain_id, "input blocks have different chain id", diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/mod.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/mod.nr index 44c523a1e7b0..d1af19e63a54 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/mod.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/mod.nr @@ -41,9 +41,5 @@ mod tests { .end_global_variables .timestamp, )); - - assert(outputs.end_block_hash.eq( - inputs.previous_rollup_data[1].block_root_or_block_merge_public_inputs.end_block_hash, - )); } } diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/root_rollup_inputs.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/root_rollup_inputs.nr index a975732c4fbd..41d5937b8edd 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/root_rollup_inputs.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/root_rollup_inputs.nr @@ -67,8 +67,6 @@ impl RootRollupInputs { RootRollupPublicInputs { previous_archive: left.previous_archive, end_archive: right.new_archive, - previous_block_hash: left.previous_block_hash, - end_block_hash: right.end_block_hash, end_timestamp: right.end_global_variables.timestamp, end_block_number: right.end_global_variables.block_number, out_hash, diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/root_rollup_public_inputs.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/root_rollup_public_inputs.nr index acdefb469455..a0dca33af5f8 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/root_rollup_public_inputs.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/root/root_rollup_public_inputs.nr @@ -6,11 +6,6 @@ pub struct RootRollupPublicInputs { // Snapshot of archive tree before/after this rollup has been processed pub previous_archive: AppendOnlyTreeSnapshot, pub end_archive: AppendOnlyTreeSnapshot, - // Hash of the last block in the previous epoch. Although it's a leaf of the previous archive. It still needs to be - // submitted and checked on L1. Otherwise, we would need to verify that it's in the last archive by performing a - // membership check in the circuit. - pub previous_block_hash: Field, - pub end_block_hash: Field, pub end_timestamp: u64, pub end_block_number: Field, pub out_hash: Field, diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/tests/previous_rollup_block_data.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/tests/previous_rollup_block_data.nr index 708a226b2b47..565e50e1ba31 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/tests/previous_rollup_block_data.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/tests/previous_rollup_block_data.nr @@ -36,11 +36,6 @@ pub fn default_previous_rollup_block_data() -> [PreviousRollupBlockData; 2] { previous_rollup_data[1].block_root_or_block_merge_public_inputs.new_archive = AppendOnlyTreeSnapshot { root: 2, next_available_leaf_index: 2 }; - previous_rollup_data[0].block_root_or_block_merge_public_inputs.previous_block_hash = 1; - previous_rollup_data[0].block_root_or_block_merge_public_inputs.end_block_hash = 2; - previous_rollup_data[1].block_root_or_block_merge_public_inputs.previous_block_hash = 2; - previous_rollup_data[1].block_root_or_block_merge_public_inputs.end_block_hash = 3; - // previous_rollup_data is from one block_root circuit => ecompasses a single block (block 1) previous_rollup_data[1].block_root_or_block_merge_public_inputs.start_global_variables.block_number = 1; diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/tests/rollup_fixture_builder.nr b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/tests/rollup_fixture_builder.nr index 53e2b12880c9..46b43172ad24 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/tests/rollup_fixture_builder.nr +++ b/noir-projects/noir-protocol-circuits/crates/rollup-lib/src/tests/rollup_fixture_builder.nr @@ -31,6 +31,7 @@ pub struct RollupFixtureBuilder { pub last_l1_to_l2: AppendOnlyTreeSnapshot, pub last_l1_to_l2_subtree_sibling_path: [Field; L1_TO_L2_MSG_SUBTREE_SIBLING_PATH_LENGTH], pub last_archive: AppendOnlyTreeSnapshot, + pub last_archive_sibling_path: [Field; ARCHIVE_HEIGHT], pub new_archive: AppendOnlyTreeSnapshot, pub new_archive_sibling_path: [Field; ARCHIVE_HEIGHT], pub blobs_fields: [Field; FIELDS_PER_BLOB * BLOBS_PER_BLOCK], @@ -58,6 +59,7 @@ impl RollupFixtureBuilder { last_l1_to_l2: AppendOnlyTreeSnapshot::zero(), last_l1_to_l2_subtree_sibling_path: [0; L1_TO_L2_MSG_SUBTREE_SIBLING_PATH_LENGTH], last_archive: AppendOnlyTreeSnapshot::zero(), + last_archive_sibling_path: [0; ARCHIVE_HEIGHT], new_archive: AppendOnlyTreeSnapshot::zero(), new_archive_sibling_path: [0; ARCHIVE_HEIGHT], blobs_fields: [0; FIELDS_PER_BLOB * BLOBS_PER_BLOCK], @@ -232,6 +234,7 @@ impl RollupFixtureBuilder { self.last_archive = AppendOnlyTreeSnapshot { root: tree.get_root(), next_available_leaf_index: 1 }; + self.last_archive_sibling_path = tree.get_sibling_path(0); self.new_archive_sibling_path = tree.get_sibling_path(1); *self @@ -261,6 +264,7 @@ impl RollupFixtureBuilder { BlockRootRollupData { l1_to_l2_roots: self.to_root_rollup_parity_input(), l1_to_l2_message_subtree_sibling_path: self.last_l1_to_l2_subtree_sibling_path, + previous_archive_sibling_path: self.last_archive_sibling_path, new_archive_sibling_path: self.new_archive_sibling_path, previous_block_header: self.previous_block_header, prover_id: self.prover_id, diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-merge/Prover.toml b/noir-projects/noir-protocol-circuits/crates/rollup-merge/Prover.toml index 06add8effdca..f18a51df1006 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-merge/Prover.toml +++ b/noir-projects/noir-protocol-circuits/crates/rollup-merge/Prover.toml @@ -3,56 +3,56 @@ rollup_type = "0x0000000000000000000000000000000000000000000000000000000000000000" num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" -accumulated_fees = "0x00000000000000000000000000000000000000000000000000000000093eb800" +accumulated_fees = "0x00000000000000000000000000000000000000000000000000000000093bd180" accumulated_mana_used = "0x0000000000000000000000000000000000000000000000000000000000004a40" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants] - vk_tree_root = "0x0f41ca517c1c4dabab14d88d50dcbaa9638b23bfdbc28fa3a94d7260ef0c7427" - protocol_contract_tree_root = "0x0af0a7a13726bd13afe2a3fbfa52690c43ca774227d6c2bfe86fce93c387953a" + vk_tree_root = "0x18c54e1814ecadeffcd11feed9049f02d31148f4457ddcf84e4d580bbc5ccb0f" + protocol_contract_tree_root = "0x2098b90e2b21f02ad7a1fc6afcf944ef3685236caeb015b51a502471c492cdfb" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.last_archive] - root = "0x1f7a1f2c370c7feb3411a7b2abf18f49678ee4a5bab4d9d51d31978f60b8a90e" + root = "0x0d3828a8fd93fdb49ce09ccc58b3a5903cd3c87783948c2095687dcf7fd44bc7" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000008" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000008" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000013" - timestamp = "0x00000000000000000000000000000000000000000000000000000000680688ab" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680784cd" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fe0" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fd6" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.note_hash_tree] -root = "0x1be2d9ba565b13aab58c5d47326ef65195646726dfcd887dfd1bb5b740ab0470" +root = "0x2205a826a3f9516231b2edd7cb8f0573517202c36c5935573a30020f5b5b9791" next_available_leaf_index = "0x00000000000000000000000000000000000000000000000000000000000001c0" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.nullifier_tree] -root = "0x0629ae46bbfbe94e9cf1c7c357796255fc3086094102b16bbe46b0c2645ecd6e" +root = "0x04f4bf59e2a38d5910ae6ff74c70fe0c4bad3b82d5fd5a85b89fc98a4381d569" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000240" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.public_data_tree] -root = "0x1af12b3c1566fb5504d12d5f57ed340c9e6fbdef31ded5265e5b6c99b7f1ec98" +root = "0x150991e665deef36358651132dae8ed393beb6033496590a727d84e6d72f2385" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.note_hash_tree] -root = "0x270f4d1f827decbabee53c6fc37a1cddd5037d8726b5e64679120e6545243dbe" +root = "0x0e78f1d5dec20ceac046bed6d2695d5086169440bdcd985416da690e4555cd13" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.nullifier_tree] -root = "0x1d846e0d7b642ca4baa9f4f02228e2c590bea61eba102a0927ea2e9512bc41f1" +root = "0x2171cafb642df56e87d822c83a68653ec9005e8aaed7bc4c551e67ae9cbffa40" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000280" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.public_data_tree] -root = "0x1fc5818711a8ac7bdbcbb398cbdc3683d177ca17e0837fc806dcee40af71193d" +root = "0x02f60259f9c4998eea8dabb7bdda0abaae8ad6c834593650c4043d9fe78b5ce2" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start_sponge_blob] @@ -80,15 +80,15 @@ next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000 [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end_sponge_blob.sponge] cache = [ - "0x009a57442ca51680458906cf811e486ee05e9330e7dbe5b2422c5c5689381aeb", - "0x0056860a8fd94e89739c71f3bcb0e7c763f9ecb05fc9d7293b1a1025bbe632af", - "0x00b67bf18f6e448c8e05582f5af51f4e0c343e304483384ffe1a3d6f9bfbe30e" + "0x003b23bc07c30d6a3b5e5e6eec1a674033836190f84176b7f518b25557a4b5f6", + "0x00ea8a67bdf4fcb0c81b9b6972f76d1456afc0d9e06a22954c997a555a8e76b6", + "0x00acb3dad6cd68dea76a18536a222ca901ba1fc14a854030cbda4c8a4d515b33" ] state = [ - "0x03225b08274371c5d54dc870abe55b2740492a9a94c3512e98a42da1c9585dee", - "0x2bacdc2dd2de39f73dd7f0ff62260a57669ade19cbe21f91123e96a16c169a50", - "0x0f2c54f17e07a5ffb6d562dbc15d0b00171a1302d451eed42409533758ac8cad", - "0x0fcd69f1f4dc62081d053f774c7ae07f615e6dddc93215172443402cc19b7901" + "0x0b3ec790f7d2bec3f20d842e3debe40e01530098c2af94b6ec11e2e6436cb1ff", + "0x0bdb4ba2af4e2efb09328199bb263ada91093841379ac5d8975d583c85a4c921", + "0x2a4b4e49d2a1aa30e09ba321f00b081a2a9f86506a24b7f58142f3a86555342d", + "0x178e6f222c2adc9f6746ee96670ba43c18fe039efef96787345bfd3866e7f1bc" ] cache_size = "0x0000000000000000000000000000000000000000000000000000000000000001" squeeze_mode = false @@ -655,90 +655,90 @@ key = [ "0x0000000000000000000000000000000000000000000000000000000000000042", "0x0000000000000000000000000000000000000000000000000000000000000043", "0x0000000000000000000000000000000000000000000000000000000000000044", - "0x0000000000000000000000000000003023253dd62c691d93f5504207f3a28b52", - "0x0000000000000000000000000000000000027ec9b3abe23cd1ad0045a836ffcd", - "0x000000000000000000000000000000f493da27bc6ec39d77ba287ea263f7a1bf", - "0x00000000000000000000000000000000002c0b209f4a6b11fc33105eceadbbd6", - "0x00000000000000000000000000000099b4a0469e45355356dcf33728ee9b400e", - "0x00000000000000000000000000000000001ffa8f8e7f4bd855ff5c657e083582", - "0x00000000000000000000000000000052ed6407bd825537cfb48e1ea130f99aeb", - "0x000000000000000000000000000000000022b5d60e3c60c1e94c75d4e1ecf69f", - "0x00000000000000000000000000000042badadab26d00a549716de7c85dfdc138", - "0x000000000000000000000000000000000015268c6260fc421edc96a8a70cfb50", - "0x000000000000000000000000000000f1e850910e0b030e0a8725893928ce00df", - "0x00000000000000000000000000000000000ffe068c944eb72775f4bf92f5593b", - "0x000000000000000000000000000000c2d53ddc67a366b539a9460feace0cd77b", - "0x00000000000000000000000000000000000bc7e30043240c78c8eb96b4ea1d9f", - "0x00000000000000000000000000000019feb5c1e70c1bc441fe62d7617989c143", - "0x00000000000000000000000000000000001518835a24c55215b0cec2781d586b", - "0x00000000000000000000000000000032237c0bf1fc282c5fc828d66d2aefe8df", - "0x00000000000000000000000000000000000e68eaad9b4bfe484074515e040142", - "0x0000000000000000000000000000001c10f4f6ef15f27875024d041c802e09c2", - "0x000000000000000000000000000000000012f9f7fffaf01217c89218237f0383", - "0x000000000000000000000000000000356bc5f65721872a92059523ba0c7c8aa4", - "0x00000000000000000000000000000000002540aa2c32aa969bf4b32c952b8a91", - "0x00000000000000000000000000000075d319826d8f2d0fa48fbaad4f78252873", - "0x00000000000000000000000000000000000931fbba7313f836a5adf1ab3131be", + "0x000000000000000000000000000000521b9d4f83c543b2d84cfdc2bd2a98fb40", + "0x00000000000000000000000000000000001339c78afbaf20ae75727c7b732af4", + "0x00000000000000000000000000000080022768f68ea22b61825c0c21bfb8ac3d", + "0x000000000000000000000000000000000015ff4c9ac04d118866917d85503b7e", + "0x00000000000000000000000000000070713038ce33770306927dd8ca492322b2", + "0x00000000000000000000000000000000002fee639887369cd3a83579202b79dc", + "0x00000000000000000000000000000061bab45392977e273d132d7cb7a44ff202", + "0x0000000000000000000000000000000000155170bb6e84f41b220e351ccccd36", + "0x000000000000000000000000000000d762b23206e8619049ccdc3d9d72db53e8", + "0x000000000000000000000000000000000027b2187681c7d7d762978a8699d1ad", + "0x000000000000000000000000000000fb6231cdcee4bf02adf80ab4f5b4e1b7f7", + "0x0000000000000000000000000000000000158ff5241a1461fb0a35fd985ec474", + "0x000000000000000000000000000000c4953b141659032c469ce6770f016b7980", + "0x000000000000000000000000000000000006920ab0aa6f66843372f54781ca2b", + "0x000000000000000000000000000000c7af0b22593cce863a4a8ca0b240d074ca", + "0x00000000000000000000000000000000000dfdc634e7b62976f6ce0549fe233a", + "0x000000000000000000000000000000c1d033ae709c039af90b2234226cb5c4f8", + "0x00000000000000000000000000000000002dc468919a1be7cbd81296c1733377", + "0x0000000000000000000000000000005d502fdc01a9736a9219cf912d9694a2e9", + "0x000000000000000000000000000000000021aafb24e110636d9df075e9bc6b86", + "0x000000000000000000000000000000a7d84e314ba33098291f60dea80b20d68f", + "0x0000000000000000000000000000000000217076933f7d213145d14d14915da8", + "0x000000000000000000000000000000a16d19f8a7acf7d489e6271afc1b954c20", + "0x00000000000000000000000000000000001c765879c0be34217b869c3b7a9a67", "0x000000000000000000000000000000e7bab6896d9724b5b46b796551dc5feed2", "0x00000000000000000000000000000000001fd93debdcf16cc93f99efd69e938d", "0x0000000000000000000000000000004b94434e1705c9bc2a4f5b2bc2a05c3c03", "0x00000000000000000000000000000000002a29d5563fd08e454dace1605a1aa5", - "0x000000000000000000000000000000cecfe64cfc4f4bdd8063dc3e843afcf351", - "0x00000000000000000000000000000000002671a4d8987a4e2bb3a27fe74f42eb", - "0x0000000000000000000000000000003d66b5d9451fd57ac07e4c9a9efa1fe4dd", - "0x00000000000000000000000000000000002598f584a083f4fa91326d9fccae1a", - "0x000000000000000000000000000000a6651432b0ea88d3a7539074fee16af6ab", - "0x00000000000000000000000000000000000f2d5faebc328153d9ae21e3b4e7ba", - "0x00000000000000000000000000000060b93259b2751c5e1b2864ce019db29483", - "0x00000000000000000000000000000000000dfe9f0639c7030551009b9fceed9c", - "0x0000000000000000000000000000007adeaecd0483108ec261fc2e0f40ea3ac0", - "0x00000000000000000000000000000000001859db049ee4a373aa0a51457bf8a9", - "0x000000000000000000000000000000aa9a243094d067b16d9a240fba6b239625", - "0x000000000000000000000000000000000027d84e10890eab6058068b546ad52b", - "0x00000000000000000000000000000096897d6e9458914b15a057184d93fe1bdf", - "0x000000000000000000000000000000000022633a7f90dfeccac4130ef863ce48", - "0x000000000000000000000000000000ecfd1c1b63a9b0e2c48c51df8318ba284b", - "0x0000000000000000000000000000000000159a221f6a803a5641ec70f854905f", - "0x000000000000000000000000000000ebdc0e89df3868626c430df660347da597", - "0x0000000000000000000000000000000000031b03cefd02b93ae05a82423a7650", - "0x0000000000000000000000000000003ee76f3d6511fd1e1d54392378f455bf02", - "0x000000000000000000000000000000000010e22342271999c5205109c742b33d", - "0x000000000000000000000000000000cb43c4d9cd4379fd4a61434941151101fa", - "0x0000000000000000000000000000000000278e8b25ec21c18feb90e1a8fb9586", - "0x00000000000000000000000000000008075183b7e7f99a70369caa382039a3a1", - "0x00000000000000000000000000000000001778520f1b8e6643b9dc715f155e82", - "0x0000000000000000000000000000000c6afe9b2563cf42239f723ef74927533e", - "0x0000000000000000000000000000000000160f793d10be176aca9df8aada1c19", - "0x000000000000000000000000000000b431f5103d7ffd26d185141369b2db6056", - "0x000000000000000000000000000000000018a006e8b69c62409cbca663c5b0d4", - "0x000000000000000000000000000000f9669fec3af386b3a28a754c7ea064b0a5", - "0x00000000000000000000000000000000001b6d46d2d54bd124189cf004319043", - "0x0000000000000000000000000000003c1475cef9a762753100b768addc7aaa2b", - "0x00000000000000000000000000000000002758de89ecc6d396e672b7cb352de3", - "0x000000000000000000000000000000240ddbe918b8f871e38391686d2c8320e6", - "0x00000000000000000000000000000000000e366674803e57a526481ed0a3325c", - "0x000000000000000000000000000000d8e36bafa534bd6d952577061f4497e313", - "0x00000000000000000000000000000000002299a4d79683183bce74b23c39d598", - "0x0000000000000000000000000000005490a6c20731eb5e78bd74b46aaac11dd0", - "0x00000000000000000000000000000000001ae4cda587e10272198c1485b08979", - "0x000000000000000000000000000000a25e3ea91a0d778f78b05c5467e05f207c", - "0x00000000000000000000000000000000001c368a839c85e418881e17062b30f5", - "0x000000000000000000000000000000bb4d7c4a95e6b20167fe5f6a3fac41ec96", - "0x000000000000000000000000000000000007f4789ecc1a323d83a38db84e8700", - "0x000000000000000000000000000000672fd3a4545cfdf3b769625da09c498b9c", - "0x0000000000000000000000000000000000045f73de8af74d05c6f36126075e72", - "0x0000000000000000000000000000001634368a486bef1a3ee12bba3ace458c9e", - "0x000000000000000000000000000000000023f047443c79ba14ab1c87c693b733", - "0x000000000000000000000000000000f25c66c52bd014d7548cab0e5758016875", - "0x00000000000000000000000000000000001ff1ab2e7c055dab59f214f1cc6427", - "0x000000000000000000000000000000c942f2cef0b1fed94b9a99d54dc2054d07", - "0x00000000000000000000000000000000002a3fee3db03bb93988c65e4619e2c5", - "0x00000000000000000000000000000023d0f85d75daf99242665fb4e1e3243c74", - "0x0000000000000000000000000000000000104992b6dac002e995abfb23fb2db1", - "0x000000000000000000000000000000f67928fe838d41c031b33ee308743ded88", - "0x0000000000000000000000000000000000287c2b9837fe538e2bc7e7dffe22e3", - "0x000000000000000000000000000000c502d0a3e5e5010c6ee7b4463f3f0a2abf", - "0x00000000000000000000000000000000000e56cac34fe5fb036e7a851f0bf33c", + "0x000000000000000000000000000000c605d0398cd0b2427c3c9c461bb8429b53", + "0x0000000000000000000000000000000000196952a7e4218337f71f1105909c3d", + "0x0000000000000000000000000000006cae2999b90655b65fb2612f6692e2adf9", + "0x00000000000000000000000000000000002dacb567e258b182d2aa0f0c2673e9", + "0x000000000000000000000000000000fa23b5130fb864af7b45be9abdfee90f81", + "0x00000000000000000000000000000000001b5f38c9b239993607e4bd64e1ec0e", + "0x000000000000000000000000000000bdd3479bd2de629e84156d2c0af3b2ef68", + "0x00000000000000000000000000000000001da27039bf77a359382fc0c56838d9", + "0x000000000000000000000000000000e7039a59b6348c66427f2c08e1b4a38415", + "0x00000000000000000000000000000000000d34616a91f79d7613bbfb94ed0d38", + "0x000000000000000000000000000000ffa72e0f4b9857447bc99abb6f83d42647", + "0x0000000000000000000000000000000000193a8bcc5d47c5f43e6cc581ac0eca", + "0x000000000000000000000000000000609f79166c04a86fef382541bd1c5ab9ee", + "0x00000000000000000000000000000000000db5fa9f0bd6341244daf0d59d7b4d", + "0x0000000000000000000000000000009d97a8c8a3a70077827e2478347af83d11", + "0x000000000000000000000000000000000014360d2aa26b853c45cc56f3ee4d6c", + "0x00000000000000000000000000000037daba742d12aec1b27f76d1d8eb3a1604", + "0x000000000000000000000000000000000010c19122bb08b25208f5814a2d9813", + "0x000000000000000000000000000000be2d452540b2e3de92b42c11ac9e70887d", + "0x000000000000000000000000000000000003735685535ef50a290d4f0f8ed48a", + "0x000000000000000000000000000000c3aa132938397ac9298dc4c631930c2bc1", + "0x000000000000000000000000000000000006842deb4d313e699e597b702ee51f", + "0x000000000000000000000000000000de052dfd6c354afef2580b20acf839687b", + "0x000000000000000000000000000000000029a034fd3752a404c9c1d34be06c6d", + "0x000000000000000000000000000000d1760e3a79672913c859049adbc670838c", + "0x00000000000000000000000000000000000e49d5809084137fc7bc71ba11ae4c", + "0x00000000000000000000000000000018da3c85d452ca91d4c8ae233f3d0ca0cb", + "0x00000000000000000000000000000000002c681b077e84d38c1602e9f572a11b", + "0x000000000000000000000000000000c3d40a67c4190b20133a492d8f79fbbc55", + "0x00000000000000000000000000000000002974c1b596b95212c42728a3f49557", + "0x000000000000000000000000000000f79eef4973eea5c82bd426545a37c7ed2d", + "0x00000000000000000000000000000000001ba2cfcf9b6a183c6c6657d58479ee", + "0x0000000000000000000000000000000e0432dd54f4992443978a547a3553f2bc", + "0x0000000000000000000000000000000000257ed05f3910112f34e3a6132c0f1a", + "0x000000000000000000000000000000febd659aed367ed7407b257704072b88ae", + "0x000000000000000000000000000000000019758526889ecf9801abc067968aeb", + "0x000000000000000000000000000000a3f503fe809fcdea4f4c89790ee9476c07", + "0x0000000000000000000000000000000000054ca4d7b7aef2ff8d05cd828cc7e8", + "0x00000000000000000000000000000082e978a687f226b9d9f6c475d76ad7d0f2", + "0x0000000000000000000000000000000000170d4cfd2d18c54304a6d903bf1a0f", + "0x0000000000000000000000000000006fa34ea411efa79fa5ead29b0692bf2b77", + "0x0000000000000000000000000000000000019bf1e5985e2e1a266a8864a7a581", + "0x00000000000000000000000000000024284a91b4778943659263b48bbdb337ea", + "0x00000000000000000000000000000000002fb6187962b45dd22bcb08a54d2f9f", + "0x0000000000000000000000000000000eded336e987654dfa087268cadec1569b", + "0x00000000000000000000000000000000001f1b47740cf8487a80c45c4609935b", + "0x0000000000000000000000000000000eee28b9fc49c81a286626062375e866a8", + "0x000000000000000000000000000000000011e1f7acbb598eb1167aa3ae001439", + "0x000000000000000000000000000000afd2eac7b63630be51019a6bf88b5d2641", + "0x00000000000000000000000000000000002488ee8880b7c23776f33c1f1078eb", + "0x0000000000000000000000000000002275b7c90182400ba595c7685146405aad", + "0x0000000000000000000000000000000000263a1385b1d49c3dbac85c2b943a14", + "0x00000000000000000000000000000099b6b8028401bdf9add9b6a3e9f3f16f1d", + "0x00000000000000000000000000000000002c92c0237e464563a30456b3e0b917", + "0x000000000000000000000000000000f9cf12c30ec2f4e80b51e603a07fa28f2e", + "0x000000000000000000000000000000000025f210d401c32dcfdd334443a6745a", "0x000000000000000000000000000000e97fb648fc1ff99f9988a73de181e0de22", "0x000000000000000000000000000000000024cae2d5d2c4daefe858889eeb01b8", "0x000000000000000000000000000000e072297115d09425f5612d626dc82f1002", @@ -759,20 +759,20 @@ key = [ "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x000000000000000000000000000000ba29d9e04a4d2430b5e22e72ec55ed3079", - "0x00000000000000000000000000000000002e29cf049afa2de33e32f506a7b8d4", - "0x0000000000000000000000000000007b911ecb306a029603591821997ecc20d9", - "0x00000000000000000000000000000000002c1ba9821b8c07f0c5df203d4f5198" + "0x000000000000000000000000000000df09a35ec29cb8b8e65d374b7ee4b958e4", + "0x00000000000000000000000000000000002a4f5048b3b3a1f217328f560fbb64", + "0x000000000000000000000000000000d05ec9df459e02b89c2805cd568a2f3522", + "0x000000000000000000000000000000000015775347bfde9959a7eeca6a09dded" ] -hash = "0x0b3d95928e22547d7d2a653a9adbd87ac223be58c381de383d545c316ec538c7" +hash = "0x2ef0677eced88cf91ef001e856c0e3e649ab915b579ddcede447fa49fcbc0e2c" [inputs.previous_rollup_data.vk_witness] leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000006" sibling_path = [ - "0x2ce5fb22eb89d2901a9fdd5822b2cc0032dc4a851355040ecc53407ead4306d9", + "0x14caa5816578cf92f252792e62335331c3c7b3aba456597e9d2ec7131722bdfe", "0x0f410eb6e69a2497aabc2f1686a1bdf90876c704621e028ec62c0341f74560ec", "0x07c008584a3bc294cfed5d5a726d88e5ce8be9a34100232e67e6b790e0a2905e", - "0x1392b27d933b41fb9e36e29ac5d45040893997a526088cfa50d707fc2d5fa986", + "0x1a8c157a307350dc57f06625e220057348008c02bc50c04154826acb1153bb77", "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] @@ -782,56 +782,56 @@ sibling_path = [ rollup_type = "0x0000000000000000000000000000000000000000000000000000000000000000" num_txs = "0x0000000000000000000000000000000000000000000000000000000000000001" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" -accumulated_fees = "0x0000000000000000000000000000000000000000000000000000000027861240" -accumulated_mana_used = "0x0000000000000000000000000000000000000000000000000000000000013d6e" +accumulated_fees = "0x00000000000000000000000000000000000000000000000000000000242f4350" +accumulated_mana_used = "0x00000000000000000000000000000000000000000000000000000000000122f8" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants] - vk_tree_root = "0x0f41ca517c1c4dabab14d88d50dcbaa9638b23bfdbc28fa3a94d7260ef0c7427" - protocol_contract_tree_root = "0x0af0a7a13726bd13afe2a3fbfa52690c43ca774227d6c2bfe86fce93c387953a" + vk_tree_root = "0x18c54e1814ecadeffcd11feed9049f02d31148f4457ddcf84e4d580bbc5ccb0f" + protocol_contract_tree_root = "0x2098b90e2b21f02ad7a1fc6afcf944ef3685236caeb015b51a502471c492cdfb" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.last_archive] - root = "0x1f7a1f2c370c7feb3411a7b2abf18f49678ee4a5bab4d9d51d31978f60b8a90e" + root = "0x0d3828a8fd93fdb49ce09ccc58b3a5903cd3c87783948c2095687dcf7fd44bc7" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000008" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000008" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000013" - timestamp = "0x00000000000000000000000000000000000000000000000000000000680688ab" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680784cd" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.constants.global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fe0" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fd6" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.note_hash_tree] -root = "0x270f4d1f827decbabee53c6fc37a1cddd5037d8726b5e64679120e6545243dbe" +root = "0x0e78f1d5dec20ceac046bed6d2695d5086169440bdcd985416da690e4555cd13" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000200" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.nullifier_tree] -root = "0x1d846e0d7b642ca4baa9f4f02228e2c590bea61eba102a0927ea2e9512bc41f1" +root = "0x2171cafb642df56e87d822c83a68653ec9005e8aaed7bc4c551e67ae9cbffa40" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000280" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start.public_data_tree] -root = "0x1fc5818711a8ac7bdbcbb398cbdc3683d177ca17e0837fc806dcee40af71193d" +root = "0x02f60259f9c4998eea8dabb7bdda0abaae8ad6c834593650c4043d9fe78b5ce2" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008e" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.note_hash_tree] -root = "0x270f4d1f827decbabee53c6fc37a1cddd5037d8726b5e64679120e6545243dbe" +root = "0x0e78f1d5dec20ceac046bed6d2695d5086169440bdcd985416da690e4555cd13" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000240" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.nullifier_tree] -root = "0x08c558ea90d328ca7c6035bb7f74bafe2c1ad1ec1d5222d1b966448f32e620cd" +root = "0x027e0b77bd515faf05c278bbd22692ef6c2daf9262660da2f2285e7f4a276282" next_available_leaf_index = "0x00000000000000000000000000000000000000000000000000000000000002c0" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end.public_data_tree] -root = "0x132907e01eff41322b0c94c84994f3e03b60ecb704df43106a15c057d58abc09" +root = "0x23045d8524ba8a3266bdc3c79c9343c058d86f2adc267433d1f7b5bda53dfc16" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000008f" [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start_sponge_blob] @@ -840,15 +840,15 @@ next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000 [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.start_sponge_blob.sponge] cache = [ - "0x009a57442ca51680458906cf811e486ee05e9330e7dbe5b2422c5c5689381aeb", - "0x0056860a8fd94e89739c71f3bcb0e7c763f9ecb05fc9d7293b1a1025bbe632af", - "0x00b67bf18f6e448c8e05582f5af51f4e0c343e304483384ffe1a3d6f9bfbe30e" + "0x003b23bc07c30d6a3b5e5e6eec1a674033836190f84176b7f518b25557a4b5f6", + "0x00ea8a67bdf4fcb0c81b9b6972f76d1456afc0d9e06a22954c997a555a8e76b6", + "0x00acb3dad6cd68dea76a18536a222ca901ba1fc14a854030cbda4c8a4d515b33" ] state = [ - "0x03225b08274371c5d54dc870abe55b2740492a9a94c3512e98a42da1c9585dee", - "0x2bacdc2dd2de39f73dd7f0ff62260a57669ade19cbe21f91123e96a16c169a50", - "0x0f2c54f17e07a5ffb6d562dbc15d0b00171a1302d451eed42409533758ac8cad", - "0x0fcd69f1f4dc62081d053f774c7ae07f615e6dddc93215172443402cc19b7901" + "0x0b3ec790f7d2bec3f20d842e3debe40e01530098c2af94b6ec11e2e6436cb1ff", + "0x0bdb4ba2af4e2efb09328199bb263ada91093841379ac5d8975d583c85a4c921", + "0x2a4b4e49d2a1aa30e09ba321f00b081a2a9f86506a24b7f58142f3a86555342d", + "0x178e6f222c2adc9f6746ee96670ba43c18fe039efef96787345bfd3866e7f1bc" ] cache_size = "0x0000000000000000000000000000000000000000000000000000000000000001" squeeze_mode = false @@ -859,15 +859,15 @@ next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000 [inputs.previous_rollup_data.base_or_merge_rollup_public_inputs.end_sponge_blob.sponge] cache = [ - "0x00000000000000000000000000000000000000000000021e19e0c9b082deceea", + "0x00000000000000000000000000000000000000000000021e19e0c9b102f93bb0", "0x00000000000000000000000000000000000000000000000000000000000003e8", - "0x00cb2426dd7547fb371e50b1861ce295c8850a11cd5546aefafe62002801af77" + "0x18d96139c7e5ebed33c1dcef805f02ca611ca80bb132169d411007c8b4d4d654" ] state = [ - "0x1c2675094132c5e5b39d289e0a35c55437ba280ad3bb6ddfd29a946cf18c7b6d", - "0x24aed04ae991f9e567ae9d7cfdc2109711a44e348011357bf2af79844da9b876", - "0x303bf33985a8528aa24fe9a776bf0377bcb8e6fe7682322bac31683d64e7c664", - "0x00409bc421d8bb49c43f21e2ff2a68c7c62af0285ab287f3f33f8e34a834bc8b" + "0x0c77bf4c89940f917c1217a13ac86017dcdde1a5ee98c5bb430e651b905683b9", + "0x0ecb9ec3eb7eb81eeb5a691167a965a033bce02d845ac8a2feb8f5776ae8fd8c", + "0x2af2576a0bd8ad1889a14910de4a3d568df46fc8c239488315ba2c00554a7938", + "0x0629b1095bf45777cba95efd372c6aa521851b843df2bff16e5edf5ed499fbd5" ] cache_size = "0x0000000000000000000000000000000000000000000000000000000000000001" squeeze_mode = false @@ -1434,90 +1434,90 @@ key = [ "0x0000000000000000000000000000000000000000000000000000000000000042", "0x0000000000000000000000000000000000000000000000000000000000000043", "0x0000000000000000000000000000000000000000000000000000000000000044", - "0x000000000000000000000000000000d0b1197f7bfffd38b595bcff0d5910ecde", - "0x000000000000000000000000000000000018801fc3fa8ead73b87a2860434d94", - "0x000000000000000000000000000000e1cec157d1f63dc6e753da9cde023aa4fc", - "0x00000000000000000000000000000000002ca649dd79903f83ef16e61d29bf3d", - "0x00000000000000000000000000000005f525ab89136f84aa1729019cde79b37a", - "0x000000000000000000000000000000000014c3a8b51c8a1ae7d70b88336d6b4f", - "0x00000000000000000000000000000006e1b61e57b915f20f4b0b8a2535a494fb", - "0x000000000000000000000000000000000018aabb66abf6cc174fb74272b986c6", - "0x00000000000000000000000000000093e25378fa23e5ee8b8413335b22cead35", - "0x000000000000000000000000000000000018ba7fe5f59f2ce745506e2981259f", - "0x00000000000000000000000000000071f00f0ea2825dfc4eeba4ff69e7602660", - "0x00000000000000000000000000000000001af3f6d1fd30301be5b0d9baec451d", - "0x0000000000000000000000000000007aa76ac355aced47d588087bba42c48187", - "0x000000000000000000000000000000000010fb86fd3c9789312c7549f53735ed", - "0x000000000000000000000000000000aa5510d2f88f749e0927e6690d5df9f901", - "0x00000000000000000000000000000000000efb5492bf10654ffa3e5b97d6fc13", - "0x0000000000000000000000000000004fe429a6f715450096b0ed669efe474542", - "0x00000000000000000000000000000000000597a35b4c33e8412029b0cb445c3f", - "0x0000000000000000000000000000008f44f30a75c7bebb69fde5437ac66f7bb3", - "0x00000000000000000000000000000000002e77abebeec09c2c9a56baa1eb99d2", - "0x000000000000000000000000000000cb98f32c2a93984c328d94538c024ad0f1", - "0x000000000000000000000000000000000004ed67cc0eb9d6a915f1a87e4a21c4", - "0x000000000000000000000000000000b8b1c715cc3a995da3e356d84a49b3461f", - "0x00000000000000000000000000000000001c756a469fb761db9781c3b9eb2b35", + "0x000000000000000000000000000000307f5b8d76dd2a6510221d72ef2af872de", + "0x000000000000000000000000000000000021c674ae84acf95641d459aaeebf73", + "0x0000000000000000000000000000002e1d308105f1ae6bed2310a0f6f3554c6d", + "0x00000000000000000000000000000000001645f93a33f9454bd3a48f0435ab7c", + "0x000000000000000000000000000000f9514ed6fb8f36b60052b4a7ee87b58891", + "0x0000000000000000000000000000000000236c0e98f540a52818d53063f80ab3", + "0x000000000000000000000000000000093d4fb792c433f8a3f78651fbd00154bf", + "0x000000000000000000000000000000000015fef1f8ac1fa0afe6d4b86d0703fd", + "0x000000000000000000000000000000f3f1d5db5cd86529eb4be793a1c09c90d0", + "0x00000000000000000000000000000000002b1c0b1b6e6ff40a1db0d56b92e48c", + "0x000000000000000000000000000000c87448ac0aa0ac0289540732c0be55a27c", + "0x00000000000000000000000000000000001d4b1bb612a4e03e99d6a34eb8a19c", + "0x000000000000000000000000000000653b6a66eb5f828a305feebcc32e6c4991", + "0x000000000000000000000000000000000022cb8bb34f30da3b2cafa6bed058d2", + "0x000000000000000000000000000000cf167ec9502aef45bcc3e9532e0c35213d", + "0x0000000000000000000000000000000000089988b259ea79bc7e5279a584fcca", + "0x000000000000000000000000000000559ea843cb44625df56c97d84fd431af08", + "0x000000000000000000000000000000000007419e3e6e97977939958acc8a257a", + "0x000000000000000000000000000000a5db67870c6c3fcc896f2837fe8861abf1", + "0x0000000000000000000000000000000000104e397c72db51d5e8ef949bc4a736", + "0x00000000000000000000000000000018728c390bc83fa2ac2ecd34989b3200c3", + "0x00000000000000000000000000000000001fc6ff9c5f27febaa9bfa3efa16c42", + "0x000000000000000000000000000000ace95fb022b84dd977890e6b4b6e2f02ff", + "0x000000000000000000000000000000000007d5e1c80a25150fcc9d4e5069a8bd", "0x000000000000000000000000000000e7bab6896d9724b5b46b796551dc5feed2", "0x00000000000000000000000000000000001fd93debdcf16cc93f99efd69e938d", "0x0000000000000000000000000000004b94434e1705c9bc2a4f5b2bc2a05c3c03", "0x00000000000000000000000000000000002a29d5563fd08e454dace1605a1aa5", - "0x0000000000000000000000000000003009f654219b8803e498a56757ecaf0caa", - "0x000000000000000000000000000000000003728de03bd351f8f0bce759c5805b", - "0x000000000000000000000000000000683414df390cead2dc0e7684fcb4787587", - "0x00000000000000000000000000000000001e54d98735a5b9467d1beb1e3d0118", - "0x000000000000000000000000000000266fe520eb75b38d1f387b397c3a960ec9", - "0x0000000000000000000000000000000000099f31c9b901ea0ad0199f977fd2f7", - "0x000000000000000000000000000000d967071cba6b6d76d19f21c6df7cda83b0", - "0x000000000000000000000000000000000018418dae1ed14e2a4a5a312fd6ecb3", - "0x000000000000000000000000000000cecbbeccf049978fd1f66f14912f67af8d", - "0x000000000000000000000000000000000018bb15d360d2551a5d207385e727d4", - "0x000000000000000000000000000000d230bc446b8a0faf004108ab516938cfc7", - "0x00000000000000000000000000000000001a1871eeb3397006ebc843eb592f4e", - "0x000000000000000000000000000000e66f67b944be82350d6888526b40f03c25", - "0x000000000000000000000000000000000022d645840597781881948ca21576c4", - "0x000000000000000000000000000000197d19eaa8f0b079668d422c598290624d", - "0x0000000000000000000000000000000000082d467fe2788fe116b09fa660c8be", - "0x00000000000000000000000000000074f0f2be05a6ee6b762dfab98ff81aa2a1", - "0x000000000000000000000000000000000004f29049e4021f13b20a9c6f6de348", - "0x0000000000000000000000000000007ed2cf56ecf217c789f55c6280ff58c8b5", - "0x0000000000000000000000000000000000126426a6a4c78fd210d294738782c2", - "0x000000000000000000000000000000d8ba065a9a47585d0668848cd72ea43f02", - "0x000000000000000000000000000000000028efe8a5d31fe28db1f4416e1a5d15", - "0x00000000000000000000000000000037fda589bb7d043fd7f904a1e1c9614937", - "0x0000000000000000000000000000000000041eb2d9404d385e81212235221094", - "0x0000000000000000000000000000002bc1ed0b54b0c79df43d393aed01ef5046", - "0x0000000000000000000000000000000000010bb57c07226d23c4b0a1382fead8", - "0x000000000000000000000000000000cfa700a4574fe511a5428cd0432befa3db", - "0x00000000000000000000000000000000002aa1d1265c9b3cdb3ee61c294b6c41", - "0x000000000000000000000000000000342d3d0ccf3f2e2282196541d14a2eac4a", - "0x0000000000000000000000000000000000012021fc1373268bac85dbe809051c", - "0x000000000000000000000000000000fd21012b7885c64c921dfbf5bb7ff9b2b8", - "0x00000000000000000000000000000000000dc15e46d5b9be254f15a6fd8b2fdd", - "0x00000000000000000000000000000096f518a5fc6745a7d6872ee8e6002f6d04", - "0x00000000000000000000000000000000000a672fd5ca5353c436ca8f6a89da25", - "0x000000000000000000000000000000bfc178df13bbbd96cbaa68b0ba5ce12391", - "0x0000000000000000000000000000000000229c479dfd6515332827311f8463da", - "0x0000000000000000000000000000006e533bba53139447130b32198593a1aa8b", - "0x00000000000000000000000000000000002285f4a36cd9b9d94bbd2c4be671f4", - "0x00000000000000000000000000000057ee2d38abfc554336eca1b6e8d1a4dc8e", - "0x00000000000000000000000000000000002b5795ec4e6db8936b52ba10c701b7", - "0x0000000000000000000000000000003c5e49804e67220fc9af0572ccff0f7f29", - "0x00000000000000000000000000000000002f6fb1f7eccc85aea61837a6743aec", - "0x000000000000000000000000000000affc2fcc12fc62cf4e5cd4d9b31e5eee26", - "0x000000000000000000000000000000000017ba16a94027618102b4833a334563", - "0x0000000000000000000000000000002bad43d3bcd2bb672c661eef7475a70b0f", - "0x00000000000000000000000000000000000d18100c708cd78b6f2bf7ca26fa82", - "0x0000000000000000000000000000002bb1f85057bf952feb46ede9d9c0678a35", - "0x0000000000000000000000000000000000243938ed5bdfd50e6dc164231c8f4b", - "0x0000000000000000000000000000008a5a7f973a11b790d674ef2b0ed2203119", - "0x00000000000000000000000000000000001cbb3f5acd40f6570af6d9dabc16db", - "0x0000000000000000000000000000007874e66a3dd5f30741309c0938efe3bdd1", - "0x000000000000000000000000000000000015a90bcd2211c6b3c86dcd955ab296", - "0x000000000000000000000000000000dcda92e58af23db5de259e370acee509e6", - "0x00000000000000000000000000000000002e5a76a0d64e317373b7fa76062fa2", - "0x000000000000000000000000000000a4899298e40d9366e1ebfda4359d0c8b23", - "0x000000000000000000000000000000000018af824381429a3e88dbd60745ec9a", + "0x00000000000000000000000000000001ff2ac57b1c52fd3a5589a5ef3ef608cc", + "0x00000000000000000000000000000000000ae1f6d097efb73837c888206b5627", + "0x0000000000000000000000000000006a94cb27951e584fc7f6a77c685ad6b3d6", + "0x000000000000000000000000000000000019033c84dd0600c909bb8890907b6c", + "0x0000000000000000000000000000002f797ff83a0322e549a331c3e371e42317", + "0x000000000000000000000000000000000001682d1c02a03f8a86ecf633d68035", + "0x000000000000000000000000000000264c49167f0708052d371dbd0b9db133f9", + "0x00000000000000000000000000000000000def14918ebd1ec70252b1aa4f2f30", + "0x0000000000000000000000000000005a0ea3aa1dcb16c1e378a12776139175e6", + "0x00000000000000000000000000000000002230ef6d2bbfa1e43387c54053acda", + "0x0000000000000000000000000000002eba4a74542fcfc0d0c9f20f4266c29be2", + "0x0000000000000000000000000000000000122782fec208fa2da7a3806b3f0411", + "0x000000000000000000000000000000e47cd90b2766343c427897b438440f85f0", + "0x000000000000000000000000000000000001843b9079a49fdcd73c16b776afce", + "0x00000000000000000000000000000053362ad18d8713df3273e67f27a98bc375", + "0x00000000000000000000000000000000001a78a3a8232eb885f480c958fe96b3", + "0x0000000000000000000000000000007d034f697037899c24c6eff17ec8ec99b3", + "0x0000000000000000000000000000000000237adf05233c7587b7816cc71e1206", + "0x00000000000000000000000000000083d2a090d67772f3c78797cee894b1563f", + "0x00000000000000000000000000000000001b6075b87892de831d14dba4b42ca1", + "0x0000000000000000000000000000009e67d900ce38bc0a8ba4ba574627e95535", + "0x000000000000000000000000000000000023a12ad8dc157995bee182a1984bba", + "0x000000000000000000000000000000f8611d968082bab97c4caff11d8504e7b2", + "0x000000000000000000000000000000000023747bf4d19033795b66878bc77504", + "0x0000000000000000000000000000007012d641797376834f136a3cc9239b1922", + "0x00000000000000000000000000000000000bc4036aff2fd78afa72b53d26ea9a", + "0x0000000000000000000000000000009f79a73ba8c460801141cfef6a699f52bd", + "0x000000000000000000000000000000000011c13766ad192df4ddada5b412b0e0", + "0x00000000000000000000000000000057079418ae7686eb442cc4a9e4fa08a908", + "0x00000000000000000000000000000000002ae5e170f3e228b1ea2bbcbd277f42", + "0x000000000000000000000000000000da3cef02586fd7acdb2868edec4cde83c7", + "0x000000000000000000000000000000000001e2d8a35f8d8d85af2f433537c377", + "0x000000000000000000000000000000f9e997bb1718df60f3f958a827db0eea9e", + "0x000000000000000000000000000000000021fdeb56e87b959d2e0d48dfc5517b", + "0x000000000000000000000000000000d5110e9037e70d55d6c726a7608703009c", + "0x000000000000000000000000000000000012d7b7a753bffe46b32fbf04299da3", + "0x000000000000000000000000000000d33100f3a27346c959de3636e67373bad0", + "0x00000000000000000000000000000000002ea5a3a3baec5d0f9ace2c6400d566", + "0x0000000000000000000000000000006562dea7d8149e7e1b43fc816fd8eacbe7", + "0x000000000000000000000000000000000019b679db1fbc606804a344b7c338b9", + "0x0000000000000000000000000000002cb02cc09d5c9dc19cc3a089bf6027f0c0", + "0x00000000000000000000000000000000002959370c7abaefcf98ee27bf19313f", + "0x0000000000000000000000000000001592dcd3bb305e32b40619d9135153f03b", + "0x0000000000000000000000000000000000282d2b2c5f2bf993517721fd2d2b1f", + "0x0000000000000000000000000000001acd10314f56403d936c89faaf382c46c0", + "0x000000000000000000000000000000000009b9d53924cf543750b6d278659b6f", + "0x00000000000000000000000000000094f08329658951cbed51f33549fe64ab5f", + "0x0000000000000000000000000000000000164697c899d232d842f48ce348f492", + "0x000000000000000000000000000000afd86924f1e86aa270ad8c6da8343f4a77", + "0x00000000000000000000000000000000000314a4b080634c56931653166fbabf", + "0x000000000000000000000000000000eb1246f4419815e47f1d5ae8d6dba6d962", + "0x00000000000000000000000000000000001f313c2da4433c6c54d4af0d2b2b17", + "0x000000000000000000000000000000236795d1eebaf06bfbdb1493a682637d52", + "0x000000000000000000000000000000000011b0eeaa05e3097cd5da0a34873236", + "0x000000000000000000000000000000dad932f24983ce4571cd0ead65267e8e7b", + "0x000000000000000000000000000000000015240dde6f5f8790cc86a5fc2fb794", "0x000000000000000000000000000000e97fb648fc1ff99f9988a73de181e0de22", "0x000000000000000000000000000000000024cae2d5d2c4daefe858889eeb01b8", "0x000000000000000000000000000000e072297115d09425f5612d626dc82f1002", @@ -1538,20 +1538,20 @@ key = [ "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x000000000000000000000000000000d537f76c99e3c033a50b78b2cd4f088519", - "0x0000000000000000000000000000000000174b8bc2cbf48193034c5dedf3aa70", - "0x0000000000000000000000000000008a90dd680a397419d6a3335acb7564d4a4", - "0x00000000000000000000000000000000000596f669cac83c372d6fe094c83aba" + "0x0000000000000000000000000000001567f3f96a0c53ad32d96de09ac1cae126", + "0x000000000000000000000000000000000026baae0f0d8505282894f5ada72223", + "0x00000000000000000000000000000011679c6c956cae3c86d399a00bb3aa46de", + "0x00000000000000000000000000000000001bd9f4cdafea960e099cb8afad8a8a" ] -hash = "0x2ce5fb22eb89d2901a9fdd5822b2cc0032dc4a851355040ecc53407ead4306d9" +hash = "0x14caa5816578cf92f252792e62335331c3c7b3aba456597e9d2ec7131722bdfe" [inputs.previous_rollup_data.vk_witness] leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000007" sibling_path = [ - "0x0b3d95928e22547d7d2a653a9adbd87ac223be58c381de383d545c316ec538c7", + "0x2ef0677eced88cf91ef001e856c0e3e649ab915b579ddcede447fa49fcbc0e2c", "0x0f410eb6e69a2497aabc2f1686a1bdf90876c704621e028ec62c0341f74560ec", "0x07c008584a3bc294cfed5d5a726d88e5ce8be9a34100232e67e6b790e0a2905e", - "0x1392b27d933b41fb9e36e29ac5d45040893997a526088cfa50d707fc2d5fa986", + "0x1a8c157a307350dc57f06625e220057348008c02bc50c04154826acb1153bb77", "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] diff --git a/noir-projects/noir-protocol-circuits/crates/rollup-root/Prover.toml b/noir-projects/noir-protocol-circuits/crates/rollup-root/Prover.toml index 8a24f44974b0..0edcd5a8bce7 100644 --- a/noir-projects/noir-protocol-circuits/crates/rollup-root/Prover.toml +++ b/noir-projects/noir-protocol-circuits/crates/rollup-root/Prover.toml @@ -3,66 +3,64 @@ prover_id = "0x0000000000000000000000003c44cdddb6a900fa2b585dd299e03d12fa4293bc" [[inputs.previous_rollup_data]] [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs] -previous_block_hash = "0x0293e481700a49fe9e7031afb4e2ae80e9142abfbc83b69ac59ed841c7a99772" -end_block_hash = "0x0d7012464c4611dd9c270a3347068372181aeada51773320b5b03d71c9c39033" out_hash = "0x00201496223ba670899c10fa0b2a2d65993893162620515ed5d2f6fc25dba2d4" -vk_tree_root = "0x0f41ca517c1c4dabab14d88d50dcbaa9638b23bfdbc28fa3a94d7260ef0c7427" -protocol_contract_tree_root = "0x0af0a7a13726bd13afe2a3fbfa52690c43ca774227d6c2bfe86fce93c387953a" +vk_tree_root = "0x18c54e1814ecadeffcd11feed9049f02d31148f4457ddcf84e4d580bbc5ccb0f" +protocol_contract_tree_root = "0x2098b90e2b21f02ad7a1fc6afcf944ef3685236caeb015b51a502471c492cdfb" prover_id = "0x0000000000000000000000003c44cdddb6a900fa2b585dd299e03d12fa4293bc" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.previous_archive] - root = "0x05c542a9aadd68598f9f32cc066dc9e71519fdd09d3bb25917721220c3ffe99d" + root = "0x01f3f9528860628e391a0775aa92501d300cbdf884e49318747dc9c8c4be2670" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000007" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.new_archive] - root = "0x1436a22b4180f43cca1ec2de0f2166a4d514a69bcce6cd19ec7efd74496fe380" + root = "0x00e90e8835f281e4326e5f50c81dd69a65415ac31e4802a55275ebe02627a7e4" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000009" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000007" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000012" - timestamp = "0x0000000000000000000000000000000000000000000000000000000068068893" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680784b5" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fe0" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fd6" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000008" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000013" - timestamp = "0x00000000000000000000000000000000000000000000000000000000680688ab" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680784cd" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fe0" + fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001fd6" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees]] - value = "0x00000000000000000000000000000000000000000000000000000000093eb800" + value = "0x00000000000000000000000000000000000000000000000000000000093bd180" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees.recipient] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees]] - value = "0x0000000000000000000000000000000000000000000000000000000043809ba0" + value = "0x00000000000000000000000000000000000000000000000000000000401a4e7a" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees.recipient] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees]] value = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -342,19 +340,19 @@ prover_id = "0x0000000000000000000000003c44cdddb6a900fa2b585dd299e03d12fa4293bc" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs]] [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner]] -z = "0x04d44e4067344d2c540b625f64d46ba4634aaa6cf480ec7524b68554c86cb0ba" +z = "0x2b7654006d02c5805989e047a53e97e597d755669d482351474ac619e5250220" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner.y] limbs = [ - "0xfbf18d3f5fd100d64e48585423610a", - "0xa0299a1a8f953ca1ed7d98f7d8ea3d", - "0x649d" + "0xa7571bf41cb3bbba9185704bd8bc51", + "0xc3ee8f31759634c8598d5fc28ace3d", + "0x4135" ] [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner.kzg_commitment] inner = [ - "0x00aa16c94b6567c555c3e804912cdb5730cca2fa261313ca6c60f05be31d13a3", - "0x0000000000000000000000000000001bc3b7c061fe32f88c7e2c67d978753001" + "0x0099b696d1aac59ac1d4bb75c8baba02ca72d3b973e9cedca6b53359a997df48", + "0x000000000000000000000000000000e3e7515687b11fc6178923f9b1f5de67a7" ] [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner]] @@ -391,19 +389,19 @@ z = "0x0000000000000000000000000000000000000000000000000000000000000000" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs]] [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner]] -z = "0x1b8f1b0792d5a40a145630f894ddfeee9c298abf207182df0b3e3770d745431a" +z = "0x02a57e7dcfee562691e9f705a27dffc2411694a45dd299cc0e46c2a98323f606" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner.y] limbs = [ - "0x3fcc98a2a678ae22634f60d332decf", - "0x72608a0aef2db8790c51b572dc9ac9", - "0x5491" + "0xd7ec2deb3f32934971e36ab8690cee", + "0x306b16f20e668e5070e903183314cb", + "0x339b" ] [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner.kzg_commitment] inner = [ - "0x00b254cbfe78b8445bf9390be85821266de78209f1c11f2cb5f1e9e058c4ddd2", - "0x0000000000000000000000000000001244f1e204042a948000d8efcfda01c01a" + "0x008abf61373dd489794229987b3f1e6549b102719f023a973ab284074469c7cf", + "0x0000000000000000000000000000009c8747b18cf207a60939988ca7a69d327c" ] [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner]] @@ -3234,9 +3232,11 @@ fields = [ [inputs.previous_rollup_data.vk] key = [ "0x0000000000000000000000000000000000000000000000000000000000200000", - "0x00000000000000000000000000000000000000000000000000000000000003f6", + "0x00000000000000000000000000000000000000000000000000000000000003f4", "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000001", + "0x00000000000000000000000000000000000000000000000000000000000003da", + "0x00000000000000000000000000000000000000000000000000000000000003db", "0x00000000000000000000000000000000000000000000000000000000000003dc", "0x00000000000000000000000000000000000000000000000000000000000003dd", "0x00000000000000000000000000000000000000000000000000000000000003de", @@ -3252,186 +3252,182 @@ key = [ "0x00000000000000000000000000000000000000000000000000000000000003e8", "0x00000000000000000000000000000000000000000000000000000000000003e9", "0x00000000000000000000000000000000000000000000000000000000000003ea", - "0x00000000000000000000000000000000000000000000000000000000000003eb", - "0x00000000000000000000000000000000000000000000000000000000000003ec", - "0x00000000000000000000000000000066804f4a985875d7aa671953157d60b210", - "0x000000000000000000000000000000000016bb088cdd0480bc33cb25b4c32dc7", - "0x00000000000000000000000000000072a0c5c9d6632a43277321206a98532cb5", - "0x0000000000000000000000000000000000163496e626a90ea6aa411dc91cc19e", - "0x000000000000000000000000000000645cbef9de8e41367a2bc995da25c55257", - "0x000000000000000000000000000000000016b954842e38129b677100893647de", - "0x000000000000000000000000000000cefa8358ae33c7a0597a52223ffd4adb00", - "0x000000000000000000000000000000000019ea1dd63ffff09005541cdd377dfd", - "0x0000000000000000000000000000007bcc484503fe1db7fac56324362a6378dc", - "0x00000000000000000000000000000000002d6ce48b23b02e4509389ef2beb1df", - "0x000000000000000000000000000000dc378904beb86a0785bc11c3da23b34269", - "0x00000000000000000000000000000000001f17338fd3c2cbeb049a9a39dcb9ad", - "0x000000000000000000000000000000185df3160e0954f7977c1827217f7cc626", - "0x00000000000000000000000000000000002f10e6d98005ee92285b2dc1c8aaff", - "0x00000000000000000000000000000074eea8a13b50bf163b31f90ae0e6f6f058", - "0x00000000000000000000000000000000001c64b3c479ff7833e4e8cf94d9991a", - "0x000000000000000000000000000000c6d6ec2e62188196775af54c16a42890a7", - "0x0000000000000000000000000000000000233e14b603724d958058647e52afc4", - "0x0000000000000000000000000000009610c6b444eb2799d24e912e114d58c05e", - "0x0000000000000000000000000000000000171c7530137a23360e338b83045c1f", - "0x00000000000000000000000000000017560d671706c6cb9899bf922cebd84f41", - "0x0000000000000000000000000000000000076e4cf9430598c5b9d533ff5fc63b", - "0x00000000000000000000000000000073a967e4c42b5f3abf31a3b156bc7ce548", - "0x000000000000000000000000000000000019c0415b818dfc2544e17f993541e3", - "0x0000000000000000000000000000002d642c1daea7215b9298f7902c21212ed3", - "0x00000000000000000000000000000000002deca8c3e7386ea6f9f9ad25d371a5", - "0x0000000000000000000000000000000d6a5e9d6e5aa66534e125fe442bbd2c1f", - "0x0000000000000000000000000000000000248c4daaa0943137eb97510041d0bc", - "0x0000000000000000000000000000002470c433c862ffdbf4feba872db49024ca", - "0x00000000000000000000000000000000001b15012da812f427704a79bfa6b50a", - "0x000000000000000000000000000000ae251468a4c9be21d730283b913fce781c", - "0x00000000000000000000000000000000001cf479695fd91549de3a3ac8b29fa2", - "0x00000000000000000000000000000051171c82a3185567fbb309207555897344", - "0x00000000000000000000000000000000001a6e20c95f6e5acde38ec3e60d8402", - "0x000000000000000000000000000000b5b5afbd992ca143c1b9e85461f201bb03", - "0x00000000000000000000000000000000000f55c5fdcfe55df10f70be3ed2e136", - "0x0000000000000000000000000000007f37ab876f4adae6320e3f81d4cb17f41b", - "0x00000000000000000000000000000000002405a84dded0df524a55ec8eb2fca4", - "0x00000000000000000000000000000079c8b3a8c2a3a69daa3e1412bcfe2f524e", - "0x0000000000000000000000000000000000113ef7f859e5185f0fe8ef2fff7ae6", - "0x0000000000000000000000000000009496b4afe9ad55e59911bcaa9797843682", - "0x00000000000000000000000000000000001871d8c6c145f0efda2507ee1c91bc", - "0x000000000000000000000000000000a510550a0c8bf74413b128030e2777a787", - "0x0000000000000000000000000000000000171d07a3a51ec940d55fc37a59ee80", - "0x0000000000000000000000000000003d066ca65981109c1aa4796a5845154677", - "0x00000000000000000000000000000000001d18220f7845125fbcfddd025f071f", - "0x000000000000000000000000000000ba75cc3c3a7b138b5b20ff834d113c9bdc", - "0x000000000000000000000000000000000022626eb7954e26a2f018d1f8a83f15", - "0x0000000000000000000000000000000d4f9f90ae9c07f1565264da3def5dc93b", - "0x00000000000000000000000000000000002b011858ecd1ce73563c31c8e3185c", - "0x00000000000000000000000000000089bc0c9448f65f80b11f8a8af701ff1941", - "0x0000000000000000000000000000000000049d866b793eb6f818cc83e47d49f8", - "0x000000000000000000000000000000388a1b377dbb6ec6bc2ae0d9eac6d4e5a0", - "0x000000000000000000000000000000000021866da843b1798030a0cb5bf0c9fe", - "0x0000000000000000000000000000001d8a7ae8d36c2c35ac7a4575cd045fb0c5", - "0x00000000000000000000000000000000002493f12e70d520ac09bbba4146f2f4", - "0x0000000000000000000000000000007f34a57c3234aae3555fb73dc1fda658e2", - "0x00000000000000000000000000000000000f275201f01ac80d096c60c9c92acc", - "0x0000000000000000000000000000004aeee3f8b413f1c8e49642401c82bc1dbe", - "0x000000000000000000000000000000000003715f98b71a7952e1d67f04c066b0", - "0x00000000000000000000000000000036b2e0439f7ea24afd77a72c633d47ad86", - "0x00000000000000000000000000000000002748944b9a63dc1b9fde48d3f92bc4", - "0x000000000000000000000000000000a73f2e3c5789c25543518af729e72bbe6e", - "0x000000000000000000000000000000000027cd5a001ec83e6836a773a8eb9703", - "0x0000000000000000000000000000007bb4b0bae48813ee8d9811ac68aee24378", - "0x00000000000000000000000000000000001fe8e52ffb2b5bb4b0080918329600", - "0x0000000000000000000000000000006ec047aaaae5affcaad15c5c123249175c", - "0x000000000000000000000000000000000012fdf5650c1ee31e137b179bc55ce1", - "0x000000000000000000000000000000abaf741059bb19429c798ed5966e00d1bd", - "0x000000000000000000000000000000000020ca44e168f1921f59c021c23e0276", - "0x000000000000000000000000000000c865ad98bdbe56b993bbd6e271da899169", - "0x00000000000000000000000000000000002857300b3c9250c18dd6570915db64", - "0x0000000000000000000000000000009cf355b1532fde516a9cfafca8168958fc", - "0x00000000000000000000000000000000000b3a9ee815f8dcacfaa88f397a1e5e", - "0x00000000000000000000000000000003f51b4ed4973d99f3067341c43a84c9b2", - "0x00000000000000000000000000000000000aba7f54bdba222f1e0f2dc84b6986", - "0x00000000000000000000000000000062bfc8262895e1ba175ecc3f01ce127ee6", - "0x000000000000000000000000000000000027c46117c35057cb417687cd4d79a1", - "0x000000000000000000000000000000edba3898aa99f23d156aded5308791e45c", - "0x00000000000000000000000000000000001adebce2e1fbdcc36b3ca5f5ec6009", - "0x00000000000000000000000000000065cf7d0844ea257d04e4ea92b3f8ec26d5", - "0x0000000000000000000000000000000000049cf60c2ad204ec0e9a6fb2864c79", - "0x00000000000000000000000000000078ca74b9896d517cd59fb9dc285faeb093", - "0x000000000000000000000000000000000013df699bb44bbe50e503bffd0bd8bd", - "0x0000000000000000000000000000003bdcd78296b6bdafc182df096e72b8e885", - "0x000000000000000000000000000000000029cb0722970834563ea229c9811477", - "0x000000000000000000000000000000a2174b8fe2ef0b1755e966ee129e39d78f", - "0x00000000000000000000000000000000001a430087d34eaaaaa27b5e6720ed61", - "0x00000000000000000000000000000032ee50da813a57f0d6aebcec43c9eedb2f", - "0x00000000000000000000000000000000000949da3b3f9dd09e59c1f9e0a1e00c", - "0x00000000000000000000000000000046e4c294fb285fbcd5fc2957c4c9bd7ddf", - "0x00000000000000000000000000000000000f097db24a007a4ab0bce654a5aa58", - "0x0000000000000000000000000000001f523c324398d106fba1f193235eb0c9b2", - "0x000000000000000000000000000000000012d66e98e2d4c0bd689515fca6d3b2", - "0x00000000000000000000000000000097775d0c87d3535ed89a94e02e7505b8dd", - "0x0000000000000000000000000000000000269039af4c910bb2c4495388047959", - "0x000000000000000000000000000000c2db2e3aafe08ab6cb32f073750885e43b", - "0x00000000000000000000000000000000000e4ef3f025348491c2b658044d1a82", - "0x000000000000000000000000000000bf344c256e0c8973f634bb4d57ac582c7e", - "0x00000000000000000000000000000000000a4ba900bcb3d32e44d5f004bd77d3", + "0x000000000000000000000000000000aa1b7b17c3a04a3742484aa7103c442748", + "0x0000000000000000000000000000000000101210d27fd370a15d89a94a20e7b8", + "0x00000000000000000000000000000037190764b66adda774af491a0713fd1fbf", + "0x000000000000000000000000000000000021711a87f2c3a94ad42336e758668e", + "0x000000000000000000000000000000f61525b7677a16977b0f666329e27ca303", + "0x000000000000000000000000000000000029a70bc6c912c42c6632547233d16c", + "0x000000000000000000000000000000bc92bf69fae1f1757651ca9f782defd9bf", + "0x000000000000000000000000000000000002ab36c0e5c4888b13c8cdf0478c4b", + "0x0000000000000000000000000000004ed9bd59efa237d36f7dd3e9561927e2e4", + "0x000000000000000000000000000000000024a6187801906a0579a7ee0fc215cf", + "0x0000000000000000000000000000004db7454fe93a5443ad8f07f827775a1b5c", + "0x0000000000000000000000000000000000271eb4b59361743732b9d8e2b08176", + "0x000000000000000000000000000000ba22968bf8aedda0643e29bd215b2675b1", + "0x00000000000000000000000000000000000a7d0062d77524ab9ca1957f0f2199", + "0x000000000000000000000000000000684a23e4ff8ca2ff387a2dca3d24988e70", + "0x000000000000000000000000000000000020bc0ef3b9847559cb95a7d48d61cb", + "0x000000000000000000000000000000b48b9ab8256f2434cbc7a61c12d468d78d", + "0x0000000000000000000000000000000000108df94596adb807e5dd410011b56e", + "0x000000000000000000000000000000df450ea190440b36a06f032e8f40d2bee2", + "0x000000000000000000000000000000000014b399fe402b070e641d05b6e59416", + "0x000000000000000000000000000000b416eb079decfe2bd106d91816ca315ca9", + "0x0000000000000000000000000000000000165680282075ed17bf75adf2f6e1ac", + "0x00000000000000000000000000000016783295e8e7d614062b22f2dda8378487", + "0x00000000000000000000000000000000001663163a1eaeaa31923c85acfcfe27", + "0x0000000000000000000000000000001302f251b4dac62841ae1bd13df945d49c", + "0x00000000000000000000000000000000000f622837c4f0df5a76db7277b6cf69", + "0x0000000000000000000000000000008eda01b03bfa9b49c349dd7dba73bd4838", + "0x0000000000000000000000000000000000301757bba30d67e713f1b362c965f9", + "0x0000000000000000000000000000005e6348b0aad5a035d817a1bb1b22314055", + "0x00000000000000000000000000000000002f4611dc1999afab02dd1a2df7ac04", + "0x0000000000000000000000000000006934eaac5dbc8d0a78edd7b2bdacebccb1", + "0x000000000000000000000000000000000030610664a0009a34ee34c614ea6e6e", + "0x000000000000000000000000000000a642801238ed7dd300299312d7cdd14901", + "0x000000000000000000000000000000000011118a315a1512dad16d8994a8bfe1", + "0x000000000000000000000000000000b3acceb8ce08f3dd5888b9a615773543ef", + "0x000000000000000000000000000000000006818c0f327b403e3b45c9a1690db8", + "0x000000000000000000000000000000d5ea6bfbaa1f21cd541483474e86a585f9", + "0x000000000000000000000000000000000024d4e72ebae7934bf2c45a07f38ed1", + "0x0000000000000000000000000000004cb1e04164cb45fb1f1f8f8a5b394da6cd", + "0x000000000000000000000000000000000018eef1bff7eb36acafc586e2bec614", + "0x000000000000000000000000000000deaecd8222763ff4bc9e73ef0fef929611", + "0x00000000000000000000000000000000001b1a8cdab670089e02d6e6d633acb2", + "0x000000000000000000000000000000f66160993b58768dafff66985ebad56d08", + "0x000000000000000000000000000000000012408b14ff4845e5ffdb38b4bb2b04", + "0x000000000000000000000000000000dd989ad4c7560d20c6488c68925bade271", + "0x000000000000000000000000000000000024c2a1878f45247e6669f2ba1a7785", + "0x000000000000000000000000000000815a03109a90401969b44f41c92043cb5d", + "0x000000000000000000000000000000000013ea56751c6be5fa4e3e72534192ad", + "0x000000000000000000000000000000d37dd5e6dfc727d6e6b8747934c6db12d7", + "0x000000000000000000000000000000000008be6d61a33d277fefae81fdf208a9", + "0x0000000000000000000000000000001b2196d5d002049454e63b8cfb63ba7486", + "0x000000000000000000000000000000000011971118c78511fc81b02ac0c457a7", + "0x0000000000000000000000000000003d8e286a42af68de0eb68fa01e62d7a21f", + "0x0000000000000000000000000000000000023066faf67f7382bb0a799ca9735a", + "0x0000000000000000000000000000005c66a80c680f53ab4310a3486f0e97c211", + "0x00000000000000000000000000000000002daca59e902f27b13b8ea067eb4867", + "0x0000000000000000000000000000001bf80582b3f926840b345e5f53037959b0", + "0x0000000000000000000000000000000000092d15f16779b73c636a11ba3812b8", + "0x00000000000000000000000000000068e0d39911b22ff1648afecf24e72a10d0", + "0x00000000000000000000000000000000001dedcc869a77574f7d991317ab49ce", + "0x000000000000000000000000000000f23ddab1686160440b960a2d40a99921b1", + "0x00000000000000000000000000000000002514f172323d775da7ad7f912acd94", + "0x000000000000000000000000000000823093caa141fce83d1bf4cd02ce398bbd", + "0x00000000000000000000000000000000001601e74cc7d1f39aaca0ed6474e043", + "0x00000000000000000000000000000042d9586c50d4590050ad343e0443734282", + "0x0000000000000000000000000000000000088601a2d37d64f1210fd60901a9fc", + "0x0000000000000000000000000000001f30e9c4c996e60e963e317bf7f17e1de3", + "0x000000000000000000000000000000000013eb7c998737555e12b1cb10bbe459", + "0x00000000000000000000000000000065ef8f14a3630d3b4fe210aca34512626b", + "0x000000000000000000000000000000000016598ef956e9913a8021af9a50486f", + "0x000000000000000000000000000000155dceeb2f27649da7220c01d9cdee06bb", + "0x00000000000000000000000000000000002383e426734a97958e16299c34c17a", + "0x000000000000000000000000000000300a5d5eec93dc7d176512b45461218511", + "0x000000000000000000000000000000000026b945a6a5a1e7d8a4002c38785111", + "0x00000000000000000000000000000056b7f719089716fa59d19740acfdd01ce9", + "0x000000000000000000000000000000000018804ccab093985fdcf189a17b7fee", + "0x000000000000000000000000000000afc63d59a2e8acc44cb0d0fe4602e83007", + "0x00000000000000000000000000000000002cc60c71eb1acb3b57c54b7e27c1ee", + "0x000000000000000000000000000000dbd647490fb052ec527ceb50fb701e4bc3", + "0x000000000000000000000000000000000016ed8b330342d7d12f13a64e5ae347", + "0x00000000000000000000000000000062fc3cdd19aaad1b98b246e4d0c1f74193", + "0x0000000000000000000000000000000000155f0a8ed047b1eafc6c300d634d41", + "0x00000000000000000000000000000085021877edcebcacb577005ec1be1d8251", + "0x000000000000000000000000000000000014b62e986125d889414e789b4481e5", + "0x00000000000000000000000000000050190beddf49f49ca143550370ff05a583", + "0x00000000000000000000000000000000002d26b502043c651f1d43ccd1cd3d8e", + "0x000000000000000000000000000000771a627d9293261b513e8334917822952b", + "0x000000000000000000000000000000000003287962ec49d7525f6a0478615b50", + "0x0000000000000000000000000000008119e229e16a072dadfc501e845de8636f", + "0x00000000000000000000000000000000002b71a8d62325e84edffb93822dffe6", + "0x000000000000000000000000000000b70344374476bd9f14c5a4d2a97ab26256", + "0x00000000000000000000000000000000002d9697913326f6140c0941651329ac", + "0x000000000000000000000000000000246089daba55a613a8e0532c54799b527e", + "0x0000000000000000000000000000000000051e22e4eeb2054a4973fa2dd38714", + "0x000000000000000000000000000000dd9fb6025de99f4710520420e9fa24b07e", + "0x000000000000000000000000000000000010c6272a2822c97cbcbb832d198c40", + "0x0000000000000000000000000000008694bae0220cc8de0f5c8d971d2df21f6d", + "0x0000000000000000000000000000000000241d72b3b591ca47827fa5aad3814c", + "0x00000000000000000000000000000008e54f90cfd15792dbb6419adbaf2fb714", + "0x00000000000000000000000000000000001d8508ffd1e727e45eb477de78e8eb", "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000007b87a4c4e3ea186ba876389a5176fb25a4", - "0x000000000000000000000000000000000027fe311cb68c64a0a0deeb315980fb", - "0x000000000000000000000000000000bc2045c97693a9717aaa214ef200d894db", - "0x00000000000000000000000000000000002a7d3771671df94f616a0e23195aad" + "0x0000000000000000000000000000000d864666527eca244d69734ba80e73bcdb", + "0x000000000000000000000000000000000011aa91c0c4cd61b4e91da9c1239015", + "0x0000000000000000000000000000000f4a62e96721b3c00128e4dc32d43ddfb8", + "0x000000000000000000000000000000000003156b792d64dc6f7486da727f75f4" ] -hash = "0x2181266264c81b6ab859f384f68d6004f56de7693c87096afe3a81a5094101ea" +hash = "0x173c68eef542acd2471dd676f9e497b8812888dac95814a77223a129cb3a2110" [inputs.previous_rollup_data.vk_witness] leaf_index = "0x000000000000000000000000000000000000000000000000000000000000000c" sibling_path = [ - "0x1d20a4c2895e0e628f4ee2c6c347f5e933d944a955ebb0ee5aec6c373d379579", + "0x0fa4b5c933ef8d289e48a82dcff5d3c51bc8399a1c1c224d3a2aa996095cdb49", "0x0a60cb44548a4dff391b54c00c5c4d8a0e5e2c3bd8382d0681bfea37b8b62284", - "0x03db9bf66f885e682339e240f9e513e6755f5eb80c99efdac800ae5dede4fa1c", - "0x04a097c17f5377c94ec09401ec396021e7c9ee13d981ef339a563b76f7be8df8", + "0x0a80e4c3fa91f16ab6e479a924b71ed3d9b192794ce5744116b534a38f60e8fa", + "0x2f5f0e8285b051021accb7ac271d2a103f043226b5eaf3597a23e6535bd9eb97", "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] [[inputs.previous_rollup_data]] [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs] -previous_block_hash = "0x0d7012464c4611dd9c270a3347068372181aeada51773320b5b03d71c9c39033" -end_block_hash = "0x03ab6327c13a0af142d532bdf5161234978be868c3870c41ca1e4b73084820b0" out_hash = "0x0000000000000000000000000000000000000000000000000000000000000000" -vk_tree_root = "0x0f41ca517c1c4dabab14d88d50dcbaa9638b23bfdbc28fa3a94d7260ef0c7427" -protocol_contract_tree_root = "0x0af0a7a13726bd13afe2a3fbfa52690c43ca774227d6c2bfe86fce93c387953a" +vk_tree_root = "0x18c54e1814ecadeffcd11feed9049f02d31148f4457ddcf84e4d580bbc5ccb0f" +protocol_contract_tree_root = "0x2098b90e2b21f02ad7a1fc6afcf944ef3685236caeb015b51a502471c492cdfb" prover_id = "0x0000000000000000000000003c44cdddb6a900fa2b585dd299e03d12fa4293bc" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.previous_archive] - root = "0x1436a22b4180f43cca1ec2de0f2166a4d514a69bcce6cd19ec7efd74496fe380" + root = "0x00e90e8835f281e4326e5f50c81dd69a65415ac31e4802a55275ebe02627a7e4" next_available_leaf_index = "0x0000000000000000000000000000000000000000000000000000000000000009" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.new_archive] - root = "0x1ffad2c15b50a8ea6facb1827566c8dc7c6b8188b8726ca4a78374cd8ed69df6" + root = "0x1f68fd848346dc402fee0ffe33b36502ba5fa266da5e388c27f6597e38700ffa" next_available_leaf_index = "0x000000000000000000000000000000000000000000000000000000000000000a" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000009" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000014" - timestamp = "0x00000000000000000000000000000000000000000000000000000000680688c3" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680784e5" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.start_global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001464" + fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000145a" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables] chain_id = "0x0000000000000000000000000000000000000000000000000000000000007a69" - version = "0x0000000000000000000000000000000000000000000000000000000040607c46" + version = "0x00000000000000000000000000000000000000000000000000000000d2ad2ca3" block_number = "0x0000000000000000000000000000000000000000000000000000000000000009" slot_number = "0x0000000000000000000000000000000000000000000000000000000000000014" - timestamp = "0x00000000000000000000000000000000000000000000000000000000680688c3" + timestamp = "0x00000000000000000000000000000000000000000000000000000000680784e5" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.coinbase] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.fee_recipient] inner = "0x0000000000000000000000000000000000000000000000000000000000000000" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.end_global_variables.gas_fees] fee_per_da_gas = "0x0000000000000000000000000000000000000000000000000000000000000000" - fee_per_l2_gas = "0x0000000000000000000000000000000000000000000000000000000000001464" + fee_per_l2_gas = "0x000000000000000000000000000000000000000000000000000000000000145a" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees]] - value = "0x00000000000000000000000000000000000000000000000000000000194896f8" + value = "0x000000000000000000000000000000000000000000000000000000001721ab30" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees.recipient] - inner = "0x000000000000000000000000bb64eba85677f4b24c42127b0199b94edfa3f6cc" + inner = "0x000000000000000000000000ae805ea316df95bb6095761b1b231b55b7329c87" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.fees]] value = "0x0000000000000000000000000000000000000000000000000000000000000000" @@ -3717,19 +3713,19 @@ prover_id = "0x0000000000000000000000003c44cdddb6a900fa2b585dd299e03d12fa4293bc" [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs]] [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner]] -z = "0x2bfdbbb089ff09f055f3f7a1b578126d45b3b2d97307c9018d50478e59ecdacf" +z = "0x11c3bc490c1d975322df4fa8a2753e8e825cb51ff0e4ce8f200a61dc5b1e5da1" [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner.y] limbs = [ - "0x4f902cca94a4e3ef41f9c28f481c22", - "0x5a3cc5e2ba31b2850e682668e3611b", - "0x3df8" + "0xe5d4e33a5778976ed1771ff3f44de8", + "0x69dd2206f24f9a8e74410bb4221995", + "0x3451" ] [inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner.kzg_commitment] inner = [ - "0x00973b121b3aa83bd6629f52fdc1dc69a9198fb49b47244282810dbcac7c4426", - "0x00000000000000000000000000000004321a115919122564dbd17897780d1595" + "0x008c9fc22717396feb181e1a89648ed2a4ebc1b3793f580ccf083ac162d821b8", + "0x0000000000000000000000000000006b7b31b731d76b1337159211ed6039af36" ] [[inputs.previous_rollup_data.block_root_or_block_merge_public_inputs.blob_public_inputs.inner]] @@ -6609,9 +6605,11 @@ fields = [ [inputs.previous_rollup_data.vk] key = [ "0x0000000000000000000000000000000000000000000000000000000000400000", - "0x00000000000000000000000000000000000000000000000000000000000003f6", + "0x00000000000000000000000000000000000000000000000000000000000003f4", "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000001", + "0x00000000000000000000000000000000000000000000000000000000000003da", + "0x00000000000000000000000000000000000000000000000000000000000003db", "0x00000000000000000000000000000000000000000000000000000000000003dc", "0x00000000000000000000000000000000000000000000000000000000000003dd", "0x00000000000000000000000000000000000000000000000000000000000003de", @@ -6627,126 +6625,124 @@ key = [ "0x00000000000000000000000000000000000000000000000000000000000003e8", "0x00000000000000000000000000000000000000000000000000000000000003e9", "0x00000000000000000000000000000000000000000000000000000000000003ea", - "0x00000000000000000000000000000000000000000000000000000000000003eb", - "0x00000000000000000000000000000000000000000000000000000000000003ec", - "0x0000000000000000000000000000007a7a527ae715179f2aa6d6b5fc3fcf6217", - "0x00000000000000000000000000000000002a592fbfb7391893e1981563040979", - "0x000000000000000000000000000000a1107538725bcc6b9b7c13cd773c579b4e", - "0x000000000000000000000000000000000017ad2d6dc8acf911d266ce6092481d", - "0x00000000000000000000000000000060053b8f31f6dd491d26424438d75774f4", - "0x00000000000000000000000000000000002c76ef5020a22dbc028c114507669c", - "0x000000000000000000000000000000f248ba20b8b2cb01b798a08862833ac3af", - "0x00000000000000000000000000000000002f79ca115398f79fc43fd481bac441", - "0x0000000000000000000000000000002c6028e0552aa695b5ec03a055dfe55ab3", - "0x00000000000000000000000000000000001a5fb3fcc4eb0716e6303819d4f559", - "0x0000000000000000000000000000007a62d886cf7daa9cf8187390ad51b79579", - "0x000000000000000000000000000000000008728c8a36ed6d5a957a42ddef12ac", - "0x000000000000000000000000000000efd6ca5efa744e7241f7e6268936a05ab1", - "0x0000000000000000000000000000000000226fd6c4f1e0cdcc16e857e37d23aa", - "0x0000000000000000000000000000001d1925f654ced0bc9fbf73bb7842f01566", - "0x000000000000000000000000000000000021f3641ce758215f953b0ce98aac07", - "0x0000000000000000000000000000000ed9061f9593938a4eb1165bea62c42ffe", - "0x0000000000000000000000000000000000262d9a85a3383708d95ccc42dbfe75", - "0x00000000000000000000000000000009eea40577fe746a678d00ddcc06eb38dc", - "0x000000000000000000000000000000000029605a6d6702694cf5d19f4cf715aa", - "0x000000000000000000000000000000282a4bf4f2f54be2779163bdc70c752d2c", - "0x00000000000000000000000000000000002cda54d3011667fef70ebdc551fe52", - "0x0000000000000000000000000000005d80d80d7f650208b8e2a22a7b1f01852e", - "0x000000000000000000000000000000000022c9292bc3d82d1563a303aaa04c0c", - "0x000000000000000000000000000000ddbb65fee64c9d1204287e811cb436fc95", - "0x00000000000000000000000000000000002d2141dbf8e19e490a545c243b9da8", - "0x000000000000000000000000000000980981ed27d03f6a5a799091150f1dd318", - "0x0000000000000000000000000000000000236aedb66c50bb004e87095b95ddfb", - "0x000000000000000000000000000000d12a90a77879baba2ba72effefa42b6793", - "0x0000000000000000000000000000000000252dd534c32f76be0629c8d6eb18a6", - "0x000000000000000000000000000000668123f9621395ad9a0b1ae8da6c406fca", - "0x0000000000000000000000000000000000085b62716f681118e2dac8c661773f", - "0x000000000000000000000000000000a764f3976ddfee6c0283cef5740cb1a30f", - "0x00000000000000000000000000000000002ef6a78426b7eea2e634b9bc6de8f7", - "0x0000000000000000000000000000003af14ee9cfe739a8249796d3b72d89e6c7", - "0x00000000000000000000000000000000002302ad1e51fcfe6f981d9a906ba1a2", - "0x00000000000000000000000000000010d30774b8b9d38b776440a7da3e77ced9", - "0x00000000000000000000000000000000000784b23752828f6558275a82c60fd0", - "0x000000000000000000000000000000ff9792b47c43ae44a47b5ebeb5418e79ae", - "0x00000000000000000000000000000000000b82f0359354487dee888986728cb2", - "0x0000000000000000000000000000004863bf8683e6b5956c1e6c51312dd84aa4", - "0x00000000000000000000000000000000001db7222d03a0c89b4846a1ab88d92a", - "0x000000000000000000000000000000e2b39d22432831f1039c0cc2ed288b88fb", - "0x000000000000000000000000000000000019668130ab31337869bd634678fe76", - "0x0000000000000000000000000000002ad15097997a066a55f88a9f67e69b1c2b", - "0x00000000000000000000000000000000002de80c6e61c1e92ff0e8ea2d7759da", - "0x000000000000000000000000000000a1edd16549e89b5c97110fb944b4c85a55", - "0x0000000000000000000000000000000000020841506c896ddf10b72fbc078479", - "0x0000000000000000000000000000003e9d37d41d027f4e3b587a5a0b2843742a", - "0x00000000000000000000000000000000001d6a5c21abb1f35c023ce1509f0646", - "0x000000000000000000000000000000eb5e318bb4213bfd60594624bd072d2752", - "0x00000000000000000000000000000000001a18f7166aae1b93de564f59387d6d", - "0x0000000000000000000000000000005b8bb2be2faab575ab2cf4bac1db4067fe", - "0x000000000000000000000000000000000024308cefdaf4f4fbe97940e7d8f1e1", - "0x000000000000000000000000000000420ccb21c1efe88f4a609fee35c1d92cf4", - "0x000000000000000000000000000000000017b4ab8445f38c9aade1a0c69af6a1", - "0x00000000000000000000000000000031e69e648903a583d96876f6ad058b648c", - "0x00000000000000000000000000000000002c61721eade22ea0ad142b5ddf46c3", - "0x00000000000000000000000000000007126873dd7a61ea2ce04d28db9b521f1f", - "0x00000000000000000000000000000000001f797797807a0e3915ad0ba40b3617", - "0x0000000000000000000000000000004becd6e0551eb871fdcf1ec499ddb1525f", - "0x00000000000000000000000000000000001dcbde3e7629bf5e70d70a6162f643", - "0x0000000000000000000000000000008bff931a07a61a501958ce19a3a7b855c3", - "0x000000000000000000000000000000000013cce2a9e31bc8c96dcccaa2b1aeda", - "0x00000000000000000000000000000007f252e00ee75816db70bf1ea0a64d4f4e", - "0x00000000000000000000000000000000001a46b2d5e1f3fefacec5db5fb2b724", - "0x0000000000000000000000000000001d03501b87905f1cff510f0d0d58a51645", - "0x00000000000000000000000000000000000fec60f7f0553ae52fc5de89e0e684", - "0x00000000000000000000000000000040183d10327e305fd1b3fd7eb2a9df949a", - "0x00000000000000000000000000000000001e20619558383745ef0dbaf951704e", - "0x000000000000000000000000000000530876398b44ede17b6cc6d143f2702516", - "0x00000000000000000000000000000000000785aef7b2e788ec271132c9e3d669", - "0x000000000000000000000000000000d71be9441b59d88e8c2e5cc5672383377f", - "0x00000000000000000000000000000000002c4a2c6d5aac3688df86a78f5e0c5f", - "0x000000000000000000000000000000a42f9d6dfb523a917738d21e5a45ea1ba5", - "0x00000000000000000000000000000000001a0f063676511a5dd95a3336f51767", - "0x0000000000000000000000000000003a9220908fe58119e01e31aadbe2c27d52", - "0x000000000000000000000000000000000009a86c7000c7dcab7a560cf50716cc", - "0x000000000000000000000000000000964c4c58e7cc7f3eb0fa7a961d42fc432b", - "0x000000000000000000000000000000000029d138a959c7c71b2a9042a2fb5812", - "0x000000000000000000000000000000f27ba1ea8743fbe9f4014c188caf138881", - "0x00000000000000000000000000000000002481d75eddfe970b0f5bd90d5a3044", - "0x0000000000000000000000000000000e8fa00ce83e7dad8a2249a8381c5f57f8", - "0x0000000000000000000000000000000000302f09225666a17dedad82ca43da16", - "0x0000000000000000000000000000003a11f3ff7ed5dafa46a8e17ad10d8528d4", - "0x000000000000000000000000000000000028daa2aab093285dcdc2f01b295cd2", - "0x000000000000000000000000000000c47e0c7183bf78529905ebde0e52e8a8da", - "0x00000000000000000000000000000000002d9f06ece033f0bdf74fcc5cb0c389", - "0x000000000000000000000000000000b61e2cc78f69c9d12b2cf873ce56460acb", - "0x00000000000000000000000000000000001ca91a6441e1d918a2f71760e88a10", - "0x000000000000000000000000000000b41933d9f85656709058f0fddcfd5be3e4", - "0x00000000000000000000000000000000002a9bc09dc9ec06eb6ee1ea51a5de24", - "0x000000000000000000000000000000cad3eaab5bbd5744461bcd5956fe88fa4d", - "0x00000000000000000000000000000000001f6b3741c7ba090902fabbe5a681e3", - "0x0000000000000000000000000000006dde40da2faf3d3a9b44d2950c474ccc09", - "0x0000000000000000000000000000000000301fea7d8a0eda5ae0bbf767fd6490", - "0x000000000000000000000000000000f9f66e197773756fd90d81d3bf34cbea82", - "0x00000000000000000000000000000000000105eaeaf72f2686b6317b7d55140f", - "0x0000000000000000000000000000008ea77bae71c047d062115720c184bdd536", - "0x000000000000000000000000000000000030109f001002799e16173f6ca1f7b0", + "0x000000000000000000000000000000c91b09ee4477cad93086589015c19d664d", + "0x000000000000000000000000000000000021255915f66a1fb1c0c45527c0d0b0", + "0x0000000000000000000000000000007f29a552af1d2e40f80e877018051689b2", + "0x00000000000000000000000000000000002a06e2eb9d9e03114039334173bbe6", + "0x00000000000000000000000000000067547e19ec5c471a48e76e3bdfb7b5a823", + "0x00000000000000000000000000000000001fa896438c0f8b4139bb6379e9612a", + "0x0000000000000000000000000000006550158e15b0fe7712727527ea3d0c399b", + "0x000000000000000000000000000000000013d0096d7c4fea967be9b8ee599ef8", + "0x00000000000000000000000000000044123f796c6a94b1c449e8745631eb4d0a", + "0x000000000000000000000000000000000029a4b2664a3afc231fa14965344dda", + "0x000000000000000000000000000000f1c792d80f9a9f902451be8b99273b796a", + "0x0000000000000000000000000000000000208114ac766e8ee1fcefb741617eb4", + "0x000000000000000000000000000000b8ac66b8175c77fbed938fc691f46a291b", + "0x0000000000000000000000000000000000237e86b73a28273c4c7b0572c18f2a", + "0x000000000000000000000000000000a4e297df117a0a695915e0e2dc29d691b9", + "0x00000000000000000000000000000000002350b59c33a549ee165efa5eb86b03", + "0x000000000000000000000000000000e68cdfa136708813d5c551155f77462df5", + "0x000000000000000000000000000000000011d1901f037ad3d16091f13e91cb72", + "0x0000000000000000000000000000006624d40454b46441d73c874b35fb302c88", + "0x00000000000000000000000000000000001f45ba241f056fb577655a0a8325af", + "0x0000000000000000000000000000004f9d11429c2edce01790c07e538f5667cc", + "0x000000000000000000000000000000000006a7ae99867b42c1ec7b865e06c6c4", + "0x0000000000000000000000000000001f2b95639440c1a63877ac345ddc6f31a2", + "0x0000000000000000000000000000000000245f687da57d3b3a0e6ca5130c46b8", + "0x000000000000000000000000000000e6a9379f531ea207de4c38b3eac969d590", + "0x0000000000000000000000000000000000168890ac957e785e5322018a09f155", + "0x000000000000000000000000000000dfc38022eaac25d496a4537759ce2bc920", + "0x00000000000000000000000000000000002bd0c4aa32c8a85d9b5200367521b5", + "0x000000000000000000000000000000758e96a3659a0877b601e21c4269543487", + "0x00000000000000000000000000000000001231cf0520c463ff976a7e02790e09", + "0x000000000000000000000000000000f0759da36dda572ca16a880241cd8dfbe0", + "0x00000000000000000000000000000000001ee5b47453d93f3e8fe6aedd38a111", + "0x000000000000000000000000000000031a0d6c051f70654474717889ab0b40c9", + "0x00000000000000000000000000000000000cb262f60112bed8012e27f9745099", + "0x000000000000000000000000000000d76a3abe4c898fa4180b66e9f702bb4328", + "0x000000000000000000000000000000000007d8fc47186699fb8d2dbbb235e8d5", + "0x000000000000000000000000000000f5cae6ae7f16c1a2dd27284fa8865f2691", + "0x00000000000000000000000000000000001a14f81b7331c73e6a5113af314ee9", + "0x00000000000000000000000000000018c8bfe71feedc009498aeb03e4779f05e", + "0x000000000000000000000000000000000029749134a511152530d6b456e771fc", + "0x0000000000000000000000000000007039fe373dd9498554f0f0b88057f6ee28", + "0x00000000000000000000000000000000002e86ff735bfead8fff1fd217af3b6d", + "0x000000000000000000000000000000eeeed70761f7b7dc833c4e52c065ef889a", + "0x000000000000000000000000000000000014bb2d26b4a88498a132a5d49157bb", + "0x00000000000000000000000000000037f392bebc84b9f68e7481cb636d94930f", + "0x000000000000000000000000000000000012d83bf31021974a9112c057050db4", + "0x000000000000000000000000000000630b174bcfdc99cfffc18c5a3357fc9fd9", + "0x00000000000000000000000000000000002369fa36e6e7b848ae1720a8aded03", + "0x000000000000000000000000000000071dfb07128344beb94865b2545decb893", + "0x00000000000000000000000000000000000cf35f7cda155febb76dabef3f3e46", + "0x0000000000000000000000000000005791274945bfad20980643de4edfb9ece8", + "0x0000000000000000000000000000000000232ea9d7800464c1e8cc8e2bd1e7fa", + "0x0000000000000000000000000000009b01459d542f8bc0ca0c45f7dc010e9d3c", + "0x000000000000000000000000000000000026355b4385dbe5494d06ce1d3aab63", + "0x0000000000000000000000000000005adef58e5dd913443f9236ccde99348012", + "0x000000000000000000000000000000000005c2b48d769c481b64766977be11f5", + "0x0000000000000000000000000000009a9592b8e831c549900823caf6fff2a63b", + "0x00000000000000000000000000000000000ef1f6cb4c305130ffcd2cba7998d5", + "0x000000000000000000000000000000b111ecc0e3b6096d04ab409d1031113d8d", + "0x000000000000000000000000000000000022cb8c3bf6411f00b43b5e144f15db", + "0x000000000000000000000000000000335d82d0e7ad2ab867b3455c5573bc5884", + "0x00000000000000000000000000000000001d9899242d75dd7e50c4d833319255", + "0x000000000000000000000000000000166740b9f2177af9356ae2e97915cd3348", + "0x0000000000000000000000000000000000002001093682571844a66bf3646d95", + "0x000000000000000000000000000000a302265c23a9b1c243e5f25e8608732956", + "0x000000000000000000000000000000000008e05a879e24f9448959f256466f27", + "0x000000000000000000000000000000aa735a464058e8b6b1d1fc4919430e0519", + "0x00000000000000000000000000000000001678d9f1bf9728fbd96b0467dd7bb4", + "0x00000000000000000000000000000011e28678d41b4202fd6b7c8fbb8d3ecacb", + "0x00000000000000000000000000000000001a9429ae351527a73388b5430b9821", + "0x00000000000000000000000000000051c9bf17dfdcc7c5525d039b2c701132db", + "0x00000000000000000000000000000000001b421034d5333685e2fdfa23a43f38", + "0x0000000000000000000000000000005d8d0cc8efa0ed1e5e03fb57dfe90b73fe", + "0x00000000000000000000000000000000002397c69f0bb570b8025cacf29d7bab", + "0x00000000000000000000000000000044a2b1f7a8df29c4a98f722fe4beb7e374", + "0x000000000000000000000000000000000011fcce004e9b51a3c906e106d6cd1b", + "0x000000000000000000000000000000518801da7ba087fcbb0c440943c8086bd8", + "0x000000000000000000000000000000000021b2e6ebb6a8603f94ee106464b003", + "0x00000000000000000000000000000057fdb84a8a159f6db6777b3f08077b5653", + "0x00000000000000000000000000000000000472da363520675cee5aeaad93a0b7", + "0x000000000000000000000000000000f2525afc9880482204e3b4423623980411", + "0x0000000000000000000000000000000000274e7f1480c27d476b86a5f5391c29", + "0x0000000000000000000000000000004a8eddb3b148661c9ac36cce0f1aae8d41", + "0x00000000000000000000000000000000001c73715417505d0b2b64114819a4be", + "0x000000000000000000000000000000950682eb60cb5455d12d47d478edcd8744", + "0x00000000000000000000000000000000002674dcc5c46aace2a7b24c9177bca4", + "0x0000000000000000000000000000009d0400d74c2810099803ce00e4d212e027", + "0x00000000000000000000000000000000002dd78ffbcabe324f8fdd974ba4592e", + "0x000000000000000000000000000000835d6524088c85a6229c253f19f9075a24", + "0x00000000000000000000000000000000000ea53cd2576f3ed59997b9c31ade62", + "0x000000000000000000000000000000b63021ec911d878a8808271f9fc354f6c1", + "0x0000000000000000000000000000000000013899f19981c306831c30f8be091f", + "0x000000000000000000000000000000e9ea0973de12fdbcf9692352b0bb9e126c", + "0x00000000000000000000000000000000000f480ce1fe1a5e6d79c1aea34ff6bd", + "0x000000000000000000000000000000377185add84afd6c2c81cd920469f4eed8", + "0x00000000000000000000000000000000000b30da5e57df9005bb26388bec1e13", + "0x00000000000000000000000000000016d15d01c4e568368a015a4a1bd827a3b9", + "0x0000000000000000000000000000000000181038d51220ac7f524520f4dd4e00", + "0x000000000000000000000000000000f69b5e222476cd81abc41a7e1c7dab2bc2", + "0x00000000000000000000000000000000001fb2cec72c2a711d3a7cd9da9ae57b", "0x0000000000000000000000000000000000000000000000000000000000000001", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000002", "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x00000000000000000000000000000017997d3e492bec45f612f97d982c46c38e", - "0x00000000000000000000000000000000002f4603550f4fe66f59d10cc5793d1b", - "0x0000000000000000000000000000005ddd66c738bd971e2fac64ae136ee46dbe", - "0x00000000000000000000000000000000000219c0a5c46a63a853d5333f873086" + "0x0000000000000000000000000000005a7a656146458b2aa2daea0c7503235726", + "0x00000000000000000000000000000000002ca964e842b63733ebc21c63d14545", + "0x00000000000000000000000000000096a8f72cd3a0e0bfdc0596f85aa3f1f02d", + "0x000000000000000000000000000000000004228f8e981bba79c16e40c2e2dd49" ] -hash = "0x003363a96251eef9cc211656d37bbea68959a4114789bb32ca0bdd63bc2b7bab" +hash = "0x1ce265e7e102a08674a09b24fc17204ecaa5b5b828cfd4a910a9f2cd9b049587" [inputs.previous_rollup_data.vk_witness] leaf_index = "0x000000000000000000000000000000000000000000000000000000000000000a" sibling_path = [ - "0x0b743c7580b3fae05da287242fed79656dccdbca3233a9f038ca4b7b366602e7", - "0x2b58b1d43a0b1a291c016dc04b13afd53cc7f19488fe21455842730e38b177cf", - "0x24b4a9d665f01537d4611a15974ddccff6ad92887063ee9f7f1cc9bbbd6afcfd", - "0x04a097c17f5377c94ec09401ec396021e7c9ee13d981ef339a563b76f7be8df8", + "0x22913f84ca022bd27b6bc5f3cc74b963a529b9c890af5938b29d357ae5b5cb46", + "0x21e70fe2469354bfc7514de8bfc82b272cc362046fb9a108e0819db2b1c9457e", + "0x2489113f912b343d6df5fac3449c1833efd317c0abc64a8ed9d59df4130d7fc6", + "0x2f5f0e8285b051021accb7ac271d2a103f043226b5eaf3597a23e6535bd9eb97", "0x0d8e4232c3e1214b1a72ee04016dd919308ecb6b01e871bdcdc36248ab044711", "0x2fd02310a424f73ae3709cf4ff9d507e920407534ba3e965a5542a138b815675" ] diff --git a/noir-projects/noir-protocol-circuits/crates/types/src/constants.nr b/noir-projects/noir-protocol-circuits/crates/types/src/constants.nr index 378969a7ad33..4411ba79ed91 100644 --- a/noir-projects/noir-protocol-circuits/crates/types/src/constants.nr +++ b/noir-projects/noir-protocol-circuits/crates/types/src/constants.nr @@ -133,9 +133,7 @@ pub global PUBLIC_LOG_DATA_SIZE_IN_FIELDS: u32 = 13; pub global PUBLIC_LOG_SIZE_IN_FIELDS: u32 = PUBLIC_LOG_DATA_SIZE_IN_FIELDS + 1; // This includes the contract address, since it is always emitted with a public log pub global PRIVATE_LOG_SIZE_IN_FIELDS: u32 = 18; // This is currently affected by the size of the log overhead defined in aztec-nr/aztec/src/messages/payload.nr. pub global AZTEC_MAX_EPOCH_DURATION: u32 = 48; -// The following genesis values are taken from world_state.test.cpp > WorldStateTest.GetInitialTreeInfoForAllTrees -pub global GENESIS_BLOCK_HASH: Field = - 0x2da55666630fdf8594065c377958c827dc1c130dac91f17c6699b53dce60ef75; +// The genesis value is taken from world_state.test.cpp > WorldStateTest.GetInitialTreeInfoForAllTrees pub global GENESIS_ARCHIVE_ROOT: Field = 0x0237797d6a2c04d20d4fa06b74482bd970ccd51a43d9b05b57e9b91fa1ae1cae; // Last 4 bytes of the Poseidon2 hash of 'public_dispatch(Field)'. @@ -438,8 +436,6 @@ pub global BASE_OR_MERGE_PUBLIC_INPUTS_LENGTH: u32 = CONSTANT_ROLLUP_DATA_LENGTH + 5; pub global BLOCK_ROOT_OR_BLOCK_MERGE_PUBLIC_INPUTS_LENGTH: u32 = 2 * APPEND_ONLY_TREE_SNAPSHOT_LENGTH - + 1 /* previous_block_hash */ - + 1 /* end_block_hash */ + 2 * GLOBAL_VARIABLES_LENGTH + 1 /* out_hash */ + AZTEC_MAX_EPOCH_DURATION * FEE_RECIPIENT_LENGTH @@ -447,9 +443,9 @@ pub global BLOCK_ROOT_OR_BLOCK_MERGE_PUBLIC_INPUTS_LENGTH: u32 = 2 + 1 /* protocol_contract_tree_root */ + 1 /* prover_id */ + AZTEC_MAX_EPOCH_DURATION * BLOB_PUBLIC_INPUTS * BLOBS_PER_BLOCK; -// + 8 for previous_block_hash, end_block_hash, end_timestamp, end_block_number, out_hash, vk_tree_root, protocol_contract_tree_root, prover_id +// + 6 for end_timestamp, end_block_number, out_hash, vk_tree_root, protocol_contract_tree_root, prover_id pub global ROOT_ROLLUP_PUBLIC_INPUTS_LENGTH: u32 = 2 * APPEND_ONLY_TREE_SNAPSHOT_LENGTH - + 8 + + 6 + AZTEC_MAX_EPOCH_DURATION * FEE_RECIPIENT_LENGTH + AZTEC_MAX_EPOCH_DURATION * BLOB_PUBLIC_INPUTS * BLOBS_PER_BLOCK; pub global GET_NOTES_ORACLE_RETURN_LENGTH: u32 = 674; diff --git a/yarn-project/archiver/src/archiver/archiver.test.ts b/yarn-project/archiver/src/archiver/archiver.test.ts index 79a621fa06b3..0447bb87555e 100644 --- a/yarn-project/archiver/src/archiver/archiver.test.ts +++ b/yarn-project/archiver/src/archiver/archiver.test.ts @@ -609,11 +609,10 @@ async function makeRollupTx(l2Block: L2Block) { const header = toHex(l2Block.header.toBuffer()); const blobInput = Blob.getEthBlobEvaluationInputs(await Blob.getBlobs(l2Block.body.toBlobFields())); const archive = toHex(l2Block.archive.root.toBuffer()); - const blockHash = toHex((await l2Block.header.hash()).toBuffer()); const rollupInput = encodeFunctionData({ abi: RollupAbi, functionName: 'propose', - args: [{ header, archive, blockHash, oracleInput: { feeAssetPriceModifier: 0n }, txHashes: [] }, [], blobInput], + args: [{ header, archive, oracleInput: { feeAssetPriceModifier: 0n }, txHashes: [] }, [], blobInput], }); const forwarderInput = encodeFunctionData({ diff --git a/yarn-project/aztec-node/src/sentinel/sentinel.test.ts b/yarn-project/aztec-node/src/sentinel/sentinel.test.ts index 45ea9521e051..3c51e78aa574 100644 --- a/yarn-project/aztec-node/src/sentinel/sentinel.test.ts +++ b/yarn-project/aztec-node/src/sentinel/sentinel.test.ts @@ -79,9 +79,7 @@ describe('sentinel', () => { signers = times(4, Secp256k1Signer.random); validators = signers.map(signer => signer.address); block = await randomPublishedL2Block(Number(slot)); - attestations = await Promise.all( - signers.map(signer => makeBlockAttestation({ signer, archive: block.block.archive.root })), - ); + attestations = signers.map(signer => makeBlockAttestation({ signer, archive: block.block.archive.root })); proposer = validators[0]; committee = [...validators]; diff --git a/yarn-project/aztec-node/src/sentinel/sentinel.ts b/yarn-project/aztec-node/src/sentinel/sentinel.ts index 74f600ef3c4f..c925ad973a19 100644 --- a/yarn-project/aztec-node/src/sentinel/sentinel.ts +++ b/yarn-project/aztec-node/src/sentinel/sentinel.ts @@ -173,7 +173,7 @@ export class Sentinel implements L2BlockStreamEventHandler { // or all attestations for all proposals in the slot if no block was mined. const archive = this.slotNumberToArchive.get(slot); const attested = await this.p2p.getAttestationsForSlot(slot, archive); - const attestors = new Set(await Promise.all(attested.map(a => a.getSender().then(a => a.toString())))); + const attestors = new Set(attested.map(a => a.getSender().toString())); // We assume that there was a block proposal if at least one of the validators attested to it. // It could be the case that every single validator failed, and we could differentiate it by having diff --git a/yarn-project/aztec/src/cli/cmds/start_node.ts b/yarn-project/aztec/src/cli/cmds/start_node.ts index 6e734fecaf89..e46e50bc1934 100644 --- a/yarn-project/aztec/src/cli/cmds/start_node.ts +++ b/yarn-project/aztec/src/cli/cmds/start_node.ts @@ -55,11 +55,8 @@ export async function startNode( userLog(`Initial funded accounts: ${initialFundedAccounts.map(a => a.toString()).join(', ')}`); - const { genesisBlockHash, genesisArchiveRoot, prefilledPublicData, fundingNeeded } = await getGenesisValues( - initialFundedAccounts, - ); + const { genesisArchiveRoot, prefilledPublicData, fundingNeeded } = await getGenesisValues(initialFundedAccounts); - userLog(`Genesis block hash: ${genesisBlockHash.toString()}`); userLog(`Genesis archive root: ${genesisArchiveRoot.toString()}`); // Deploy contracts if needed @@ -76,7 +73,6 @@ export async function startNode( await deployContractsToL1(nodeConfig, account!, undefined, { assumeProvenThroughBlockNumber: nodeSpecificOptions.assumeProvenThroughBlockNumber, salt: nodeSpecificOptions.deployAztecContractsSalt, - genesisBlockHash, genesisArchiveRoot, feeJuicePortalInitialBalance: fundingNeeded, }); diff --git a/yarn-project/aztec/src/cli/cmds/start_prover_node.ts b/yarn-project/aztec/src/cli/cmds/start_prover_node.ts index 3c46e515e3a7..374a5caf73d4 100644 --- a/yarn-project/aztec/src/cli/cmds/start_prover_node.ts +++ b/yarn-project/aztec/src/cli/cmds/start_prover_node.ts @@ -72,9 +72,8 @@ export async function startProverNode( const initialFundedAccounts = testAccounts.concat(sponsoredFPCAccounts); userLog(`Initial funded accounts: ${initialFundedAccounts.map(a => a.toString()).join(', ')}`); - const { genesisArchiveRoot, genesisBlockHash, prefilledPublicData } = await getGenesisValues(initialFundedAccounts); + const { genesisArchiveRoot, prefilledPublicData } = await getGenesisValues(initialFundedAccounts); - userLog(`Genesis block hash: ${genesisBlockHash.toString()}`); userLog(`Genesis archive root: ${genesisArchiveRoot.toString()}`); if (!Fr.fromHexString(config.genesisArchiveTreeRoot).equals(genesisArchiveRoot)) { diff --git a/yarn-project/aztec/src/sandbox/sandbox.ts b/yarn-project/aztec/src/sandbox/sandbox.ts index 4c72ea5f00d7..d6bfa3d3f582 100644 --- a/yarn-project/aztec/src/sandbox/sandbox.ts +++ b/yarn-project/aztec/src/sandbox/sandbox.ts @@ -5,7 +5,7 @@ import { type AztecNodeConfig, AztecNodeService, getConfigEnvVars } from '@aztec import { AnvilTestWatcher, EthCheatCodes } from '@aztec/aztec.js/testing'; import { type BlobSinkClientInterface, createBlobSinkClient } from '@aztec/blob-sink/client'; import { setupSponsoredFPC } from '@aztec/cli/cli-utils'; -import { GENESIS_ARCHIVE_ROOT, GENESIS_BLOCK_HASH } from '@aztec/constants'; +import { GENESIS_ARCHIVE_ROOT } from '@aztec/constants'; import { NULL_KEY, createEthereumChain, @@ -53,7 +53,6 @@ export async function deployContractsToL1( assumeProvenThroughBlockNumber?: number; salt?: number; genesisArchiveRoot?: Fr; - genesisBlockHash?: Fr; feeJuicePortalInitialBalance?: bigint; } = {}, ) { @@ -75,7 +74,6 @@ export async function deployContractsToL1( vkTreeRoot: getVKTreeRoot(), protocolContractTreeRoot, genesisArchiveRoot: opts.genesisArchiveRoot ?? new Fr(GENESIS_ARCHIVE_ROOT), - genesisBlockHash: opts.genesisBlockHash ?? new Fr(GENESIS_BLOCK_HASH), salt: opts.salt, feeJuicePortalInitialBalance: opts.feeJuicePortalInitialBalance, }, @@ -140,16 +138,13 @@ export async function createSandbox(config: Partial = {}, userLog const fundedAddresses = initialAccounts.length ? [...initialAccounts.map(a => a.address), bananaFPC, sponsoredFPC] : []; - const { genesisArchiveRoot, genesisBlockHash, prefilledPublicData, fundingNeeded } = await getGenesisValues( - fundedAddresses, - ); + const { genesisArchiveRoot, prefilledPublicData, fundingNeeded } = await getGenesisValues(fundedAddresses); let watcher: AnvilTestWatcher | undefined = undefined; if (!aztecNodeConfig.p2pEnabled) { const l1ContractAddresses = await deployContractsToL1(aztecNodeConfig, hdAccount, undefined, { assumeProvenThroughBlockNumber: Number.MAX_SAFE_INTEGER, genesisArchiveRoot, - genesisBlockHash, salt: config.l1Salt ? parseInt(config.l1Salt) : undefined, feeJuicePortalInitialBalance: fundingNeeded, }); diff --git a/yarn-project/cli/src/cmds/l1/deploy_l1_contracts.ts b/yarn-project/cli/src/cmds/l1/deploy_l1_contracts.ts index b0206b5586e8..cd93a3efe8ff 100644 --- a/yarn-project/cli/src/cmds/l1/deploy_l1_contracts.ts +++ b/yarn-project/cli/src/cmds/l1/deploy_l1_contracts.ts @@ -27,7 +27,7 @@ export async function deployL1Contracts( const initialAccounts = testAccounts ? await getInitialTestAccounts() : []; const sponsoredFPCAddress = sponsoredFPC ? await getSponsoredFPCAddress() : []; const initialFundedAccounts = initialAccounts.map(a => a.address).concat(sponsoredFPCAddress); - const { genesisBlockHash, genesisArchiveRoot, fundingNeeded } = await getGenesisValues(initialFundedAccounts); + const { genesisArchiveRoot, fundingNeeded } = await getGenesisValues(initialFundedAccounts); const { l1ContractAddresses } = await deployAztecContracts( rpcUrls, @@ -38,7 +38,6 @@ export async function deployL1Contracts( salt, initialValidators, genesisArchiveRoot, - genesisBlockHash, fundingNeeded, acceleratedTestDeployments, config, @@ -70,7 +69,6 @@ export async function deployL1Contracts( log(`StakingAssetHandler Address: ${l1ContractAddresses.stakingAssetHandlerAddress?.toString()}`); log(`Initial funded accounts: ${initialFundedAccounts.map(a => a.toString()).join(', ')}`); log(`Initial validators: ${initialValidators.map(a => a.toString()).join(', ')}`); - log(`Genesis block hash: ${genesisBlockHash.toString()}`); log(`Genesis archive root: ${genesisArchiveRoot.toString()}`); } } diff --git a/yarn-project/cli/src/cmds/l1/deploy_new_rollup.ts b/yarn-project/cli/src/cmds/l1/deploy_new_rollup.ts index b89215dd83f8..f12c52735294 100644 --- a/yarn-project/cli/src/cmds/l1/deploy_new_rollup.ts +++ b/yarn-project/cli/src/cmds/l1/deploy_new_rollup.ts @@ -27,7 +27,7 @@ export async function deployNewRollup( const initialAccounts = testAccounts ? await getInitialTestAccounts() : []; const sponsoredFPCAddress = sponsoredFPC ? await getSponsoredFPCAddress() : []; const initialFundedAccounts = initialAccounts.map(a => a.address).concat(sponsoredFPCAddress); - const { genesisBlockHash, genesisArchiveRoot, fundingNeeded } = await getGenesisValues(initialFundedAccounts); + const { genesisArchiveRoot, fundingNeeded } = await getGenesisValues(initialFundedAccounts); const { rollup, slashFactoryAddress } = await deployNewRollupContracts( registryAddress, @@ -39,7 +39,6 @@ export async function deployNewRollup( salt, initialValidators, genesisArchiveRoot, - genesisBlockHash, fundingNeeded, config, debugLogger, @@ -52,7 +51,6 @@ export async function deployNewRollup( rollupAddress: rollup.address, initialFundedAccounts: initialFundedAccounts.map(a => a.toString()), initialValidators: initialValidators.map(a => a.toString()), - genesisBlockHash: genesisBlockHash.toString(), genesisArchiveRoot: genesisArchiveRoot.toString(), slashFactoryAddress: slashFactoryAddress.toString(), }, @@ -64,7 +62,6 @@ export async function deployNewRollup( log(`Rollup Address: ${rollup.address}`); log(`Initial funded accounts: ${initialFundedAccounts.map(a => a.toString()).join(', ')}`); log(`Initial validators: ${initialValidators.map(a => a.toString()).join(', ')}`); - log(`Genesis block hash: ${genesisBlockHash.toString()}`); log(`Genesis archive root: ${genesisArchiveRoot.toString()}`); log(`Slash Factory Address: ${slashFactoryAddress.toString()}`); } diff --git a/yarn-project/cli/src/utils/aztec.ts b/yarn-project/cli/src/utils/aztec.ts index 32c0b221ab40..4553f6bc7d5f 100644 --- a/yarn-project/cli/src/utils/aztec.ts +++ b/yarn-project/cli/src/utils/aztec.ts @@ -53,7 +53,6 @@ export async function deployAztecContracts( salt: number | undefined, initialValidators: EthAddress[], genesisArchiveRoot: Fr, - genesisBlockHash: Fr, feeJuicePortalInitialBalance: bigint, acceleratedTestDeployments: boolean, config: L1ContractsConfig, @@ -78,7 +77,6 @@ export async function deployAztecContracts( vkTreeRoot: getVKTreeRoot(), protocolContractTreeRoot, genesisArchiveRoot, - genesisBlockHash, salt, initialValidators, acceleratedTestDeployments, @@ -99,7 +97,6 @@ export async function deployNewRollupContracts( salt: number | undefined, initialValidators: EthAddress[], genesisArchiveRoot: Fr, - genesisBlockHash: Fr, feeJuicePortalInitialBalance: bigint, config: L1ContractsConfig, logger: Logger, @@ -128,7 +125,6 @@ export async function deployNewRollupContracts( vkTreeRoot: getVKTreeRoot(), protocolContractTreeRoot, genesisArchiveRoot, - genesisBlockHash, initialValidators, feeJuicePortalInitialBalance, ...config, diff --git a/yarn-project/constants/src/constants.gen.ts b/yarn-project/constants/src/constants.gen.ts index 8a30c72fe831..aee27a60b3da 100644 --- a/yarn-project/constants/src/constants.gen.ts +++ b/yarn-project/constants/src/constants.gen.ts @@ -83,7 +83,6 @@ export const PUBLIC_LOG_DATA_SIZE_IN_FIELDS = 13; export const PUBLIC_LOG_SIZE_IN_FIELDS = 14; export const PRIVATE_LOG_SIZE_IN_FIELDS = 18; export const AZTEC_MAX_EPOCH_DURATION = 48; -export const GENESIS_BLOCK_HASH = 20646204262468251631976884937192820660867507115079672078981654411421834866549n; export const GENESIS_ARCHIVE_ROOT = 1002640778211850180189505934749257244705296832326768971348723156503780793518n; export const PUBLIC_DISPATCH_SELECTOR = 3578010381; export const MAX_PACKED_PUBLIC_BYTECODE_SIZE_IN_FIELDS = 3000; @@ -195,8 +194,8 @@ export const PRIVATE_TO_ROLLUP_KERNEL_CIRCUIT_PUBLIC_INPUTS_LENGTH = 782; export const AVM_CIRCUIT_PUBLIC_INPUTS_LENGTH = 1026; export const CONSTANT_ROLLUP_DATA_LENGTH = 13; export const BASE_OR_MERGE_PUBLIC_INPUTS_LENGTH = 52; -export const BLOCK_ROOT_OR_BLOCK_MERGE_PUBLIC_INPUTS_LENGTH = 986; -export const ROOT_ROLLUP_PUBLIC_INPUTS_LENGTH = 972; +export const BLOCK_ROOT_OR_BLOCK_MERGE_PUBLIC_INPUTS_LENGTH = 984; +export const ROOT_ROLLUP_PUBLIC_INPUTS_LENGTH = 970; export const GET_NOTES_ORACLE_RETURN_LENGTH = 674; export const NOTE_HASHES_NUM_BYTES_PER_BASE_ROLLUP = 2048; export const NULLIFIERS_NUM_BYTES_PER_BASE_ROLLUP = 2048; diff --git a/yarn-project/end-to-end/src/composed/integration_l1_publisher.test.ts b/yarn-project/end-to-end/src/composed/integration_l1_publisher.test.ts index 5c13357f4dd9..b6e3fe26c9f5 100644 --- a/yarn-project/end-to-end/src/composed/integration_l1_publisher.test.ts +++ b/yarn-project/end-to-end/src/composed/integration_l1_publisher.test.ts @@ -302,7 +302,6 @@ describe('L1Publisher integration', () => { // The json formatting in forge is a bit brittle, so we convert Fr to a number in the few values below. // This should not be a problem for testing as long as the values are not larger than u32. archive: `0x${block.archive.root.toBuffer().toString('hex').padStart(64, '0')}`, - blockHash: `0x${(await block.hash()).toBuffer().toString('hex').padStart(64, '0')}`, body: `0x${block.body.toBuffer().toString('hex')}`, decodedHeader: { contentCommitment: { @@ -491,7 +490,6 @@ describe('L1Publisher integration', () => { { header: `0x${block.header.toBuffer().toString('hex')}`, archive: `0x${block.archive.root.toBuffer().toString('hex')}`, - blockHash: `0x${(await block.header.hash()).toBuffer().toString('hex')}`, oracleInput: { feeAssetPriceModifier: 0n, }, @@ -612,7 +610,6 @@ describe('L1Publisher integration', () => { ), undefined, expect.objectContaining({ - blockHash: expect.any(Fr), blockNumber: expect.any(Number), slotNumber: expect.any(BigInt), txHash: expect.any(String), diff --git a/yarn-project/end-to-end/src/e2e_p2p/gossip_network.test.ts b/yarn-project/end-to-end/src/e2e_p2p/gossip_network.test.ts index 7c64c73402a2..b4436711e9df 100644 --- a/yarn-project/end-to-end/src/e2e_p2p/gossip_network.test.ts +++ b/yarn-project/end-to-end/src/e2e_p2p/gossip_network.test.ts @@ -126,7 +126,7 @@ describe('e2e_p2p_network', () => { const [block] = await dataStore.getBlocks(blockNumber, blockNumber); const payload = ConsensusPayload.fromBlock(block.block); const attestations = block.signatures.filter(s => !s.isEmpty).map(sig => new BlockAttestation(payload, sig)); - const signers = await Promise.all(attestations.map(att => att.getSender().then(s => s.toString()))); + const signers = attestations.map(att => att.getSender().toString()); t.logger.info(`Attestation signers`, { signers }); // Check that the signers found are part of the proposer nodes to ensure the archiver fetched them right diff --git a/yarn-project/end-to-end/src/e2e_p2p/gossip_network_no_cheat.test.ts b/yarn-project/end-to-end/src/e2e_p2p/gossip_network_no_cheat.test.ts index 853258c1e0a6..365468b91286 100644 --- a/yarn-project/end-to-end/src/e2e_p2p/gossip_network_no_cheat.test.ts +++ b/yarn-project/end-to-end/src/e2e_p2p/gossip_network_no_cheat.test.ts @@ -205,7 +205,7 @@ describe('e2e_p2p_network', () => { const [block] = await dataStore.getBlocks(blockNumber, blockNumber); const payload = ConsensusPayload.fromBlock(block.block); const attestations = block.signatures.filter(s => !s.isEmpty).map(sig => new BlockAttestation(payload, sig)); - const signers = await Promise.all(attestations.map(att => att.getSender().then(s => s.toString()))); + const signers = attestations.map(att => att.getSender().toString()); t.logger.info(`Attestation signers`, { signers }); // Check that the signers found are part of the proposer nodes to ensure the archiver fetched them right diff --git a/yarn-project/end-to-end/src/e2e_p2p/reex.test.ts b/yarn-project/end-to-end/src/e2e_p2p/reex.test.ts index 00c4407b6024..bf84a619b68c 100644 --- a/yarn-project/end-to-end/src/e2e_p2p/reex.test.ts +++ b/yarn-project/end-to-end/src/e2e_p2p/reex.test.ts @@ -131,9 +131,7 @@ describe('e2e_p2p_reex', () => { const signer = (node as any).sequencer.sequencer.validatorClient.validationService.keyStore; const newProposal = new BlockProposal( proposal.payload, - await signer.signMessage( - await getHashedSignaturePayload(proposal.payload, SignatureDomainSeparator.blockProposal), - ), + await signer.signMessage(getHashedSignaturePayload(proposal.payload, SignatureDomainSeparator.blockProposal)), ); return (node as any).p2pClient.p2pService.propagate(newProposal); diff --git a/yarn-project/end-to-end/src/fixtures/setup_l1_contracts.ts b/yarn-project/end-to-end/src/fixtures/setup_l1_contracts.ts index 50940e78a1e0..1df064193cb8 100644 --- a/yarn-project/end-to-end/src/fixtures/setup_l1_contracts.ts +++ b/yarn-project/end-to-end/src/fixtures/setup_l1_contracts.ts @@ -12,8 +12,7 @@ export const setupL1Contracts = async ( l1RpcUrl: string, account: HDAccount | PrivateKeyAccount, logger: Logger, - args: Pick & - L1ContractsConfig, + args: Pick & L1ContractsConfig, ) => { const l1Data = await deployL1Contracts([l1RpcUrl], account, foundry, logger, { vkTreeRoot: getVKTreeRoot(), diff --git a/yarn-project/end-to-end/src/fixtures/snapshot_manager.ts b/yarn-project/end-to-end/src/fixtures/snapshot_manager.ts index b82a314636b8..56764d1afe3e 100644 --- a/yarn-project/end-to-end/src/fixtures/snapshot_manager.ts +++ b/yarn-project/end-to-end/src/fixtures/snapshot_manager.ts @@ -348,7 +348,7 @@ async function setupFromFresh( const initialFundedAccounts = await generateSchnorrAccounts(numberOfInitialFundedAccounts); const sponsoredFPCAddress = await getSponsoredFPCAddress(); - const { genesisArchiveRoot, genesisBlockHash, prefilledPublicData, fundingNeeded } = await getGenesisValues( + const { genesisArchiveRoot, prefilledPublicData, fundingNeeded } = await getGenesisValues( initialFundedAccounts.map(a => a.address).concat(sponsoredFPCAddress), opts.initialAccountFeeJuice, ); @@ -356,7 +356,6 @@ async function setupFromFresh( const deployL1ContractsValues = await setupL1Contracts(aztecNodeConfig.l1RpcUrls[0], hdAccount, logger, { ...getL1ContractsConfigEnvVars(), genesisArchiveRoot, - genesisBlockHash, feeJuicePortalInitialBalance: fundingNeeded, salt: opts.salt, ...deployL1ContractsArgs, diff --git a/yarn-project/end-to-end/src/fixtures/utils.ts b/yarn-project/end-to-end/src/fixtures/utils.ts index fd13d82f9a49..25db9a416618 100644 --- a/yarn-project/end-to-end/src/fixtures/utils.ts +++ b/yarn-project/end-to-end/src/fixtures/utils.ts @@ -29,7 +29,7 @@ import { SponsoredFeePaymentMethod } from '@aztec/aztec.js/fee/testing'; import { AnvilTestWatcher, CheatCodes } from '@aztec/aztec.js/testing'; import { createBlobSinkClient } from '@aztec/blob-sink/client'; import { type BlobSinkServer, createBlobSinkServer } from '@aztec/blob-sink/server'; -import { GENESIS_ARCHIVE_ROOT, GENESIS_BLOCK_HASH, SPONSORED_FPC_SALT } from '@aztec/constants'; +import { GENESIS_ARCHIVE_ROOT, SPONSORED_FPC_SALT } from '@aztec/constants'; import { DefaultMultiCallEntrypoint } from '@aztec/entrypoints/multicall'; import { type DeployL1ContractsArgs, @@ -125,7 +125,6 @@ export const setupL1Contracts = async ( vkTreeRoot: getVKTreeRoot(), protocolContractTreeRoot, genesisArchiveRoot: args.genesisArchiveRoot ?? new Fr(GENESIS_ARCHIVE_ROOT), - genesisBlockHash: args.genesisBlockHash ?? new Fr(GENESIS_BLOCK_HASH), salt: args.salt, initialValidators: args.initialValidators, ...getL1ContractsConfigEnvVars(), @@ -425,7 +424,7 @@ export async function setup( const initialFundedAccounts = opts.initialFundedAccounts ?? (await generateSchnorrAccounts(opts.numberOfInitialFundedAccounts ?? numberOfAccounts)); - const { genesisBlockHash, genesisArchiveRoot, prefilledPublicData, fundingNeeded } = await getGenesisValues( + const { genesisArchiveRoot, prefilledPublicData, fundingNeeded } = await getGenesisValues( initialFundedAccounts.map(a => a.address), opts.initialAccountFeeJuice, opts.genesisPublicData, @@ -437,7 +436,7 @@ export async function setup( config.l1RpcUrls, publisherHdAccount!, logger, - { ...opts, genesisArchiveRoot, genesisBlockHash, feeJuicePortalInitialBalance: fundingNeeded }, + { ...opts, genesisArchiveRoot, feeJuicePortalInitialBalance: fundingNeeded }, chain, )); diff --git a/yarn-project/end-to-end/src/spartan/upgrade_rollup_version.test.ts b/yarn-project/end-to-end/src/spartan/upgrade_rollup_version.test.ts index 7d1d6a11a891..1b372c18e05b 100644 --- a/yarn-project/end-to-end/src/spartan/upgrade_rollup_version.test.ts +++ b/yarn-project/end-to-end/src/spartan/upgrade_rollup_version.test.ts @@ -82,9 +82,7 @@ describe('spartan_upgrade_rollup_version', () => { debugLogger.info(`l1WalletClient: ${l1WalletClient.account.address}`); const initialTestAccounts = await getInitialTestAccounts(); - const { genesisBlockHash, genesisArchiveRoot, fundingNeeded } = await getGenesisValues( - initialTestAccounts.map(a => a.address), - ); + const { genesisArchiveRoot, fundingNeeded } = await getGenesisValues(initialTestAccounts.map(a => a.address)); const rollup = new RollupContract(l1PublicClient, originalL1ContractAddresses.rollupAddress.toString()); const { rollup: newRollup } = await deployRollupForUpgrade( @@ -97,7 +95,6 @@ describe('spartan_upgrade_rollup_version', () => { vkTreeRoot: getVKTreeRoot(), protocolContractTreeRoot, genesisArchiveRoot, - genesisBlockHash, ethereumSlotDuration: 12, aztecSlotDuration: 24, aztecEpochDuration: 4, diff --git a/yarn-project/ethereum/src/contracts/fee_asset_handler.test.ts b/yarn-project/ethereum/src/contracts/fee_asset_handler.test.ts index 6438f8e7d4a6..1b37ecc70696 100644 --- a/yarn-project/ethereum/src/contracts/fee_asset_handler.test.ts +++ b/yarn-project/ethereum/src/contracts/fee_asset_handler.test.ts @@ -44,7 +44,6 @@ describe('FeeAssetHandler', () => { vkTreeRoot, protocolContractTreeRoot, genesisArchiveRoot: Fr.random(), - genesisBlockHash: Fr.random(), }); // Since the registry cannot "see" the slash factory, we omit it from the addresses for this test const deployedAddresses = omit(deployed.l1ContractAddresses, 'slashFactoryAddress'); diff --git a/yarn-project/ethereum/src/contracts/forwarder.test.ts b/yarn-project/ethereum/src/contracts/forwarder.test.ts index b79c9329cbec..fb9802151b2b 100644 --- a/yarn-project/ethereum/src/contracts/forwarder.test.ts +++ b/yarn-project/ethereum/src/contracts/forwarder.test.ts @@ -50,7 +50,6 @@ describe('Forwarder', () => { vkTreeRoot, protocolContractTreeRoot, genesisArchiveRoot: Fr.random(), - genesisBlockHash: Fr.random(), }); govProposerAddress = deployed.l1ContractAddresses.governanceProposerAddress; diff --git a/yarn-project/ethereum/src/contracts/governance.test.ts b/yarn-project/ethereum/src/contracts/governance.test.ts index 06af662861be..83731b2330d6 100644 --- a/yarn-project/ethereum/src/contracts/governance.test.ts +++ b/yarn-project/ethereum/src/contracts/governance.test.ts @@ -39,7 +39,6 @@ describe('Governance', () => { vkTreeRoot, protocolContractTreeRoot, genesisArchiveRoot: Fr.random(), - genesisBlockHash: Fr.random(), }); governance = new GovernanceContract( diff --git a/yarn-project/ethereum/src/contracts/registry.test.ts b/yarn-project/ethereum/src/contracts/registry.test.ts index 70d5a30e115a..fb37f4ebe8aa 100644 --- a/yarn-project/ethereum/src/contracts/registry.test.ts +++ b/yarn-project/ethereum/src/contracts/registry.test.ts @@ -48,7 +48,6 @@ describe('Registry', () => { vkTreeRoot, protocolContractTreeRoot, genesisArchiveRoot: Fr.random(), - genesisBlockHash: Fr.random(), }); // Since the registry cannot "see" the slash factory, we omit it from the addresses for this test deployedAddresses = omit( @@ -131,7 +130,6 @@ describe('Registry', () => { vkTreeRoot, protocolContractTreeRoot, genesisArchiveRoot: Fr.random(), - genesisBlockHash: Fr.random(), }, deployedAddresses, logger, diff --git a/yarn-project/ethereum/src/contracts/rollup.ts b/yarn-project/ethereum/src/contracts/rollup.ts index 21f248fe9bf6..71bfde69fbe4 100644 --- a/yarn-project/ethereum/src/contracts/rollup.ts +++ b/yarn-project/ethereum/src/contracts/rollup.ts @@ -30,8 +30,6 @@ export type L1RollupContractAddresses = Pick< export type EpochProofPublicInputArgs = { previousArchive: `0x${string}`; endArchive: `0x${string}`; - previousBlockHash: `0x${string}`; - endBlockHash: `0x${string}`; endTimestamp: bigint; outHash: `0x${string}`; proverId: `0x${string}`; diff --git a/yarn-project/ethereum/src/deploy_l1_contracts.test.ts b/yarn-project/ethereum/src/deploy_l1_contracts.test.ts index 738a3768d62f..51d1385457c3 100644 --- a/yarn-project/ethereum/src/deploy_l1_contracts.test.ts +++ b/yarn-project/ethereum/src/deploy_l1_contracts.test.ts @@ -18,7 +18,6 @@ describe('deploy_l1_contracts', () => { let vkTreeRoot: Fr; let protocolContractTreeRoot: Fr; let genesisArchiveRoot: Fr; - let genesisBlockHash: Fr; let initialValidators: EthAddress[]; // Use these environment variables to run against a live node. Eg to test against spartan's eth-devnet: @@ -34,7 +33,6 @@ describe('deploy_l1_contracts', () => { vkTreeRoot = Fr.random(); protocolContractTreeRoot = Fr.random(); genesisArchiveRoot = Fr.random(); - genesisBlockHash = Fr.random(); initialValidators = times(3, EthAddress.random); if (!rpcUrl) { @@ -59,7 +57,6 @@ describe('deploy_l1_contracts', () => { vkTreeRoot, protocolContractTreeRoot, genesisArchiveRoot, - genesisBlockHash, l1TxConfig: { checkIntervalMs: 100 }, ...args, }); diff --git a/yarn-project/ethereum/src/deploy_l1_contracts.ts b/yarn-project/ethereum/src/deploy_l1_contracts.ts index e27ba52b7430..6537cd5c247f 100644 --- a/yarn-project/ethereum/src/deploy_l1_contracts.ts +++ b/yarn-project/ethereum/src/deploy_l1_contracts.ts @@ -209,8 +209,6 @@ export interface DeployL1ContractsArgs extends L1ContractsConfig { protocolContractTreeRoot: Fr; /** The genesis root of the archive tree. */ genesisArchiveRoot: Fr; - /** The hash of the genesis block header. */ - genesisBlockHash: Fr; /** The salt for CREATE2 deployment. */ salt: number | undefined; /** The initial validators for the rollup contract. */ @@ -543,7 +541,6 @@ export const deployRollup = async ( vkTreeRoot: args.vkTreeRoot.toString(), protocolContractTreeRoot: args.protocolContractTreeRoot.toString(), genesisArchiveRoot: args.genesisArchiveRoot.toString(), - genesisBlockHash: args.genesisBlockHash.toString(), }; logger.verbose(`Rollup config args`, rollupConfigArgs); const rollupArgs = [ diff --git a/yarn-project/noir-protocol-circuits-types/src/conversion/server.ts b/yarn-project/noir-protocol-circuits-types/src/conversion/server.ts index f2b55fb59297..29f283b6ae86 100644 --- a/yarn-project/noir-protocol-circuits-types/src/conversion/server.ts +++ b/yarn-project/noir-protocol-circuits-types/src/conversion/server.ts @@ -382,8 +382,6 @@ export function mapBlockRootOrBlockMergePublicInputsToNoir( return { previous_archive: mapAppendOnlyTreeSnapshotToNoir(blockRootOrBlockMergePublicInputs.previousArchive), new_archive: mapAppendOnlyTreeSnapshotToNoir(blockRootOrBlockMergePublicInputs.newArchive), - previous_block_hash: mapFieldToNoir(blockRootOrBlockMergePublicInputs.previousBlockHash), - end_block_hash: mapFieldToNoir(blockRootOrBlockMergePublicInputs.endBlockHash), start_global_variables: mapGlobalVariablesToNoir(blockRootOrBlockMergePublicInputs.startGlobalVariables), end_global_variables: mapGlobalVariablesToNoir(blockRootOrBlockMergePublicInputs.endGlobalVariables), out_hash: mapFieldToNoir(blockRootOrBlockMergePublicInputs.outHash), @@ -431,8 +429,6 @@ export function mapRootRollupPublicInputsFromNoir( return new RootRollupPublicInputs( mapAppendOnlyTreeSnapshotFromNoir(rootRollupPublicInputs.previous_archive), mapAppendOnlyTreeSnapshotFromNoir(rootRollupPublicInputs.end_archive), - mapFieldFromNoir(rootRollupPublicInputs.previous_block_hash), - mapFieldFromNoir(rootRollupPublicInputs.end_block_hash), mapFieldFromNoir(rootRollupPublicInputs.end_timestamp), mapFieldFromNoir(rootRollupPublicInputs.end_block_number), mapFieldFromNoir(rootRollupPublicInputs.out_hash), @@ -596,8 +592,6 @@ export function mapBlockRootOrBlockMergePublicInputsFromNoir( return new BlockRootOrBlockMergePublicInputs( mapAppendOnlyTreeSnapshotFromNoir(blockRootOrBlockMergePublicInputs.previous_archive), mapAppendOnlyTreeSnapshotFromNoir(blockRootOrBlockMergePublicInputs.new_archive), - mapFieldFromNoir(blockRootOrBlockMergePublicInputs.previous_block_hash), - mapFieldFromNoir(blockRootOrBlockMergePublicInputs.end_block_hash), mapGlobalVariablesFromNoir(blockRootOrBlockMergePublicInputs.start_global_variables), mapGlobalVariablesFromNoir(blockRootOrBlockMergePublicInputs.end_global_variables), mapFieldFromNoir(blockRootOrBlockMergePublicInputs.out_hash), @@ -668,6 +662,7 @@ function mapBlockRootRollupDataToNoir(data: BlockRootRollupData): BlockRootRollu return { l1_to_l2_roots: mapRootRollupParityInputToNoir(data.l1ToL2Roots), l1_to_l2_message_subtree_sibling_path: mapTuple(data.l1ToL2MessageSubtreeSiblingPath, mapFieldToNoir), + previous_archive_sibling_path: mapTuple(data.previousArchiveSiblingPath, mapFieldToNoir), new_archive_sibling_path: mapTuple(data.newArchiveSiblingPath, mapFieldToNoir), previous_block_header: mapHeaderToNoir(data.previousBlockHeader), prover_id: mapFieldToNoir(data.proverId), diff --git a/yarn-project/p2p/src/client/p2p_client.integration.test.ts b/yarn-project/p2p/src/client/p2p_client.integration.test.ts index 643eb432e95f..9490b7406a1c 100644 --- a/yarn-project/p2p/src/client/p2p_client.integration.test.ts +++ b/yarn-project/p2p/src/client/p2p_client.integration.test.ts @@ -325,11 +325,11 @@ describe('p2p client integration', () => { archive: Fr.random(), txHashes: [TxHash.random()], }; - const blockProposal = await makeBlockProposal(dummyPayload); + const blockProposal = makeBlockProposal(dummyPayload); client1.client.broadcastProposal(blockProposal); // client 1 sends an attestation - const attestation = await mockAttestation( + const attestation = mockAttestation( Secp256k1Signer.random(), Number(dummyPayload.header!.getSlot()), dummyPayload.archive, @@ -427,11 +427,11 @@ describe('p2p client integration', () => { archive: Fr.random(), txHashes: [TxHash.random()], }; - const blockProposal = await makeBlockProposal(dummyPayload); + const blockProposal = makeBlockProposal(dummyPayload); client1.client.broadcastProposal(blockProposal); // client 1 sends an attestation - const attestation = await mockAttestation( + const attestation = mockAttestation( Secp256k1Signer.random(), Number(dummyPayload.header!.getSlot()), dummyPayload.archive, diff --git a/yarn-project/p2p/src/mem_pools/attestation_pool/attestation_pool_test_suite.ts b/yarn-project/p2p/src/mem_pools/attestation_pool/attestation_pool_test_suite.ts index 88f55b3aa569..a7296eed81bf 100644 --- a/yarn-project/p2p/src/mem_pools/attestation_pool/attestation_pool_test_suite.ts +++ b/yarn-project/p2p/src/mem_pools/attestation_pool/attestation_pool_test_suite.ts @@ -30,7 +30,7 @@ export function describeAttestationPool(getAttestationPool: () => AttestationPoo const createAttestationsForSlot = (slotNumber: number) => { const archive = Fr.random(); - return Promise.all(signers.map(signer => mockAttestation(signer, slotNumber, archive))); + return signers.map(signer => mockAttestation(signer, slotNumber, archive)); }; // We compare buffers as the objects can have cached values attached to them which are not serialised @@ -45,9 +45,7 @@ export function describeAttestationPool(getAttestationPool: () => AttestationPoo it('should add attestations to pool', async () => { const slotNumber = 420; const archive = Fr.random(); - const attestations = await Promise.all( - signers.slice(0, -1).map(signer => mockAttestation(signer, slotNumber, archive)), - ); + const attestations = signers.slice(0, -1).map(signer => mockAttestation(signer, slotNumber, archive)); await ap.addAttestations(attestations); @@ -63,7 +61,7 @@ export function describeAttestationPool(getAttestationPool: () => AttestationPoo compareAttestations(retrievedAttestationsForSlot, attestations); // Add another one - const newAttestation = await mockAttestation(signers[NUMBER_OF_SIGNERS_PER_TEST - 1], slotNumber, archive); + const newAttestation = mockAttestation(signers[NUMBER_OF_SIGNERS_PER_TEST - 1], slotNumber, archive); await ap.addAttestations([newAttestation]); expect(metricsMock.recordAddedObjects).toHaveBeenCalledWith(1); const retrievedAttestationsAfterAdd = await ap.getAttestationsForSlotAndProposal( @@ -96,7 +94,7 @@ export function describeAttestationPool(getAttestationPool: () => AttestationPoo const attestations: BlockAttestation[] = []; const signer = signers[0]; for (let i = 0; i < NUMBER_OF_SIGNERS_PER_TEST; i++) { - attestations.push(await mockAttestation(signer, slotNumber, archive, txs)); + attestations.push(mockAttestation(signer, slotNumber, archive, txs)); } // Add them to store and check we end up with only one @@ -106,7 +104,7 @@ export function describeAttestationPool(getAttestationPool: () => AttestationPoo expect(retreivedAttestations.length).toBe(1); expect(retreivedAttestations[0].toBuffer()).toEqual(attestations[0].toBuffer()); expect(retreivedAttestations[0].payload.txHashes).toEqual(txs); - expect((await retreivedAttestations[0].getSender()).toString()).toEqual(signer.address.toString()); + expect(retreivedAttestations[0].getSender().toString()).toEqual(signer.address.toString()); // Try adding them on another operation and check they are still not duplicated await ap.addAttestations([attestations[0]]); @@ -115,7 +113,7 @@ export function describeAttestationPool(getAttestationPool: () => AttestationPoo it('should store attestations by differing slot', async () => { const slotNumbers = [1, 2, 3, 4]; - const attestations = await Promise.all(signers.map((signer, i) => mockAttestation(signer, slotNumbers[i]))); + const attestations = signers.map((signer, i) => mockAttestation(signer, slotNumbers[i])); await ap.addAttestations(attestations); @@ -133,9 +131,7 @@ export function describeAttestationPool(getAttestationPool: () => AttestationPoo it('should store attestations by differing slot and archive', async () => { const slotNumbers = [1, 1, 2, 3]; const archives = [Fr.random(), Fr.random(), Fr.random(), Fr.random()]; - const attestations = await Promise.all( - signers.map((signer, i) => mockAttestation(signer, slotNumbers[i], archives[i])), - ); + const attestations = signers.map((signer, i) => mockAttestation(signer, slotNumbers[i], archives[i])); await ap.addAttestations(attestations); @@ -153,7 +149,7 @@ export function describeAttestationPool(getAttestationPool: () => AttestationPoo it('should delete attestations', async () => { const slotNumber = 420; const archive = Fr.random(); - const attestations = await Promise.all(signers.map(signer => mockAttestation(signer, slotNumber, archive))); + const attestations = signers.map(signer => mockAttestation(signer, slotNumber, archive)); const proposalId = attestations[0].archive.toString(); await ap.addAttestations(attestations); @@ -175,7 +171,7 @@ export function describeAttestationPool(getAttestationPool: () => AttestationPoo it('should blanket delete attestations per slot', async () => { const slotNumber = 420; const archive = Fr.random(); - const attestations = await Promise.all(signers.map(signer => mockAttestation(signer, slotNumber, archive))); + const attestations = signers.map(signer => mockAttestation(signer, slotNumber, archive)); const proposalId = attestations[0].archive.toString(); await ap.addAttestations(attestations); @@ -193,12 +189,12 @@ export function describeAttestationPool(getAttestationPool: () => AttestationPoo it('should blanket delete attestations per slot and proposal', async () => { const slotNumber = 420; const archive = Fr.random(); - const attestations = await Promise.all(signers.map(signer => mockAttestation(signer, slotNumber, archive))); + const attestations = signers.map(signer => mockAttestation(signer, slotNumber, archive)); const proposalId = attestations[0].archive.toString(); // Add another set of attestations with a different proposalId, yet the same slot const archive2 = Fr.random(); - const attestations2 = await Promise.all(signers.map(signer => mockAttestation(signer, slotNumber, archive2))); + const attestations2 = signers.map(signer => mockAttestation(signer, slotNumber, archive2)); const proposalId2 = attestations2[0].archive.toString(); await ap.addAttestations(attestations); diff --git a/yarn-project/p2p/src/mem_pools/attestation_pool/kv_attestation_pool.ts b/yarn-project/p2p/src/mem_pools/attestation_pool/kv_attestation_pool.ts index 6ef0ef3ca563..b9297206f3d4 100644 --- a/yarn-project/p2p/src/mem_pools/attestation_pool/kv_attestation_pool.ts +++ b/yarn-project/p2p/src/mem_pools/attestation_pool/kv_attestation_pool.ts @@ -48,7 +48,7 @@ export class KvAttestationPool implements AttestationPool { for (const attestation of attestations) { const slotNumber = attestation.payload.header.globalVariables.slotNumber; const proposalId = attestation.archive; - const address = (await attestation.getSender()).toString(); + const address = attestation.getSender().toString(); await this.attestations.set(this.getAttestationKey(slotNumber, proposalId, address), attestation.toBuffer()); @@ -160,7 +160,7 @@ export class KvAttestationPool implements AttestationPool { for (const attestation of attestations) { const slotNumber = attestation.payload.header.globalVariables.slotNumber; const proposalId = attestation.archive; - const address = (await attestation.getSender()).toString(); + const address = attestation.getSender().toString(); await this.attestations.delete(this.getAttestationKey(slotNumber, proposalId, address)); await this.attestationsForProposal.deleteValue( diff --git a/yarn-project/p2p/src/mem_pools/attestation_pool/memory_attestation_pool.ts b/yarn-project/p2p/src/mem_pools/attestation_pool/memory_attestation_pool.ts index bc21adf94e4f..426476cc7587 100644 --- a/yarn-project/p2p/src/mem_pools/attestation_pool/memory_attestation_pool.ts +++ b/yarn-project/p2p/src/mem_pools/attestation_pool/memory_attestation_pool.ts @@ -34,13 +34,13 @@ export class InMemoryAttestationPool implements AttestationPool { return Promise.resolve([]); } - public async addAttestations(attestations: BlockAttestation[]): Promise { + public addAttestations(attestations: BlockAttestation[]): Promise { for (const attestation of attestations) { // Perf: order and group by slot before insertion const slotNumber = attestation.payload.header.globalVariables.slotNumber; const proposalId = attestation.archive.toString(); - const address = await attestation.getSender(); + const address = attestation.getSender(); const slotAttestationMap = getSlotOrDefault(this.attestations, slotNumber.toBigInt()); const proposalAttestationMap = getProposalOrDefault(slotAttestationMap, proposalId); @@ -118,7 +118,7 @@ export class InMemoryAttestationPool implements AttestationPool { return Promise.resolve(); } - public async deleteAttestations(attestations: BlockAttestation[]): Promise { + public deleteAttestations(attestations: BlockAttestation[]): Promise { for (const attestation of attestations) { const slotNumber = attestation.payload.header.globalVariables.slotNumber; const slotAttestationMap = this.attestations.get(slotNumber.toBigInt()); @@ -126,7 +126,7 @@ export class InMemoryAttestationPool implements AttestationPool { const proposalId = attestation.archive.toString(); const proposalAttestationMap = getProposalOrDefault(slotAttestationMap, proposalId); if (proposalAttestationMap) { - const address = await attestation.getSender(); + const address = attestation.getSender(); proposalAttestationMap.delete(address.toString()); this.log.debug(`Deleted attestation for slot ${slotNumber} from ${address}`); } diff --git a/yarn-project/p2p/src/mem_pools/attestation_pool/mocks.ts b/yarn-project/p2p/src/mem_pools/attestation_pool/mocks.ts index 37176f8033ed..333ed833b701 100644 --- a/yarn-project/p2p/src/mem_pools/attestation_pool/mocks.ts +++ b/yarn-project/p2p/src/mem_pools/attestation_pool/mocks.ts @@ -27,17 +27,17 @@ export const generateAccount = (): LocalAccount => { * @param slot The slot number the attestation is for * @returns A Block Attestation */ -export const mockAttestation = async ( +export const mockAttestation = ( signer: Secp256k1Signer, slot: number = 0, archive: Fr = Fr.random(), txs: TxHash[] = [0, 1, 2, 3, 4, 5].map(() => TxHash.random()), -): Promise => { +): BlockAttestation => { // Use arbitrary numbers for all other than slot const header = makeHeader(1, 2, slot); const payload = new ConsensusPayload(header, archive, txs); - const hash = await getHashedSignaturePayloadEthSignedMessage(payload, SignatureDomainSeparator.blockAttestation); + const hash = getHashedSignaturePayloadEthSignedMessage(payload, SignatureDomainSeparator.blockAttestation); const signature = signer.sign(hash); return new BlockAttestation(payload, signature); diff --git a/yarn-project/p2p/src/msg_validators/attestation_validator/attestation_validator.test.ts b/yarn-project/p2p/src/msg_validators/attestation_validator/attestation_validator.test.ts index a890781fec3a..de7f35331f81 100644 --- a/yarn-project/p2p/src/msg_validators/attestation_validator/attestation_validator.test.ts +++ b/yarn-project/p2p/src/msg_validators/attestation_validator/attestation_validator.test.ts @@ -18,7 +18,7 @@ describe('AttestationValidator', () => { it('returns high tolerance error if slot number is not current or next slot', async () => { // Create an attestation for slot 97 const header = makeHeader(1, 97, 97); - const mockAttestation = await makeBlockAttestation({ + const mockAttestation = makeBlockAttestation({ header, }); @@ -35,7 +35,7 @@ describe('AttestationValidator', () => { it('returns high tolerance error if attester is not in committee', async () => { // The slot is correct, but the attester is not in the committee - const mockAttestation = await makeBlockAttestation({ + const mockAttestation = makeBlockAttestation({ header: makeHeader(1, 100, 100), }); @@ -52,7 +52,7 @@ describe('AttestationValidator', () => { it('returns undefined if attestation is valid (current slot)', async () => { // Create an attestation for slot 100 - const mockAttestation = await makeBlockAttestation({ + const mockAttestation = makeBlockAttestation({ header: makeHeader(1, 100, 100), }); @@ -69,7 +69,7 @@ describe('AttestationValidator', () => { it('returns undefined if attestation is valid (next slot)', async () => { // Setup attestation for next slot - const mockAttestation = await makeBlockAttestation({ + const mockAttestation = makeBlockAttestation({ header: makeHeader(1, 101, 101), }); diff --git a/yarn-project/p2p/src/msg_validators/attestation_validator/attestation_validator.ts b/yarn-project/p2p/src/msg_validators/attestation_validator/attestation_validator.ts index 3b3c27bcfc51..f8b3b3acd597 100644 --- a/yarn-project/p2p/src/msg_validators/attestation_validator/attestation_validator.ts +++ b/yarn-project/p2p/src/msg_validators/attestation_validator/attestation_validator.ts @@ -16,7 +16,7 @@ export class AttestationValidator implements P2PValidator { return PeerErrorSeverity.HighToleranceError; } - const attester = await message.getSender(); + const attester = message.getSender(); if (!(await this.epochCache.isInCommittee(attester))) { return PeerErrorSeverity.HighToleranceError; } diff --git a/yarn-project/p2p/src/msg_validators/block_proposal_validator/block_proposal_validator.test.ts b/yarn-project/p2p/src/msg_validators/block_proposal_validator/block_proposal_validator.test.ts index e8d46b33dfeb..cb36264be639 100644 --- a/yarn-project/p2p/src/msg_validators/block_proposal_validator/block_proposal_validator.test.ts +++ b/yarn-project/p2p/src/msg_validators/block_proposal_validator/block_proposal_validator.test.ts @@ -19,7 +19,7 @@ describe('BlockProposalValidator', () => { it('returns high tolerance error if slot number is not current or next slot', async () => { // Create a block proposal for slot 97 - const mockProposal = await makeBlockProposal({ + const mockProposal = makeBlockProposal({ header: makeHeader(1, 97, 97), }); @@ -41,7 +41,7 @@ describe('BlockProposalValidator', () => { const invalidProposer = Secp256k1Signer.random(); // Create a block proposal with correct slot but wrong proposer - const mockProposal = await makeBlockProposal({ + const mockProposal = makeBlockProposal({ header: makeHeader(1, 100, 100), signer: invalidProposer, }); @@ -63,7 +63,7 @@ describe('BlockProposalValidator', () => { const nextProposer = Secp256k1Signer.random(); // Create a block proposal for current slot with correct proposer - const mockProposal = await makeBlockProposal({ + const mockProposal = makeBlockProposal({ header: makeHeader(1, 100, 100), signer: currentProposer, }); @@ -85,7 +85,7 @@ describe('BlockProposalValidator', () => { const nextProposer = Secp256k1Signer.random(); // Create a block proposal for next slot with correct proposer - const mockProposal = await makeBlockProposal({ + const mockProposal = makeBlockProposal({ header: makeHeader(1, 101, 101), signer: nextProposer, }); diff --git a/yarn-project/p2p/src/msg_validators/block_proposal_validator/block_proposal_validator.ts b/yarn-project/p2p/src/msg_validators/block_proposal_validator/block_proposal_validator.ts index 11174dd89a28..35c9100ea81d 100644 --- a/yarn-project/p2p/src/msg_validators/block_proposal_validator/block_proposal_validator.ts +++ b/yarn-project/p2p/src/msg_validators/block_proposal_validator/block_proposal_validator.ts @@ -19,7 +19,7 @@ export class BlockProposalValidator implements P2PValidator { } // Check that the block proposal is from the current or next proposer - const proposer = await block.getSender(); + const proposer = block.getSender(); if (!proposer.equals(currentProposer) && !proposer.equals(nextProposer)) { return PeerErrorSeverity.HighToleranceError; } diff --git a/yarn-project/prover-client/src/block_builder/light.test.ts b/yarn-project/prover-client/src/block_builder/light.test.ts index 950363b374dd..05ca11b60ad2 100644 --- a/yarn-project/prover-client/src/block_builder/light.test.ts +++ b/yarn-project/prover-client/src/block_builder/light.test.ts @@ -15,7 +15,6 @@ import { import { padArrayEnd, times, timesParallel } from '@aztec/foundation/collection'; import { sha256ToField } from '@aztec/foundation/crypto'; import { Fr } from '@aztec/foundation/fields'; -import { type Logger, createLogger } from '@aztec/foundation/log'; import { type Tuple, assertLength } from '@aztec/foundation/serialize'; import { MembershipWitness } from '@aztec/foundation/trees'; import { ProtocolCircuitVks, TubeVk } from '@aztec/noir-protocol-circuits-types/server/vks'; @@ -54,6 +53,7 @@ import { jest } from '@jest/globals'; import { buildBaseRollupHints, buildHeaderFromCircuitOutputs, + getLastSiblingPath, getRootTreeSiblingPath, getSubtreeSiblingPath, getTreeSnapshot, @@ -64,7 +64,6 @@ jest.setTimeout(50_000); describe('LightBlockBuilder', () => { let simulator: ServerCircuitProver; - let logger: Logger; let globalVariables: GlobalVariables; let l1ToL2Messages: Fr[]; let vkTreeRoot: Fr; @@ -83,7 +82,6 @@ describe('LightBlockBuilder', () => { const expectedTxFee = new Fr(0x2200); beforeAll(() => { - logger = createLogger('prover-client:test:block-builder'); simulator = new TestCircuitProver(); vkTreeRoot = getVKTreeRoot(); emptyProof = makeEmptyRecursiveProof(NESTED_RECURSIVE_PROOF_LENGTH); @@ -248,19 +246,16 @@ describe('LightBlockBuilder', () => { ); const endState = new StateReference(messageTreeSnapshot, partialState); - const expectedHeader = await buildHeaderFromCircuitOutputs( - previousRollups, - parityOutput, - rootOutput, - endState, - logger, - ); + const expectedHeader = buildHeaderFromCircuitOutputs(previousRollups, parityOutput, rootOutput, endState); // Ensure that the expected mana used is the sum of the txs' gas used const expectedManaUsed = txs.reduce((acc, tx) => acc + tx.gasUsed.totalGas.l2Gas, 0); expect(expectedHeader.totalManaUsed.toNumber()).toBe(expectedManaUsed); - expect(await expectedHeader.hash()).toEqual(rootOutput.endBlockHash); + await expectsFork.updateArchive(expectedHeader); + const newArchiveRoot = (await expectsFork.getTreeInfo(MerkleTreeId.ARCHIVE)).root; + expect(newArchiveRoot).toEqual(rootOutput.newArchive.root.toBuffer()); + return expectedHeader; }; @@ -345,6 +340,7 @@ describe('LightBlockBuilder', () => { ); const startArchiveSnapshot = await getTreeSnapshot(MerkleTreeId.ARCHIVE, expectsFork); + const previousArchiveSiblingPath = await getLastSiblingPath(MerkleTreeId.ARCHIVE, expectsFork); const newArchiveSiblingPath = await getRootTreeSiblingPath(MerkleTreeId.ARCHIVE, expectsFork); const blobFields = txs.map(tx => tx.txEffect.toBlobFields()).flat(); const blobs = await Blob.getBlobs(blobFields); @@ -364,6 +360,7 @@ describe('LightBlockBuilder', () => { const data = BlockRootRollupData.from({ l1ToL2Roots: rootParityInput, l1ToL2MessageSubtreeSiblingPath: l1ToL2Snapshot.l1ToL2MessageSubtreeSiblingPath, + previousArchiveSiblingPath, newArchiveSiblingPath, previousBlockHeader, proverId: Fr.ZERO, diff --git a/yarn-project/prover-client/src/orchestrator/block-building-helpers.ts b/yarn-project/prover-client/src/orchestrator/block-building-helpers.ts index fe14639402cf..d7139ee81fd5 100644 --- a/yarn-project/prover-client/src/orchestrator/block-building-helpers.ts +++ b/yarn-project/prover-client/src/orchestrator/block-building-helpers.ts @@ -16,7 +16,6 @@ import { makeTuple } from '@aztec/foundation/array'; import { padArrayEnd } from '@aztec/foundation/collection'; import { sha256Trunc } from '@aztec/foundation/crypto'; import { Fr } from '@aztec/foundation/fields'; -import type { Logger } from '@aztec/foundation/log'; import { type Tuple, assertLength, serializeToBuffer, toFriendlyJSON } from '@aztec/foundation/serialize'; import { MembershipWitness, MerkleTreeCalculator, computeUnbalancedMerkleRoot } from '@aztec/foundation/trees'; import { getVKTreeRoot } from '@aztec/noir-protocol-circuits-types/vk-tree'; @@ -55,8 +54,6 @@ import { import { Attributes, type Span, runInSpan } from '@aztec/telemetry-client'; import type { MerkleTreeReadOperations } from '@aztec/world-state'; -import { inspect } from 'util'; - /** * Type representing the names of the trees for the base rollup. */ @@ -255,13 +252,12 @@ export const buildBlobHints = runInSpan( export const buildHeaderFromCircuitOutputs = runInSpan( 'BlockBuilderHelpers', 'buildHeaderFromCircuitOutputs', - async ( + ( _span, previousRollupData: BaseOrMergeRollupPublicInputs[], parityPublicInputs: ParityPublicInputs, rootRollupOutputs: BlockRootOrBlockMergePublicInputs, endState: StateReference, - logger?: Logger, ) => { if (previousRollupData.length > 2) { throw new Error(`There can't be more than 2 previous rollups. Received ${previousRollupData.length}.`); @@ -286,7 +282,8 @@ export const buildHeaderFromCircuitOutputs = runInSpan( const accumulatedFees = previousRollupData.reduce((sum, d) => sum.add(d.accumulatedFees), Fr.ZERO); const accumulatedManaUsed = previousRollupData.reduce((sum, d) => sum.add(d.accumulatedManaUsed), Fr.ZERO); - const header = new BlockHeader( + + return new BlockHeader( rootRollupOutputs.previousArchive, contentCommitment, endState, @@ -294,15 +291,6 @@ export const buildHeaderFromCircuitOutputs = runInSpan( accumulatedFees, accumulatedManaUsed, ); - if (!(await header.hash()).equals(rootRollupOutputs.endBlockHash)) { - logger?.error( - `Block header mismatch when building header from circuit outputs.` + - `\n\nHeader: ${inspect(header)}` + - `\n\nCircuit: ${toFriendlyJSON(rootRollupOutputs)}`, - ); - throw new Error(`Block header mismatch when building from circuit outputs`); - } - return header; }, ); @@ -398,6 +386,12 @@ export const validateState = runInSpan( }, ); +export async function getLastSiblingPath(treeId: TID, db: MerkleTreeReadOperations) { + const { size } = await db.getTreeInfo(treeId); + const path = await db.getSiblingPath(treeId, size - 1n); + return padArrayEnd(path.toFields(), Fr.ZERO, getTreeHeight(treeId)); +} + export async function getRootTreeSiblingPath(treeId: TID, db: MerkleTreeReadOperations) { const { size } = await db.getTreeInfo(treeId); const path = await db.getSiblingPath(treeId, size); diff --git a/yarn-project/prover-client/src/orchestrator/block-proving-state.ts b/yarn-project/prover-client/src/orchestrator/block-proving-state.ts index 5ef59db92b2c..708497a4967a 100644 --- a/yarn-project/prover-client/src/orchestrator/block-proving-state.ts +++ b/yarn-project/prover-client/src/orchestrator/block-proving-state.ts @@ -11,7 +11,6 @@ import { } from '@aztec/constants'; import { padArrayEnd } from '@aztec/foundation/collection'; import { Fr } from '@aztec/foundation/fields'; -import type { Logger } from '@aztec/foundation/log'; import type { Tuple } from '@aztec/foundation/serialize'; import { MembershipWitness, type TreeNodeLocation, UnbalancedTreeStore } from '@aztec/foundation/trees'; import { getVKIndex, getVKSiblingPath, getVKTreeRoot } from '@aztec/noir-protocol-circuits-types/vk-tree'; @@ -68,6 +67,7 @@ export class BlockProvingState { private readonly l1ToL2MessageSubtreeSiblingPath: Tuple, private readonly l1ToL2MessageTreeSnapshotAfterInsertion: AppendOnlyTreeSnapshot, private readonly lastArchiveSnapshot: AppendOnlyTreeSnapshot, + private readonly lastArchiveSiblingPath: Tuple, private readonly newArchiveSiblingPath: Tuple, private readonly previousBlockHeader: BlockHeader, private readonly parentEpoch: EpochProvingState, @@ -232,6 +232,7 @@ export class BlockProvingState { const data = BlockRootRollupData.from({ l1ToL2Roots: this.#getRootParityData(this.rootParityProvingOutput!), l1ToL2MessageSubtreeSiblingPath: this.l1ToL2MessageSubtreeSiblingPath, + previousArchiveSiblingPath: this.lastArchiveSiblingPath, newArchiveSiblingPath: this.newArchiveSiblingPath, previousBlockHeader: newBlockHeader, proverId, @@ -267,7 +268,7 @@ export class BlockProvingState { return this.txs[txIndex]; } - public async buildHeaderFromProvingOutputs(logger?: Logger) { + public async buildHeaderFromProvingOutputs() { const previousRollupData = this.totalNumTxs === 0 ? [] @@ -289,7 +290,6 @@ export class BlockProvingState { this.rootParityProvingOutput!.inputs, this.blockRootProvingOutput!.inputs, endState, - logger, ); } @@ -326,6 +326,7 @@ export class BlockProvingState { return BlockRootRollupData.from({ l1ToL2Roots: this.#getRootParityData(this.rootParityProvingOutput!), l1ToL2MessageSubtreeSiblingPath: this.l1ToL2MessageSubtreeSiblingPath, + previousArchiveSiblingPath: this.lastArchiveSiblingPath, newArchiveSiblingPath: this.newArchiveSiblingPath, previousBlockHeader: this.previousBlockHeader, proverId, diff --git a/yarn-project/prover-client/src/orchestrator/epoch-proving-state.ts b/yarn-project/prover-client/src/orchestrator/epoch-proving-state.ts index ee3f626e4207..62d6d77439ef 100644 --- a/yarn-project/prover-client/src/orchestrator/epoch-proving-state.ts +++ b/yarn-project/prover-client/src/orchestrator/epoch-proving-state.ts @@ -73,6 +73,7 @@ export class EpochProvingState { l1ToL2MessageSubtreeSiblingPath: Tuple, l1ToL2MessageTreeSnapshotAfterInsertion: AppendOnlyTreeSnapshot, lastArchiveSnapshot: AppendOnlyTreeSnapshot, + lastArchiveSiblingPath: Tuple, newArchiveSiblingPath: Tuple, previousBlockHeader: BlockHeader, ): BlockProvingState { @@ -84,6 +85,7 @@ export class EpochProvingState { l1ToL2MessageSubtreeSiblingPath, l1ToL2MessageTreeSnapshotAfterInsertion, lastArchiveSnapshot, + lastArchiveSiblingPath, newArchiveSiblingPath, previousBlockHeader, this, diff --git a/yarn-project/prover-client/src/orchestrator/orchestrator.ts b/yarn-project/prover-client/src/orchestrator/orchestrator.ts index f0e29b0e6e12..f7312d919a3f 100644 --- a/yarn-project/prover-client/src/orchestrator/orchestrator.ts +++ b/yarn-project/prover-client/src/orchestrator/orchestrator.ts @@ -52,6 +52,7 @@ import { inspect } from 'util'; import { buildBaseRollupHints, buildHeaderAndBodyFromTxs, + getLastSiblingPath, getRootTreeSiblingPath, getSubtreeSiblingPath, getTreeSnapshot, @@ -152,6 +153,7 @@ export class ProvingOrchestrator implements EpochProver { // Get archive snapshot before this block lands const lastArchive = await getTreeSnapshot(MerkleTreeId.ARCHIVE, db); + const lastArchiveSiblingPath = await getLastSiblingPath(MerkleTreeId.ARCHIVE, db); const newArchiveSiblingPath = await getRootTreeSiblingPath(MerkleTreeId.ARCHIVE, db); const blockProvingState = this.provingState!.startNewBlock( @@ -160,6 +162,7 @@ export class ProvingOrchestrator implements EpochProver { l1ToL2MessageSubtreeSiblingPath, l1ToL2MessageTreeSnapshotAfterInsertion, lastArchive, + lastArchiveSiblingPath, newArchiveSiblingPath, previousBlockHeader, ); @@ -670,12 +673,21 @@ export class ProvingOrchestrator implements EpochProver { ), async result => { provingState.setBlockRootRollupProof(result); - const header = await provingState.buildHeaderFromProvingOutputs(logger); + const header = await provingState.buildHeaderFromProvingOutputs(); if (!(await header.hash()).equals(await provingState.block!.header.hash())) { logger.error( - `Block header mismatch\nCircuit:${inspect(header)}\nComputed:${inspect(provingState.block!.header)}`, + `Block header mismatch.\nCircuit: ${inspect(header)}\nComputed: ${inspect(provingState.block!.header)}`, ); - provingState.reject(`Block header hash mismatch`); + provingState.reject(`Block header hash mismatch.`); + } + + const dbArchiveRoot = provingState.block!.archive.root; + const circuitArchiveRoot = result.inputs.newArchive.root; + if (!dbArchiveRoot.equals(circuitArchiveRoot)) { + logger.error( + `New archive root mismatch.\nCircuit: ${result.inputs.newArchive.root}\nComputed: ${dbArchiveRoot}`, + ); + provingState.reject(`New archive root mismatch.`); } logger.debug(`Completed ${rollupType} proof for block ${provingState.block!.number}`); diff --git a/yarn-project/prover-node/src/prover-node-publisher.test.ts b/yarn-project/prover-node/src/prover-node-publisher.test.ts index df44f3b606ac..6d4991127d71 100644 --- a/yarn-project/prover-node/src/prover-node-publisher.test.ts +++ b/yarn-project/prover-node/src/prover-node-publisher.test.ts @@ -135,7 +135,6 @@ describe('prover-node-publisher', () => { // Return the requested block rollup.getBlock.mockImplementation((blockNumber: bigint) => Promise.resolve({ - blockHash: blocks[Number(blockNumber) - 1].endBlockHash.toString(), archive: blocks[Number(blockNumber) - 1].endArchive.root.toString(), slotNumber: 0n, // unused, }), @@ -144,9 +143,7 @@ describe('prover-node-publisher', () => { // We have built a rollup proof of the range fromBlock - toBlock // so we need to set our archives and hashes accordingly const ourPublicInputs = RootRollupPublicInputs.random(); - ourPublicInputs.previousBlockHash = blocks[fromBlock - 2]?.endBlockHash ?? Fr.ZERO; ourPublicInputs.previousArchive = blocks[fromBlock - 2]?.endArchive ?? Fr.ZERO; - ourPublicInputs.endBlockHash = blocks[toBlock - 1]?.endBlockHash ?? Fr.ZERO; ourPublicInputs.endArchive = blocks[toBlock - 1]?.endArchive ?? Fr.ZERO; // Return our public inputs diff --git a/yarn-project/prover-node/src/prover-node-publisher.ts b/yarn-project/prover-node/src/prover-node-publisher.ts index dc369f3abf56..ba235cb8afdd 100644 --- a/yarn-project/prover-node/src/prover-node-publisher.ts +++ b/yarn-project/prover-node/src/prover-node-publisher.ts @@ -27,8 +27,6 @@ export type L1SubmitEpochProofArgs = { epochSize: number; previousArchive: Fr; endArchive: Fr; - previousBlockHash: Fr; - endBlockHash: Fr; endTimestamp: Fr; outHash: Fr; proverId: Fr; @@ -162,30 +160,21 @@ export class ProverNodePublisher { throw new Error(`Cannot submit epoch proof for ${fromBlock}-${toBlock} as pending block is ${pending}`); } - // Check the block hash and archive for the immediate block before the epoch + // Check the archive for the immediate block before the epoch const blockLog = await this.rollupContract.getBlock(BigInt(fromBlock - 1)); if (publicInputs.previousArchive.root.toString() !== blockLog.archive) { throw new Error( `Previous archive root mismatch: ${publicInputs.previousArchive.root.toString()} !== ${blockLog.archive}`, ); } - // TODO: Remove zero check once we inject the proper zero blockhash - if (blockLog.blockHash !== Fr.ZERO.toString() && publicInputs.previousBlockHash.toString() !== blockLog.blockHash) { - throw new Error( - `Previous block hash mismatch: ${publicInputs.previousBlockHash.toString()} !== ${blockLog.blockHash}`, - ); - } - // Check the block hash and archive for the last block in the epoch + // Check the archive for the last block in the epoch const endBlockLog = await this.rollupContract.getBlock(BigInt(toBlock)); if (publicInputs.endArchive.root.toString() !== endBlockLog.archive) { throw new Error( `End archive root mismatch: ${publicInputs.endArchive.root.toString()} !== ${endBlockLog.archive}`, ); } - if (publicInputs.endBlockHash.toString() !== endBlockLog.blockHash) { - throw new Error(`End block hash mismatch: ${publicInputs.endBlockHash.toString()} !== ${endBlockLog.blockHash}`); - } // Compare the public inputs computed by the contract with the ones injected const rollupPublicInputs = await this.rollupContract.getEpochProofPublicInputs(this.getSubmitEpochProofArgs(args)); @@ -262,8 +251,6 @@ export class ProverNodePublisher { { previousArchive: args.publicInputs.previousArchive.root.toString(), endArchive: args.publicInputs.endArchive.root.toString(), - previousBlockHash: args.publicInputs.previousBlockHash.toString(), - endBlockHash: args.publicInputs.endBlockHash.toString(), endTimestamp: args.publicInputs.endTimestamp.toBigInt(), outHash: args.publicInputs.outHash.toString(), proverId: EthAddress.fromField(args.publicInputs.proverId).toString(), diff --git a/yarn-project/sequencer-client/src/publisher/sequencer-publisher.ts b/yarn-project/sequencer-client/src/publisher/sequencer-publisher.ts index b91eb6a5a119..4c0a61e82b45 100644 --- a/yarn-project/sequencer-client/src/publisher/sequencer-publisher.ts +++ b/yarn-project/sequencer-client/src/publisher/sequencer-publisher.ts @@ -41,8 +41,6 @@ type L1ProcessArgs = { header: Buffer; /** A root of the archive tree after the L2 block is applied. */ archive: Buffer; - /** The L2 block's leaf in the archive tree. */ - blockHash: Buffer; /** L2 block blobs containing all tx effects. */ blobs: Blob[]; /** L2 block tx hashes */ @@ -411,13 +409,12 @@ export class SequencerPublisher { ): Promise { const consensusPayload = new ConsensusPayload(block.header, block.archive.root, txHashes ?? []); - const digest = await getHashedSignaturePayload(consensusPayload, SignatureDomainSeparator.blockAttestation); + const digest = getHashedSignaturePayload(consensusPayload, SignatureDomainSeparator.blockAttestation); const blobs = await Blob.getBlobs(block.body.toBlobFields()); const proposeTxArgs = { header: block.header.toBuffer(), archive: block.archive.root.toBuffer(), - blockHash: (await block.header.hash()).toBuffer(), body: block.body.toBuffer(), blobs, attestations, @@ -494,7 +491,6 @@ export class SequencerPublisher { // We are currently not modifying these. See #9963 feeAssetPriceModifier: 0n, }, - blockHash: `0x${encodedData.blockHash.toString('hex')}`, txHashes, }, attestations, @@ -562,7 +558,6 @@ export class SequencerPublisher { const kzg = Blob.getViemKzgInstance(); const { rollupData, simulationResult, blobEvaluationGas } = await this.prepareProposeTx(encodedData, timestamp); const startBlock = await this.l1TxUtils.getBlockNumber(); - const blockHash = await block.hash(); return this.addRequest({ action: 'propose', @@ -614,7 +609,6 @@ export class SequencerPublisher { this.log.error(`Rollup process tx reverted. ${errorMsg ?? 'No error message'}`, undefined, { ...block.getStats(), txHash: receipt.transactionHash, - blockHash, slotNumber: block.header.globalVariables.slotNumber.toBigInt(), }); } diff --git a/yarn-project/sequencer-client/src/sequencer/utils.ts b/yarn-project/sequencer-client/src/sequencer/utils.ts index f92198803e34..7f98c6fa165f 100644 --- a/yarn-project/sequencer-client/src/sequencer/utils.ts +++ b/yarn-project/sequencer-client/src/sequencer/utils.ts @@ -50,18 +50,13 @@ export function sequencerStateToNumber(state: SequencerState): number { * * @todo: perform this logic within the memory attestation store instead? */ -export async function orderAttestations( - attestations: BlockAttestation[], - orderAddresses: EthAddress[], -): Promise { +export function orderAttestations(attestations: BlockAttestation[], orderAddresses: EthAddress[]): Signature[] { // Create a map of sender addresses to BlockAttestations const attestationMap = new Map(); for (const attestation of attestations) { - const sender = await attestation.getSender(); - if (sender) { - attestationMap.set(sender.toString(), attestation); - } + const sender = attestation.getSender(); + attestationMap.set(sender.toString(), attestation); } // Create the ordered array based on the orderAddresses, else return an empty signature diff --git a/yarn-project/stdlib/src/p2p/block_attestation.test.ts b/yarn-project/stdlib/src/p2p/block_attestation.test.ts index 9b35966b94c4..bb44d0733858 100644 --- a/yarn-project/stdlib/src/p2p/block_attestation.test.ts +++ b/yarn-project/stdlib/src/p2p/block_attestation.test.ts @@ -10,25 +10,25 @@ describe('Block Attestation serialization / deserialization', () => { expect(deserialized).toEqual(serialized); }; - it('Should serialize / deserialize', async () => { - const attestation = await makeBlockAttestation(); + it('Should serialize / deserialize', () => { + const attestation = makeBlockAttestation(); const serialized = attestation.toBuffer(); const deserialized = BlockAttestation.fromBuffer(serialized); checkEquivalence(attestation, deserialized); }); - it('Should serialize / deserialize + recover sender', async () => { + it('Should serialize / deserialize + recover sender', () => { const account = Secp256k1Signer.random(); - const attestation = await makeBlockAttestation({ signer: account }); + const attestation = makeBlockAttestation({ signer: account }); const serialized = attestation.toBuffer(); const deserialized = BlockAttestation.fromBuffer(serialized); checkEquivalence(attestation, deserialized); // Recover signature - const sender = await deserialized.getSender(); + const sender = deserialized.getSender(); expect(sender).toEqual(account.address); }); }); diff --git a/yarn-project/stdlib/src/p2p/block_attestation.ts b/yarn-project/stdlib/src/p2p/block_attestation.ts index acbc0c899c88..f1b4ca50ab5e 100644 --- a/yarn-project/stdlib/src/p2p/block_attestation.ts +++ b/yarn-project/stdlib/src/p2p/block_attestation.ts @@ -70,13 +70,10 @@ export class BlockAttestation extends Gossipable { * Lazily evaluate and cache the sender of the attestation * @returns The sender of the attestation */ - async getSender(): Promise { + getSender(): EthAddress { if (!this.sender) { // Recover the sender from the attestation - const hashed = await getHashedSignaturePayloadEthSignedMessage( - this.payload, - SignatureDomainSeparator.blockAttestation, - ); + const hashed = getHashedSignaturePayloadEthSignedMessage(this.payload, SignatureDomainSeparator.blockAttestation); // Cache the sender for later use this.sender = recoverAddress(hashed, this.signature); } @@ -84,7 +81,7 @@ export class BlockAttestation extends Gossipable { return this.sender; } - getPayload(): Promise { + getPayload(): Buffer { return this.payload.getPayloadToSign(SignatureDomainSeparator.blockAttestation); } diff --git a/yarn-project/stdlib/src/p2p/block_proposal.test.ts b/yarn-project/stdlib/src/p2p/block_proposal.test.ts index da480c91bd74..08128dc56178 100644 --- a/yarn-project/stdlib/src/p2p/block_proposal.test.ts +++ b/yarn-project/stdlib/src/p2p/block_proposal.test.ts @@ -10,25 +10,25 @@ describe('Block Proposal serialization / deserialization', () => { expect(deserialized).toEqual(serialized); }; - it('Should serialize / deserialize', async () => { - const proposal = await makeBlockProposal(); + it('Should serialize / deserialize', () => { + const proposal = makeBlockProposal(); const serialized = proposal.toBuffer(); const deserialized = BlockProposal.fromBuffer(serialized); checkEquivalence(proposal, deserialized); }); - it('Should serialize / deserialize + recover sender', async () => { + it('Should serialize / deserialize + recover sender', () => { const account = Secp256k1Signer.random(); - const proposal = await makeBlockProposal({ signer: account }); + const proposal = makeBlockProposal({ signer: account }); const serialized = proposal.toBuffer(); const deserialized = BlockProposal.fromBuffer(serialized); checkEquivalence(proposal, deserialized); // Recover signature - const sender = await deserialized.getSender(); + const sender = deserialized.getSender(); expect(sender).toEqual(account.address); }); }); diff --git a/yarn-project/stdlib/src/p2p/block_proposal.ts b/yarn-project/stdlib/src/p2p/block_proposal.ts index 96542ba33c85..0bee1a3f40c3 100644 --- a/yarn-project/stdlib/src/p2p/block_proposal.ts +++ b/yarn-project/stdlib/src/p2p/block_proposal.ts @@ -61,7 +61,7 @@ export class BlockProposal extends Gossipable { payload: ConsensusPayload, payloadSigner: (payload: Buffer32) => Promise, ) { - const hashed = await getHashedSignaturePayload(payload, SignatureDomainSeparator.blockProposal); + const hashed = getHashedSignaturePayload(payload, SignatureDomainSeparator.blockProposal); const sig = await payloadSigner(hashed); return new BlockProposal(payload, sig); @@ -70,12 +70,9 @@ export class BlockProposal extends Gossipable { /**Get Sender * Lazily evaluate the sender of the proposal; result is cached */ - async getSender() { + getSender() { if (!this.sender) { - const hashed = await getHashedSignaturePayloadEthSignedMessage( - this.payload, - SignatureDomainSeparator.blockProposal, - ); + const hashed = getHashedSignaturePayloadEthSignedMessage(this.payload, SignatureDomainSeparator.blockProposal); // Cache the sender for later use this.sender = recoverAddress(hashed, this.signature); } diff --git a/yarn-project/stdlib/src/p2p/consensus_payload.ts b/yarn-project/stdlib/src/p2p/consensus_payload.ts index 809fcbe72250..ea1f11bb57fb 100644 --- a/yarn-project/stdlib/src/p2p/consensus_payload.ts +++ b/yarn-project/stdlib/src/p2p/consensus_payload.ts @@ -38,18 +38,12 @@ export class ConsensusPayload implements Signable { return [fields.header, fields.archive, fields.txHashes] as const; } - async getPayloadToSign(domainSeparator: SignatureDomainSeparator): Promise { - const abi = parseAbiParameters('uint8, (bytes32, bytes32, (uint256), bytes, bytes32[])'); + getPayloadToSign(domainSeparator: SignatureDomainSeparator): Buffer { + const abi = parseAbiParameters('uint8, (bytes32, (uint256), bytes, bytes32[])'); const txArray = this.txHashes.map(tx => tx.toString()); const encodedData = encodeAbiParameters(abi, [ domainSeparator, - [ - this.archive.toString(), - (await this.header.hash()).toString(), - [0n] /* @todo See #9963 */, - this.header.toString(), - txArray, - ], + [this.archive.toString(), [0n] /* @todo See #9963 */, this.header.toString(), txArray], ] as const); return hexToBuffer(encodedData); diff --git a/yarn-project/stdlib/src/p2p/signature_utils.ts b/yarn-project/stdlib/src/p2p/signature_utils.ts index 49355ebe7e0d..4c05ccb38231 100644 --- a/yarn-project/stdlib/src/p2p/signature_utils.ts +++ b/yarn-project/stdlib/src/p2p/signature_utils.ts @@ -7,7 +7,7 @@ export enum SignatureDomainSeparator { } export interface Signable { - getPayloadToSign(domainSeparator: SignatureDomainSeparator): Promise; + getPayloadToSign(domainSeparator: SignatureDomainSeparator): Buffer; } /** @@ -15,11 +15,8 @@ export interface Signable { * @param s - The `Signable` to sign * @returns The hashed payload for the signature of the `Signable` */ -export async function getHashedSignaturePayload( - s: Signable, - domainSeparator: SignatureDomainSeparator, -): Promise { - return Buffer32.fromBuffer(keccak256(await s.getPayloadToSign(domainSeparator))); +export function getHashedSignaturePayload(s: Signable, domainSeparator: SignatureDomainSeparator): Buffer32 { + return Buffer32.fromBuffer(keccak256(s.getPayloadToSign(domainSeparator))); } /** @@ -27,10 +24,10 @@ export async function getHashedSignaturePayload( * @param s - the `Signable` to sign * @returns The hashed payload for the signature of the `Signable` as an Ethereum signed message */ -export async function getHashedSignaturePayloadEthSignedMessage( +export function getHashedSignaturePayloadEthSignedMessage( s: Signable, domainSeparator: SignatureDomainSeparator, -): Promise { - const payload = await getHashedSignaturePayload(s, domainSeparator); +): Buffer32 { + const payload = getHashedSignaturePayload(s, domainSeparator); return makeEthSignDigest(payload); } diff --git a/yarn-project/stdlib/src/rollup/block_root_or_block_merge_public_inputs.ts b/yarn-project/stdlib/src/rollup/block_root_or_block_merge_public_inputs.ts index f4d96e44febf..48c17e262506 100644 --- a/yarn-project/stdlib/src/rollup/block_root_or_block_merge_public_inputs.ts +++ b/yarn-project/stdlib/src/rollup/block_root_or_block_merge_public_inputs.ts @@ -23,14 +23,6 @@ export class BlockRootOrBlockMergePublicInputs { * Archive tree after adding this block range. */ public newArchive: AppendOnlyTreeSnapshot, - /** - * Identifier of the previous block before the range. - */ - public previousBlockHash: Fr, - /** - * Identifier of the last block in the range. - */ - public endBlockHash: Fr, /** * Global variables for the first block in the range. */ @@ -76,8 +68,6 @@ export class BlockRootOrBlockMergePublicInputs { return new BlockRootOrBlockMergePublicInputs( reader.readObject(AppendOnlyTreeSnapshot), reader.readObject(AppendOnlyTreeSnapshot), - Fr.fromBuffer(reader), - Fr.fromBuffer(reader), reader.readObject(GlobalVariables), reader.readObject(GlobalVariables), Fr.fromBuffer(reader), @@ -97,8 +87,6 @@ export class BlockRootOrBlockMergePublicInputs { return serializeToBuffer( this.previousArchive, this.newArchive, - this.previousBlockHash, - this.endBlockHash, this.startGlobalVariables, this.endGlobalVariables, this.outHash, diff --git a/yarn-project/stdlib/src/rollup/block_root_rollup.ts b/yarn-project/stdlib/src/rollup/block_root_rollup.ts index e8c1c0cc1494..179fec1b1d6a 100644 --- a/yarn-project/stdlib/src/rollup/block_root_rollup.ts +++ b/yarn-project/stdlib/src/rollup/block_root_rollup.ts @@ -25,6 +25,10 @@ export class BlockRootRollupData { * Hint for inserting the new l1 to l2 message subtree. */ public l1ToL2MessageSubtreeSiblingPath: Tuple, + /** + * Hint for checking the hash of previous_block_header is the last leaf of the previous archive. + */ + public previousArchiveSiblingPath: Tuple, /** * Hint for inserting the new block hash to the last archive. */ @@ -73,6 +77,7 @@ export class BlockRootRollupData { return [ fields.l1ToL2Roots, fields.l1ToL2MessageSubtreeSiblingPath, + fields.previousArchiveSiblingPath, fields.newArchiveSiblingPath, fields.previousBlockHeader, fields.proverId, @@ -90,6 +95,7 @@ export class BlockRootRollupData { RootParityInput.fromBuffer(reader, NESTED_RECURSIVE_PROOF_LENGTH), reader.readArray(L1_TO_L2_MSG_SUBTREE_SIBLING_PATH_LENGTH, Fr), reader.readArray(ARCHIVE_HEIGHT, Fr), + reader.readArray(ARCHIVE_HEIGHT, Fr), BlockHeader.fromBuffer(reader), Fr.fromBuffer(reader), ); diff --git a/yarn-project/stdlib/src/rollup/root_rollup.ts b/yarn-project/stdlib/src/rollup/root_rollup.ts index 54e27a9c8134..817cdf7772d4 100644 --- a/yarn-project/stdlib/src/rollup/root_rollup.ts +++ b/yarn-project/stdlib/src/rollup/root_rollup.ts @@ -103,8 +103,6 @@ export class RootRollupPublicInputs { /** Snapshot of archive tree before/after this rollup been processed */ public previousArchive: AppendOnlyTreeSnapshot, public endArchive: AppendOnlyTreeSnapshot, - public previousBlockHash: Fr, - public endBlockHash: Fr, // This is a u64 in nr, but GlobalVariables contains this as a u64 and is mapped to ts as a field, so I'm doing the same here public endTimestamp: Fr, public endBlockNumber: Fr, @@ -120,8 +118,6 @@ export class RootRollupPublicInputs { return [ fields.previousArchive, fields.endArchive, - fields.previousBlockHash, - fields.endBlockHash, fields.endTimestamp, fields.endBlockNumber, fields.outHash, @@ -158,8 +154,6 @@ export class RootRollupPublicInputs { Fr.fromBuffer(reader), Fr.fromBuffer(reader), Fr.fromBuffer(reader), - Fr.fromBuffer(reader), - Fr.fromBuffer(reader), reader.readArray(AZTEC_MAX_EPOCH_DURATION, FeeRecipient), Fr.fromBuffer(reader), Fr.fromBuffer(reader), @@ -194,8 +188,6 @@ export class RootRollupPublicInputs { Fr.random(), Fr.random(), Fr.random(), - Fr.random(), - Fr.random(), makeTuple(AZTEC_MAX_EPOCH_DURATION, FeeRecipient.random), Fr.random(), Fr.random(), diff --git a/yarn-project/stdlib/src/tests/factories.ts b/yarn-project/stdlib/src/tests/factories.ts index ba639a621dd4..07820a8b8046 100644 --- a/yarn-project/stdlib/src/tests/factories.ts +++ b/yarn-project/stdlib/src/tests/factories.ts @@ -713,10 +713,8 @@ export function makeBlockRootOrBlockMergeRollupPublicInputs( return new BlockRootOrBlockMergePublicInputs( makeAppendOnlyTreeSnapshot(seed + 0x200), makeAppendOnlyTreeSnapshot(seed + 0x300), - fr(seed + 0x400), - fr(seed + 0x500), - globalVariables ?? makeGlobalVariables(seed + 0x501), - globalVariables ?? makeGlobalVariables(seed + 0x502), + globalVariables ?? makeGlobalVariables(seed + 0x400), + globalVariables ?? makeGlobalVariables(seed + 0x500), fr(seed + 0x600), makeTuple(AZTEC_MAX_EPOCH_DURATION, () => makeFeeRecipient(seed), 0x700), fr(seed + 0x800), @@ -786,8 +784,9 @@ function makeBlockRootRollupData(seed = 0) { makeRootParityInput(NESTED_RECURSIVE_PROOF_LENGTH, seed + 0x2000), makeTuple(L1_TO_L2_MSG_SUBTREE_SIBLING_PATH_LENGTH, fr, 0x2100), makeTuple(ARCHIVE_HEIGHT, fr, 0x2200), - makeHeader(seed + 0x2300), - fr(seed + 0x2400), + makeTuple(ARCHIVE_HEIGHT, fr, 0x2300), + makeHeader(seed + 0x2400), + fr(seed + 0x2500), ); } @@ -880,18 +879,16 @@ export function makeRootParityInputs(seed = 0): RootParityInputs { */ export function makeRootRollupPublicInputs(seed = 0): RootRollupPublicInputs { return new RootRollupPublicInputs( + makeAppendOnlyTreeSnapshot(seed + 0x100), makeAppendOnlyTreeSnapshot(seed + 0x200), - makeAppendOnlyTreeSnapshot(seed + 0x300), + fr(seed + 0x300), fr(seed + 0x400), fr(seed + 0x500), - fr(seed + 0x600), + makeTuple(AZTEC_MAX_EPOCH_DURATION, () => makeFeeRecipient(seed), 0x600), fr(seed + 0x700), - fr(seed + 0x800), - makeTuple(AZTEC_MAX_EPOCH_DURATION, () => makeFeeRecipient(seed), 0x900), - fr(seed + 0x100), - fr(seed + 0x101), - fr(seed + 0x200), - makeTuple(AZTEC_MAX_EPOCH_DURATION, () => makeBlockBlobPublicInputs(seed), 0x300), + fr(seed + 0x701), + fr(seed + 0x702), + makeTuple(AZTEC_MAX_EPOCH_DURATION, () => makeBlockBlobPublicInputs(seed), 0x800), ); } diff --git a/yarn-project/stdlib/src/tests/mocks.ts b/yarn-project/stdlib/src/tests/mocks.ts index 5ac0e9d96ca0..9e947cefaa63 100644 --- a/yarn-project/stdlib/src/tests/mocks.ts +++ b/yarn-project/stdlib/src/tests/mocks.ts @@ -221,7 +221,7 @@ export interface MakeConsensusPayloadOptions { txHashes?: TxHash[]; } -const makeAndSignConsensusPayload = async ( +const makeAndSignConsensusPayload = ( domainSeparator: SignatureDomainSeparator, options?: MakeConsensusPayloadOptions, ) => { @@ -238,19 +238,19 @@ const makeAndSignConsensusPayload = async ( txHashes, }); - const hash = await getHashedSignaturePayloadEthSignedMessage(payload, domainSeparator); + const hash = getHashedSignaturePayloadEthSignedMessage(payload, domainSeparator); const signature = signer.sign(hash); return { payload, signature }; }; -export const makeBlockProposal = async (options?: MakeConsensusPayloadOptions): Promise => { - const { payload, signature } = await makeAndSignConsensusPayload(SignatureDomainSeparator.blockProposal, options); +export const makeBlockProposal = (options?: MakeConsensusPayloadOptions): BlockProposal => { + const { payload, signature } = makeAndSignConsensusPayload(SignatureDomainSeparator.blockProposal, options); return new BlockProposal(payload, signature); }; // TODO(https://github.com/AztecProtocol/aztec-packages/issues/8028) -export const makeBlockAttestation = async (options?: MakeConsensusPayloadOptions): Promise => { - const { payload, signature } = await makeAndSignConsensusPayload(SignatureDomainSeparator.blockAttestation, options); +export const makeBlockAttestation = (options?: MakeConsensusPayloadOptions): BlockAttestation => { + const { payload, signature } = makeAndSignConsensusPayload(SignatureDomainSeparator.blockAttestation, options); return new BlockAttestation(payload, signature); }; diff --git a/yarn-project/validator-client/src/duties/validation_service.test.ts b/yarn-project/validator-client/src/duties/validation_service.test.ts index 68126331b6b9..1b19684949d4 100644 --- a/yarn-project/validator-client/src/duties/validation_service.test.ts +++ b/yarn-project/validator-client/src/duties/validation_service.test.ts @@ -20,14 +20,14 @@ describe('ValidationService', () => { it('creates a proposal', async () => { const { payload: { header, archive, txHashes }, - } = await makeBlockProposal(); + } = makeBlockProposal(); const proposal = await service.createBlockProposal(header, archive, txHashes); - await expect(proposal.getSender()).resolves.toEqual(store.getAddress()); + expect(proposal.getSender()).toEqual(store.getAddress()); }); it('attests to proposal', async () => { - const proposal = await makeBlockProposal(); + const proposal = makeBlockProposal(); const attestation = await service.attestToProposal(proposal); - await expect(attestation.getSender()).resolves.toEqual(store.getAddress()); + expect(attestation.getSender()).toEqual(store.getAddress()); }); }); diff --git a/yarn-project/validator-client/src/duties/validation_service.ts b/yarn-project/validator-client/src/duties/validation_service.ts index a60aeafeeebf..5f61267cd44b 100644 --- a/yarn-project/validator-client/src/duties/validation_service.ts +++ b/yarn-project/validator-client/src/duties/validation_service.ts @@ -37,7 +37,7 @@ export class ValidationService { // TODO(https://github.com/AztecProtocol/aztec-packages/issues/7961): check that the current validator is correct const buf = Buffer32.fromBuffer( - keccak256(await proposal.payload.getPayloadToSign(SignatureDomainSeparator.blockAttestation)), + keccak256(proposal.payload.getPayloadToSign(SignatureDomainSeparator.blockAttestation)), ); const sig = await this.keyStore.signMessage(buf); return new BlockAttestation(proposal.payload, sig); diff --git a/yarn-project/validator-client/src/metrics.ts b/yarn-project/validator-client/src/metrics.ts index f8ba850e25a8..e386f70e7e98 100644 --- a/yarn-project/validator-client/src/metrics.ts +++ b/yarn-project/validator-client/src/metrics.ts @@ -52,10 +52,10 @@ export class ValidatorMetrics { this.reExecutionTime.record(time); } - public async recordFailedReexecution(proposal: BlockProposal) { + public recordFailedReexecution(proposal: BlockProposal) { this.failedReexecutionCounter.add(1, { [Attributes.STATUS]: 'failed', - [Attributes.BLOCK_PROPOSER]: (await proposal.getSender())?.toString(), + [Attributes.BLOCK_PROPOSER]: proposal.getSender().toString(), }); } diff --git a/yarn-project/validator-client/src/validator.test.ts b/yarn-project/validator-client/src/validator.test.ts index 166fe1cce3f8..0e0836cceae5 100644 --- a/yarn-project/validator-client/src/validator.test.ts +++ b/yarn-project/validator-client/src/validator.test.ts @@ -60,7 +60,7 @@ describe('ValidationService', () => { config.validatorReexecute = true; p2pClient.getTxByHash.mockImplementation(() => Promise.resolve(mockTx())); const val = ValidatorClient.new(config, epochCache, p2pClient); - await expect(val.reExecuteTransactions(await makeBlockProposal())).rejects.toThrow(BlockBuilderNotProvidedError); + await expect(val.reExecuteTransactions(makeBlockProposal())).rejects.toThrow(BlockBuilderNotProvidedError); }); it('Should create a valid block proposal', async () => { @@ -73,11 +73,11 @@ describe('ValidationService', () => { expect(blockProposal).toBeDefined(); const validatorAddress = EthAddress.fromString(validatorAccount.address); - expect(await blockProposal?.getSender()).toEqual(validatorAddress); + expect(blockProposal?.getSender()).toEqual(validatorAddress); }); it('Should a timeout if we do not collect enough attestations in time', async () => { - const proposal = await makeBlockProposal(); + const proposal = makeBlockProposal(); await expect(validatorClient.collectAttestations(proposal, 2, new Date(dateProvider.now() + 100))).rejects.toThrow( AttestationTimeoutError, @@ -85,7 +85,7 @@ describe('ValidationService', () => { }); it('Should throw an error if the transactions are not available', async () => { - const proposal = await makeBlockProposal(); + const proposal = makeBlockProposal(); // mock the p2pClient.getTxStatus to return undefined for all transactions p2pClient.getTxStatus.mockResolvedValue(undefined); @@ -98,16 +98,16 @@ describe('ValidationService', () => { }); it('Should not return an attestation if re-execution fails', async () => { - const proposal = await makeBlockProposal(); + const proposal = makeBlockProposal(); // mock the p2pClient.getTxStatus to return undefined for all transactions p2pClient.getTxStatus.mockResolvedValue(undefined); - epochCache.getProposerInCurrentOrNextSlot.mockImplementation(async () => ({ - currentProposer: await proposal.getSender(), - nextProposer: await proposal.getSender(), + epochCache.getProposerInCurrentOrNextSlot.mockResolvedValue({ + currentProposer: proposal.getSender(), + nextProposer: proposal.getSender(), currentSlot: proposal.slotNumber.toBigInt(), nextSlot: proposal.slotNumber.toBigInt() + 1n, - })); + }); epochCache.isInCommittee.mockResolvedValue(true); const val = ValidatorClient.new(config, epochCache, p2pClient); @@ -120,15 +120,15 @@ describe('ValidationService', () => { }); it('Should not return an attestation if the validator is not in the committee', async () => { - const proposal = await makeBlockProposal(); + const proposal = makeBlockProposal(); // Setup epoch cache mocks - epochCache.getProposerInCurrentOrNextSlot.mockImplementation(async () => ({ - currentProposer: await proposal.getSender(), - nextProposer: await proposal.getSender(), + epochCache.getProposerInCurrentOrNextSlot.mockResolvedValue({ + currentProposer: proposal.getSender(), + nextProposer: proposal.getSender(), currentSlot: proposal.slotNumber.toBigInt(), nextSlot: proposal.slotNumber.toBigInt() + 1n, - })); + }); epochCache.isInCommittee.mockImplementation(() => Promise.resolve(false)); const attestation = await validatorClient.attestToProposal(proposal); @@ -136,7 +136,7 @@ describe('ValidationService', () => { }); it('Should not return an attestation if the proposer is not the current proposer', async () => { - const proposal = await makeBlockProposal(); + const proposal = makeBlockProposal(); // Setup epoch cache mocks epochCache.getProposerInCurrentOrNextSlot.mockImplementation(() => @@ -154,15 +154,15 @@ describe('ValidationService', () => { }); it('Should not return an attestation if the proposal is not for the current or next slot', async () => { - const proposal = await makeBlockProposal(); + const proposal = makeBlockProposal(); // Setup epoch cache mocks - epochCache.getProposerInCurrentOrNextSlot.mockImplementation(async () => ({ - currentProposer: await proposal.getSender(), - nextProposer: await proposal.getSender(), + epochCache.getProposerInCurrentOrNextSlot.mockResolvedValue({ + currentProposer: proposal.getSender(), + nextProposer: proposal.getSender(), currentSlot: proposal.slotNumber.toBigInt() + 20n, nextSlot: proposal.slotNumber.toBigInt() + 21n, - })); + }); epochCache.isInCommittee.mockImplementation(() => Promise.resolve(true)); const attestation = await validatorClient.attestToProposal(proposal); @@ -177,14 +177,14 @@ describe('ValidationService', () => { const archive = Fr.random(); const txHashes = [0, 1, 2, 3, 4, 5].map(() => TxHash.random()); - const proposal = await makeBlockProposal({ signer, archive, txHashes }); + const proposal = makeBlockProposal({ signer, archive, txHashes }); // Mock the attestations to be returned - const expectedAttestations = await Promise.all([ + const expectedAttestations = [ makeBlockAttestation({ signer, archive, txHashes }), makeBlockAttestation({ signer: attestor1, archive, txHashes }), makeBlockAttestation({ signer: attestor2, archive, txHashes }), - ]); + ]; p2pClient.getAttestationsForSlot.mockImplementation((slot, proposalId) => { if ( slot === proposal.payload.header.globalVariables.slotNumber.toBigInt() && diff --git a/yarn-project/validator-client/src/validator.ts b/yarn-project/validator-client/src/validator.ts index f579aed5776a..da5930cb8087 100644 --- a/yarn-project/validator-client/src/validator.ts +++ b/yarn-project/validator-client/src/validator.ts @@ -267,18 +267,18 @@ export class ValidatorClient extends WithTracer implements Validator { this.log.verbose(`Transaction re-execution complete`); if (numFailedTxs > 0) { - await this.metrics.recordFailedReexecution(proposal); + this.metrics.recordFailedReexecution(proposal); throw new ReExFailedTxsError(numFailedTxs); } if (block.body.txEffects.length !== txHashes.length) { - await this.metrics.recordFailedReexecution(proposal); + this.metrics.recordFailedReexecution(proposal); throw new ReExTimeoutError(); } // This function will throw an error if state updates do not match if (!block.archive.root.equals(proposal.archive)) { - await this.metrics.recordFailedReexecution(proposal); + this.metrics.recordFailedReexecution(proposal); throw new ReExStateMismatchError(); } } @@ -344,9 +344,9 @@ export class ValidatorClient extends WithTracer implements Validator { let attestations: BlockAttestation[] = []; while (true) { const collectedAttestations = await this.p2pClient.getAttestationsForSlot(slot, proposalId); - const oldSenders = await Promise.all(attestations.map(attestation => attestation.getSender())); + const oldSenders = attestations.map(attestation => attestation.getSender()); for (const collected of collectedAttestations) { - const collectedSender = await collected.getSender(); + const collectedSender = collected.getSender(); if (!collectedSender.equals(me) && !oldSenders.some(sender => sender.equals(collectedSender))) { this.log.debug(`Received attestation for slot ${slot} from ${collectedSender.toString()}`); } diff --git a/yarn-project/world-state/src/testing.ts b/yarn-project/world-state/src/testing.ts index 36d3068a2371..9616c718d1a2 100644 --- a/yarn-project/world-state/src/testing.ts +++ b/yarn-project/world-state/src/testing.ts @@ -1,4 +1,4 @@ -import { GENESIS_ARCHIVE_ROOT, GENESIS_BLOCK_HASH } from '@aztec/constants'; +import { GENESIS_ARCHIVE_ROOT } from '@aztec/constants'; import { Fr } from '@aztec/foundation/fields'; import { computeFeePayerBalanceLeafSlot } from '@aztec/protocol-contracts/fee-juice'; import type { AztecAddress } from '@aztec/stdlib/aztec-address'; @@ -10,7 +10,6 @@ async function generateGenesisValues(prefilledPublicData: PublicDataTreeLeaf[]) if (!prefilledPublicData.length) { return { genesisArchiveRoot: new Fr(GENESIS_ARCHIVE_ROOT), - genesisBlockHash: new Fr(GENESIS_BLOCK_HASH), }; } @@ -20,14 +19,11 @@ async function generateGenesisValues(prefilledPublicData: PublicDataTreeLeaf[]) true /* cleanupTmpDir */, prefilledPublicData, ); - const initialHeader = ws.getInitialHeader(); - const genesisBlockHash = await initialHeader.hash(); const genesisArchiveRoot = new Fr((await ws.getCommitted().getTreeInfo(MerkleTreeId.ARCHIVE)).root); await ws.close(); return { genesisArchiveRoot, - genesisBlockHash, }; } @@ -50,11 +46,10 @@ export async function getGenesisValues( prefilledPublicData.sort((a, b) => (b.slot.lt(a.slot) ? 1 : -1)); - const { genesisBlockHash, genesisArchiveRoot } = await generateGenesisValues(prefilledPublicData); + const { genesisArchiveRoot } = await generateGenesisValues(prefilledPublicData); return { genesisArchiveRoot, - genesisBlockHash, prefilledPublicData, fundingNeeded: BigInt(initialAccounts.length) * initialAccountFeeJuice.toBigInt(), };