@arbitrum/nitro-contracts 1.0.3-beta.0 → 1.0.3-beta.1
Sign up to get free protection for your applications and to get access to all the features.
- package/build/contracts/@openzeppelin/contracts/access/Ownable.sol/Ownable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/access/Ownable.sol/Ownable.json +63 -0
- package/build/contracts/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/IERC1822Proxiable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/IERC1822Proxiable.json +24 -0
- package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol/ERC1967Proxy.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol/ERC1967Proxy.json +80 -0
- package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Upgrade.sol/ERC1967Upgrade.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Upgrade.sol/ERC1967Upgrade.json +56 -0
- package/build/contracts/@openzeppelin/contracts/proxy/Proxy.sol/Proxy.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/Proxy.sol/Proxy.json +19 -0
- package/build/contracts/@openzeppelin/contracts/proxy/beacon/IBeacon.sol/IBeacon.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/beacon/IBeacon.sol/IBeacon.json +24 -0
- package/build/contracts/@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol/UpgradeableBeacon.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol/UpgradeableBeacon.json +113 -0
- package/build/contracts/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol/ProxyAdmin.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol/ProxyAdmin.json +160 -0
- package/build/contracts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.json +155 -0
- package/build/contracts/@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol/UUPSUpgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol/UUPSUpgradeable.json +100 -0
- package/build/contracts/@openzeppelin/contracts/utils/Address.sol/Address.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/utils/Address.sol/Address.json +10 -0
- package/build/contracts/@openzeppelin/contracts/utils/Context.sol/Context.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/utils/Context.sol/Context.json +10 -0
- package/build/contracts/@openzeppelin/contracts/utils/StorageSlot.sol/StorageSlot.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/utils/StorageSlot.sol/StorageSlot.json +10 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.json +63 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.json +10 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.json +50 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol/IERC20Upgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol/IERC20Upgradeable.json +194 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.json +10 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.json +10 -0
- package/build/contracts/src/bridge/Bridge.sol/Bridge.dbg.json +4 -0
- package/build/contracts/src/bridge/Bridge.sol/Bridge.json +650 -0
- package/build/contracts/src/bridge/IBridge.sol/IBridge.dbg.json +4 -0
- package/build/contracts/src/bridge/IBridge.sol/IBridge.json +538 -0
- package/build/contracts/src/bridge/IDelayedMessageProvider.sol/IDelayedMessageProvider.dbg.json +4 -0
- package/build/contracts/src/bridge/IDelayedMessageProvider.sol/IDelayedMessageProvider.json +43 -0
- package/build/contracts/src/bridge/IInbox.sol/IInbox.dbg.json +4 -0
- package/build/contracts/src/bridge/IInbox.sol/IInbox.json +575 -0
- package/build/contracts/src/bridge/IOutbox.sol/IOutbox.dbg.json +4 -0
- package/build/contracts/src/bridge/IOutbox.sol/IOutbox.json +419 -0
- package/build/contracts/src/bridge/IOwnable.sol/IOwnable.dbg.json +4 -0
- package/build/contracts/src/bridge/IOwnable.sol/IOwnable.json +24 -0
- package/build/contracts/src/bridge/ISequencerInbox.sol/ISequencerInbox.dbg.json +4 -0
- package/build/contracts/src/bridge/ISequencerInbox.sol/ISequencerInbox.json +651 -0
- package/build/contracts/src/bridge/Inbox.sol/Inbox.dbg.json +4 -0
- package/build/contracts/src/bridge/Inbox.sol/Inbox.json +954 -0
- package/build/contracts/src/bridge/Messages.sol/Messages.dbg.json +4 -0
- package/build/contracts/src/bridge/Messages.sol/Messages.json +10 -0
- package/build/contracts/src/bridge/Outbox.sol/Outbox.dbg.json +4 -0
- package/build/contracts/src/bridge/Outbox.sol/Outbox.json +546 -0
- package/build/contracts/src/bridge/SequencerInbox.sol/SequencerInbox.dbg.json +4 -0
- package/build/contracts/src/bridge/SequencerInbox.sol/SequencerInbox.json +814 -0
- package/build/contracts/src/challenge/ChallengeLib.sol/ChallengeLib.dbg.json +4 -0
- package/build/contracts/src/challenge/ChallengeLib.sol/ChallengeLib.json +10 -0
- package/build/contracts/src/challenge/ChallengeManager.sol/ChallengeManager.dbg.json +4 -0
- package/build/contracts/src/challenge/ChallengeManager.sol/ChallengeManager.json +669 -0
- package/build/contracts/src/challenge/IChallengeManager.sol/IChallengeManager.dbg.json +4 -0
- package/build/contracts/src/challenge/IChallengeManager.sol/IChallengeManager.json +386 -0
- package/build/contracts/src/challenge/IChallengeResultReceiver.sol/IChallengeResultReceiver.dbg.json +4 -0
- package/build/contracts/src/challenge/IChallengeResultReceiver.sol/IChallengeResultReceiver.json +34 -0
- package/build/contracts/src/libraries/AddressAliasHelper.sol/AddressAliasHelper.dbg.json +4 -0
- package/build/contracts/src/libraries/AddressAliasHelper.sol/AddressAliasHelper.json +10 -0
- package/build/contracts/src/libraries/AdminFallbackProxy.sol/AdminFallbackProxy.dbg.json +4 -0
- package/build/contracts/src/libraries/AdminFallbackProxy.sol/AdminFallbackProxy.json +77 -0
- package/build/contracts/src/libraries/AdminFallbackProxy.sol/DoubleLogicERC1967Upgrade.dbg.json +4 -0
- package/build/contracts/src/libraries/AdminFallbackProxy.sol/DoubleLogicERC1967Upgrade.json +69 -0
- package/build/contracts/src/libraries/ArbitrumChecker.sol/ArbitrumChecker.dbg.json +4 -0
- package/build/contracts/src/libraries/ArbitrumChecker.sol/ArbitrumChecker.json +10 -0
- package/build/contracts/src/libraries/CryptographyPrimitives.sol/CryptographyPrimitives.dbg.json +4 -0
- package/build/contracts/src/libraries/CryptographyPrimitives.sol/CryptographyPrimitives.json +10 -0
- package/build/contracts/src/libraries/DelegateCallAware.sol/DelegateCallAware.dbg.json +4 -0
- package/build/contracts/src/libraries/DelegateCallAware.sol/DelegateCallAware.json +10 -0
- package/build/contracts/src/libraries/DoubleLogicUUPSUpgradeable.sol/DoubleLogicUUPSUpgradeable.dbg.json +4 -0
- package/build/contracts/src/libraries/DoubleLogicUUPSUpgradeable.sol/DoubleLogicUUPSUpgradeable.json +144 -0
- package/build/contracts/src/libraries/IGasRefunder.sol/GasRefundEnabled.dbg.json +4 -0
- package/build/contracts/src/libraries/IGasRefunder.sol/GasRefundEnabled.json +10 -0
- package/build/contracts/src/libraries/IGasRefunder.sol/IGasRefunder.dbg.json +4 -0
- package/build/contracts/src/libraries/IGasRefunder.sol/IGasRefunder.json +40 -0
- package/build/contracts/src/libraries/MerkleLib.sol/MerkleLib.dbg.json +4 -0
- package/build/contracts/src/libraries/MerkleLib.sol/MerkleLib.json +10 -0
- package/build/contracts/src/libraries/UUPSNotUpgradeable.sol/UUPSNotUpgradeable.dbg.json +4 -0
- package/build/contracts/src/libraries/UUPSNotUpgradeable.sol/UUPSNotUpgradeable.json +82 -0
- package/build/contracts/src/mocks/BridgeStub.sol/BridgeStub.dbg.json +4 -0
- package/build/contracts/src/mocks/BridgeStub.sol/BridgeStub.json +561 -0
- package/build/contracts/src/mocks/BridgeUnproxied.sol/BridgeUnproxied.dbg.json +4 -0
- package/build/contracts/src/mocks/BridgeUnproxied.sol/BridgeUnproxied.json +655 -0
- package/build/contracts/src/mocks/InboxStub.sol/InboxStub.dbg.json +4 -0
- package/build/contracts/src/mocks/InboxStub.sol/InboxStub.json +588 -0
- package/build/contracts/src/mocks/MockResultReceiver.sol/MockResultReceiver.dbg.json +4 -0
- package/build/contracts/src/mocks/MockResultReceiver.sol/MockResultReceiver.json +188 -0
- package/build/contracts/src/mocks/ProxyAdminForBinding.sol/ProxyAdminForBinding.dbg.json +4 -0
- package/build/contracts/src/mocks/ProxyAdminForBinding.sol/ProxyAdminForBinding.json +160 -0
- package/build/contracts/src/mocks/SequencerInboxStub.sol/SequencerInboxStub.dbg.json +4 -0
- package/build/contracts/src/mocks/SequencerInboxStub.sol/SequencerInboxStub.json +870 -0
- package/build/contracts/src/mocks/Simple.sol/Simple.dbg.json +4 -0
- package/build/contracts/src/mocks/Simple.sol/Simple.json +242 -0
- package/build/contracts/src/mocks/SimpleProxy.sol/SimpleProxy.dbg.json +4 -0
- package/build/contracts/src/mocks/SimpleProxy.sol/SimpleProxy.json +30 -0
- package/build/contracts/src/mocks/SingleExecutionChallenge.sol/SingleExecutionChallenge.dbg.json +4 -0
- package/build/contracts/src/mocks/SingleExecutionChallenge.sol/SingleExecutionChallenge.json +720 -0
- package/build/contracts/src/mocks/TimedOutChallengeManager.sol/TimedOutChallengeManager.dbg.json +4 -0
- package/build/contracts/src/mocks/TimedOutChallengeManager.sol/TimedOutChallengeManager.json +669 -0
- package/build/contracts/src/node-interface/NodeInterface.sol/NodeInterface.dbg.json +4 -0
- package/build/contracts/src/node-interface/NodeInterface.sol/NodeInterface.json +286 -0
- package/build/contracts/src/node-interface/NodeInterfaceDebug.sol/NodeInterfaceDebug.dbg.json +4 -0
- package/build/contracts/src/node-interface/NodeInterfaceDebug.sol/NodeInterfaceDebug.json +67 -0
- package/build/contracts/src/osp/HashProofHelper.sol/HashProofHelper.dbg.json +4 -0
- package/build/contracts/src/osp/HashProofHelper.sol/HashProofHelper.json +165 -0
- package/build/contracts/src/osp/IOneStepProofEntry.sol/IOneStepProofEntry.dbg.json +4 -0
- package/build/contracts/src/osp/IOneStepProofEntry.sol/IOneStepProofEntry.json +57 -0
- package/build/contracts/src/osp/IOneStepProofEntry.sol/OneStepProofEntryLib.dbg.json +4 -0
- package/build/contracts/src/osp/IOneStepProofEntry.sol/OneStepProofEntryLib.json +10 -0
- package/build/contracts/src/osp/IOneStepProver.sol/IOneStepProver.dbg.json +4 -0
- package/build/contracts/src/osp/IOneStepProver.sol/IOneStepProver.json +477 -0
- package/build/contracts/src/osp/OneStepProofEntry.sol/OneStepProofEntry.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProofEntry.sol/OneStepProofEntry.json +135 -0
- package/build/contracts/src/osp/OneStepProver0.sol/OneStepProver0.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProver0.sol/OneStepProver0.json +477 -0
- package/build/contracts/src/osp/OneStepProverHostIo.sol/OneStepProverHostIo.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProverHostIo.sol/OneStepProverHostIo.json +477 -0
- package/build/contracts/src/osp/OneStepProverMath.sol/OneStepProverMath.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProverMath.sol/OneStepProverMath.json +477 -0
- package/build/contracts/src/osp/OneStepProverMemory.sol/OneStepProverMemory.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProverMemory.sol/OneStepProverMemory.json +477 -0
- package/build/contracts/src/precompiles/ArbAddressTable.sol/ArbAddressTable.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbAddressTable.sol/ArbAddressTable.json +148 -0
- package/build/contracts/src/precompiles/ArbAggregator.sol/ArbAggregator.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbAggregator.sol/ArbAggregator.json +148 -0
- package/build/contracts/src/precompiles/ArbBLS.sol/ArbBLS.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbBLS.sol/ArbBLS.json +10 -0
- package/build/contracts/src/precompiles/ArbDebug.sol/ArbDebug.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbDebug.sol/ArbDebug.json +193 -0
- package/build/contracts/src/precompiles/ArbFunctionTable.sol/ArbFunctionTable.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbFunctionTable.sol/ArbFunctionTable.json +77 -0
- package/build/contracts/src/precompiles/ArbGasInfo.sol/ArbGasInfo.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbGasInfo.sol/ArbGasInfo.json +350 -0
- package/build/contracts/src/precompiles/ArbInfo.sol/ArbInfo.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbInfo.sol/ArbInfo.json +49 -0
- package/build/contracts/src/precompiles/ArbOwner.sol/ArbOwner.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbOwner.sol/ArbOwner.json +378 -0
- package/build/contracts/src/precompiles/ArbOwnerPublic.sol/ArbOwnerPublic.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbOwnerPublic.sol/ArbOwnerPublic.json +95 -0
- package/build/contracts/src/precompiles/ArbRetryableTx.sol/ArbRetryableTx.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbRetryableTx.sol/ArbRetryableTx.json +306 -0
- package/build/contracts/src/precompiles/ArbStatistics.sol/ArbStatistics.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbStatistics.sol/ArbStatistics.json +49 -0
- package/build/contracts/src/precompiles/ArbSys.sol/ArbSys.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbSys.sol/ArbSys.json +380 -0
- package/build/contracts/src/precompiles/ArbosActs.sol/ArbosActs.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbosActs.sol/ArbosActs.json +77 -0
- package/build/contracts/src/precompiles/ArbosTest.sol/ArbosTest.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbosTest.sol/ArbosTest.json +24 -0
- package/build/contracts/src/rollup/BridgeCreator.sol/BridgeCreator.dbg.json +4 -0
- package/build/contracts/src/rollup/BridgeCreator.sol/BridgeCreator.json +243 -0
- package/build/contracts/src/rollup/DeployHelper.sol/DeployHelper.dbg.json +4 -0
- package/build/contracts/src/rollup/DeployHelper.sol/DeployHelper.json +128 -0
- package/build/contracts/src/rollup/IRollupAdmin.sol/IRollupAdmin.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupAdmin.sol/IRollupAdmin.json +544 -0
- package/build/contracts/src/rollup/IRollupCore.sol/IRollupCore.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupCore.sol/IRollupCore.json +889 -0
- package/build/contracts/src/rollup/IRollupEventInbox.sol/IRollupEventInbox.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupEventInbox.sol/IRollupEventInbox.json +68 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUser.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUser.json +1428 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserAbs.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserAbs.json +1309 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserERC20.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserERC20.json +1443 -0
- package/build/contracts/src/rollup/Node.sol/NodeLib.dbg.json +4 -0
- package/build/contracts/src/rollup/Node.sol/NodeLib.json +10 -0
- package/build/contracts/src/rollup/RollupAdminLogic.sol/RollupAdminLogic.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupAdminLogic.sol/RollupAdminLogic.json +1808 -0
- package/build/contracts/src/rollup/RollupCore.sol/RollupCore.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupCore.sol/RollupCore.json +1051 -0
- package/build/contracts/src/rollup/RollupCreator.sol/RollupCreator.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupCreator.sol/RollupCreator.json +383 -0
- package/build/contracts/src/rollup/RollupEventInbox.sol/RollupEventInbox.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupEventInbox.sol/RollupEventInbox.json +110 -0
- package/build/contracts/src/rollup/RollupLib.sol/RollupLib.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupLib.sol/RollupLib.json +10 -0
- package/build/contracts/src/rollup/RollupProxy.sol/RollupProxy.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupProxy.sol/RollupProxy.json +226 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/AbsRollupUserLogic.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/AbsRollupUserLogic.json +1578 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/ERC20RollupUserLogic.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/ERC20RollupUserLogic.json +1712 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/RollupUserLogic.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/RollupUserLogic.json +1697 -0
- package/build/contracts/src/rollup/ValidatorUtils.sol/ValidatorUtils.dbg.json +4 -0
- package/build/contracts/src/rollup/ValidatorUtils.sol/ValidatorUtils.json +379 -0
- package/build/contracts/src/rollup/ValidatorWallet.sol/ValidatorWallet.dbg.json +4 -0
- package/build/contracts/src/rollup/ValidatorWallet.sol/ValidatorWallet.json +435 -0
- package/build/contracts/src/rollup/ValidatorWalletCreator.sol/ValidatorWalletCreator.dbg.json +4 -0
- package/build/contracts/src/rollup/ValidatorWalletCreator.sol/ValidatorWalletCreator.json +150 -0
- package/build/contracts/src/state/Deserialize.sol/Deserialize.dbg.json +4 -0
- package/build/contracts/src/state/Deserialize.sol/Deserialize.json +10 -0
- package/build/contracts/src/state/GlobalState.sol/GlobalStateLib.dbg.json +4 -0
- package/build/contracts/src/state/GlobalState.sol/GlobalStateLib.json +10 -0
- package/build/contracts/src/state/Instructions.sol/Instructions.dbg.json +4 -0
- package/build/contracts/src/state/Instructions.sol/Instructions.json +10 -0
- package/build/contracts/src/state/Machine.sol/MachineLib.dbg.json +4 -0
- package/build/contracts/src/state/Machine.sol/MachineLib.json +10 -0
- package/build/contracts/src/state/MerkleProof.sol/MerkleProofLib.dbg.json +4 -0
- package/build/contracts/src/state/MerkleProof.sol/MerkleProofLib.json +10 -0
- package/build/contracts/src/state/Module.sol/ModuleLib.dbg.json +4 -0
- package/build/contracts/src/state/Module.sol/ModuleLib.json +10 -0
- package/build/contracts/src/state/ModuleMemory.sol/ModuleMemoryLib.dbg.json +4 -0
- package/build/contracts/src/state/ModuleMemory.sol/ModuleMemoryLib.json +10 -0
- package/build/contracts/src/state/ModuleMemoryCompact.sol/ModuleMemoryCompactLib.dbg.json +4 -0
- package/build/contracts/src/state/ModuleMemoryCompact.sol/ModuleMemoryCompactLib.json +10 -0
- package/build/contracts/src/state/PcArray.sol/PcArrayLib.dbg.json +4 -0
- package/build/contracts/src/state/PcArray.sol/PcArrayLib.json +10 -0
- package/build/contracts/src/state/StackFrame.sol/StackFrameLib.dbg.json +4 -0
- package/build/contracts/src/state/StackFrame.sol/StackFrameLib.json +10 -0
- package/build/contracts/src/state/Value.sol/ValueLib.dbg.json +4 -0
- package/build/contracts/src/state/Value.sol/ValueLib.json +10 -0
- package/build/contracts/src/state/ValueArray.sol/ValueArrayLib.dbg.json +4 -0
- package/build/contracts/src/state/ValueArray.sol/ValueArrayLib.json +10 -0
- package/build/contracts/src/state/ValueStack.sol/ValueStackLib.dbg.json +4 -0
- package/build/contracts/src/state/ValueStack.sol/ValueStackLib.json +10 -0
- package/build/contracts/src/test-helpers/BridgeTester.sol/BridgeTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/BridgeTester.sol/BridgeTester.json +603 -0
- package/build/contracts/src/test-helpers/CryptographyPrimitivesTester.sol/CryptographyPrimitivesTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/CryptographyPrimitivesTester.sol/CryptographyPrimitivesTester.json +54 -0
- package/build/contracts/src/test-helpers/MessageTester.sol/MessageTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/MessageTester.sol/MessageTester.json +84 -0
- package/build/contracts/src/test-helpers/OutboxWithoutOptTester.sol/OutboxWithoutOptTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/OutboxWithoutOptTester.sol/OutboxWithoutOptTester.json +520 -0
- package/build/contracts/src/test-helpers/RollupMock.sol/RollupMock.dbg.json +4 -0
- package/build/contracts/src/test-helpers/RollupMock.sol/RollupMock.json +49 -0
- package/build/contracts/src/test-helpers/ValueArrayTester.sol/ValueArrayTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/ValueArrayTester.sol/ValueArrayTester.json +18 -0
- package/package.json +4 -2
@@ -0,0 +1,814 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "SequencerInbox",
|
4
|
+
"sourceName": "src/bridge/SequencerInbox.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [],
|
8
|
+
"name": "AlreadyInit",
|
9
|
+
"type": "error"
|
10
|
+
},
|
11
|
+
{
|
12
|
+
"inputs": [
|
13
|
+
{
|
14
|
+
"internalType": "bytes32",
|
15
|
+
"name": "",
|
16
|
+
"type": "bytes32"
|
17
|
+
}
|
18
|
+
],
|
19
|
+
"name": "AlreadyValidDASKeyset",
|
20
|
+
"type": "error"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"inputs": [
|
24
|
+
{
|
25
|
+
"internalType": "uint256",
|
26
|
+
"name": "stored",
|
27
|
+
"type": "uint256"
|
28
|
+
},
|
29
|
+
{
|
30
|
+
"internalType": "uint256",
|
31
|
+
"name": "received",
|
32
|
+
"type": "uint256"
|
33
|
+
}
|
34
|
+
],
|
35
|
+
"name": "BadSequencerNumber",
|
36
|
+
"type": "error"
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"inputs": [],
|
40
|
+
"name": "DataNotAuthenticated",
|
41
|
+
"type": "error"
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"inputs": [
|
45
|
+
{
|
46
|
+
"internalType": "uint256",
|
47
|
+
"name": "dataLength",
|
48
|
+
"type": "uint256"
|
49
|
+
},
|
50
|
+
{
|
51
|
+
"internalType": "uint256",
|
52
|
+
"name": "maxDataLength",
|
53
|
+
"type": "uint256"
|
54
|
+
}
|
55
|
+
],
|
56
|
+
"name": "DataTooLarge",
|
57
|
+
"type": "error"
|
58
|
+
},
|
59
|
+
{
|
60
|
+
"inputs": [],
|
61
|
+
"name": "DelayedBackwards",
|
62
|
+
"type": "error"
|
63
|
+
},
|
64
|
+
{
|
65
|
+
"inputs": [],
|
66
|
+
"name": "DelayedTooFar",
|
67
|
+
"type": "error"
|
68
|
+
},
|
69
|
+
{
|
70
|
+
"inputs": [],
|
71
|
+
"name": "ForceIncludeBlockTooSoon",
|
72
|
+
"type": "error"
|
73
|
+
},
|
74
|
+
{
|
75
|
+
"inputs": [],
|
76
|
+
"name": "ForceIncludeTimeTooSoon",
|
77
|
+
"type": "error"
|
78
|
+
},
|
79
|
+
{
|
80
|
+
"inputs": [],
|
81
|
+
"name": "HadZeroInit",
|
82
|
+
"type": "error"
|
83
|
+
},
|
84
|
+
{
|
85
|
+
"inputs": [],
|
86
|
+
"name": "IncorrectMessagePreimage",
|
87
|
+
"type": "error"
|
88
|
+
},
|
89
|
+
{
|
90
|
+
"inputs": [
|
91
|
+
{
|
92
|
+
"internalType": "bytes32",
|
93
|
+
"name": "",
|
94
|
+
"type": "bytes32"
|
95
|
+
}
|
96
|
+
],
|
97
|
+
"name": "NoSuchKeyset",
|
98
|
+
"type": "error"
|
99
|
+
},
|
100
|
+
{
|
101
|
+
"inputs": [],
|
102
|
+
"name": "NotBatchPoster",
|
103
|
+
"type": "error"
|
104
|
+
},
|
105
|
+
{
|
106
|
+
"inputs": [],
|
107
|
+
"name": "NotForked",
|
108
|
+
"type": "error"
|
109
|
+
},
|
110
|
+
{
|
111
|
+
"inputs": [],
|
112
|
+
"name": "NotOrigin",
|
113
|
+
"type": "error"
|
114
|
+
},
|
115
|
+
{
|
116
|
+
"inputs": [
|
117
|
+
{
|
118
|
+
"internalType": "address",
|
119
|
+
"name": "sender",
|
120
|
+
"type": "address"
|
121
|
+
},
|
122
|
+
{
|
123
|
+
"internalType": "address",
|
124
|
+
"name": "owner",
|
125
|
+
"type": "address"
|
126
|
+
}
|
127
|
+
],
|
128
|
+
"name": "NotOwner",
|
129
|
+
"type": "error"
|
130
|
+
},
|
131
|
+
{
|
132
|
+
"anonymous": false,
|
133
|
+
"inputs": [
|
134
|
+
{
|
135
|
+
"indexed": true,
|
136
|
+
"internalType": "uint256",
|
137
|
+
"name": "messageNum",
|
138
|
+
"type": "uint256"
|
139
|
+
},
|
140
|
+
{
|
141
|
+
"indexed": false,
|
142
|
+
"internalType": "bytes",
|
143
|
+
"name": "data",
|
144
|
+
"type": "bytes"
|
145
|
+
}
|
146
|
+
],
|
147
|
+
"name": "InboxMessageDelivered",
|
148
|
+
"type": "event"
|
149
|
+
},
|
150
|
+
{
|
151
|
+
"anonymous": false,
|
152
|
+
"inputs": [
|
153
|
+
{
|
154
|
+
"indexed": true,
|
155
|
+
"internalType": "uint256",
|
156
|
+
"name": "messageNum",
|
157
|
+
"type": "uint256"
|
158
|
+
}
|
159
|
+
],
|
160
|
+
"name": "InboxMessageDeliveredFromOrigin",
|
161
|
+
"type": "event"
|
162
|
+
},
|
163
|
+
{
|
164
|
+
"anonymous": false,
|
165
|
+
"inputs": [
|
166
|
+
{
|
167
|
+
"indexed": true,
|
168
|
+
"internalType": "bytes32",
|
169
|
+
"name": "keysetHash",
|
170
|
+
"type": "bytes32"
|
171
|
+
}
|
172
|
+
],
|
173
|
+
"name": "InvalidateKeyset",
|
174
|
+
"type": "event"
|
175
|
+
},
|
176
|
+
{
|
177
|
+
"anonymous": false,
|
178
|
+
"inputs": [
|
179
|
+
{
|
180
|
+
"indexed": true,
|
181
|
+
"internalType": "uint256",
|
182
|
+
"name": "id",
|
183
|
+
"type": "uint256"
|
184
|
+
}
|
185
|
+
],
|
186
|
+
"name": "OwnerFunctionCalled",
|
187
|
+
"type": "event"
|
188
|
+
},
|
189
|
+
{
|
190
|
+
"anonymous": false,
|
191
|
+
"inputs": [
|
192
|
+
{
|
193
|
+
"indexed": true,
|
194
|
+
"internalType": "uint256",
|
195
|
+
"name": "batchSequenceNumber",
|
196
|
+
"type": "uint256"
|
197
|
+
},
|
198
|
+
{
|
199
|
+
"indexed": false,
|
200
|
+
"internalType": "bytes",
|
201
|
+
"name": "data",
|
202
|
+
"type": "bytes"
|
203
|
+
}
|
204
|
+
],
|
205
|
+
"name": "SequencerBatchData",
|
206
|
+
"type": "event"
|
207
|
+
},
|
208
|
+
{
|
209
|
+
"anonymous": false,
|
210
|
+
"inputs": [
|
211
|
+
{
|
212
|
+
"indexed": true,
|
213
|
+
"internalType": "uint256",
|
214
|
+
"name": "batchSequenceNumber",
|
215
|
+
"type": "uint256"
|
216
|
+
},
|
217
|
+
{
|
218
|
+
"indexed": true,
|
219
|
+
"internalType": "bytes32",
|
220
|
+
"name": "beforeAcc",
|
221
|
+
"type": "bytes32"
|
222
|
+
},
|
223
|
+
{
|
224
|
+
"indexed": true,
|
225
|
+
"internalType": "bytes32",
|
226
|
+
"name": "afterAcc",
|
227
|
+
"type": "bytes32"
|
228
|
+
},
|
229
|
+
{
|
230
|
+
"indexed": false,
|
231
|
+
"internalType": "bytes32",
|
232
|
+
"name": "delayedAcc",
|
233
|
+
"type": "bytes32"
|
234
|
+
},
|
235
|
+
{
|
236
|
+
"indexed": false,
|
237
|
+
"internalType": "uint256",
|
238
|
+
"name": "afterDelayedMessagesRead",
|
239
|
+
"type": "uint256"
|
240
|
+
},
|
241
|
+
{
|
242
|
+
"components": [
|
243
|
+
{
|
244
|
+
"internalType": "uint64",
|
245
|
+
"name": "minTimestamp",
|
246
|
+
"type": "uint64"
|
247
|
+
},
|
248
|
+
{
|
249
|
+
"internalType": "uint64",
|
250
|
+
"name": "maxTimestamp",
|
251
|
+
"type": "uint64"
|
252
|
+
},
|
253
|
+
{
|
254
|
+
"internalType": "uint64",
|
255
|
+
"name": "minBlockNumber",
|
256
|
+
"type": "uint64"
|
257
|
+
},
|
258
|
+
{
|
259
|
+
"internalType": "uint64",
|
260
|
+
"name": "maxBlockNumber",
|
261
|
+
"type": "uint64"
|
262
|
+
}
|
263
|
+
],
|
264
|
+
"indexed": false,
|
265
|
+
"internalType": "struct ISequencerInbox.TimeBounds",
|
266
|
+
"name": "timeBounds",
|
267
|
+
"type": "tuple"
|
268
|
+
},
|
269
|
+
{
|
270
|
+
"indexed": false,
|
271
|
+
"internalType": "enum ISequencerInbox.BatchDataLocation",
|
272
|
+
"name": "dataLocation",
|
273
|
+
"type": "uint8"
|
274
|
+
}
|
275
|
+
],
|
276
|
+
"name": "SequencerBatchDelivered",
|
277
|
+
"type": "event"
|
278
|
+
},
|
279
|
+
{
|
280
|
+
"anonymous": false,
|
281
|
+
"inputs": [
|
282
|
+
{
|
283
|
+
"indexed": true,
|
284
|
+
"internalType": "bytes32",
|
285
|
+
"name": "keysetHash",
|
286
|
+
"type": "bytes32"
|
287
|
+
},
|
288
|
+
{
|
289
|
+
"indexed": false,
|
290
|
+
"internalType": "bytes",
|
291
|
+
"name": "keysetBytes",
|
292
|
+
"type": "bytes"
|
293
|
+
}
|
294
|
+
],
|
295
|
+
"name": "SetValidKeyset",
|
296
|
+
"type": "event"
|
297
|
+
},
|
298
|
+
{
|
299
|
+
"inputs": [],
|
300
|
+
"name": "DATA_AUTHENTICATED_FLAG",
|
301
|
+
"outputs": [
|
302
|
+
{
|
303
|
+
"internalType": "bytes1",
|
304
|
+
"name": "",
|
305
|
+
"type": "bytes1"
|
306
|
+
}
|
307
|
+
],
|
308
|
+
"stateMutability": "view",
|
309
|
+
"type": "function"
|
310
|
+
},
|
311
|
+
{
|
312
|
+
"inputs": [],
|
313
|
+
"name": "HEADER_LENGTH",
|
314
|
+
"outputs": [
|
315
|
+
{
|
316
|
+
"internalType": "uint256",
|
317
|
+
"name": "",
|
318
|
+
"type": "uint256"
|
319
|
+
}
|
320
|
+
],
|
321
|
+
"stateMutability": "view",
|
322
|
+
"type": "function"
|
323
|
+
},
|
324
|
+
{
|
325
|
+
"inputs": [
|
326
|
+
{
|
327
|
+
"internalType": "uint256",
|
328
|
+
"name": "sequenceNumber",
|
329
|
+
"type": "uint256"
|
330
|
+
},
|
331
|
+
{
|
332
|
+
"internalType": "bytes",
|
333
|
+
"name": "data",
|
334
|
+
"type": "bytes"
|
335
|
+
},
|
336
|
+
{
|
337
|
+
"internalType": "uint256",
|
338
|
+
"name": "afterDelayedMessagesRead",
|
339
|
+
"type": "uint256"
|
340
|
+
},
|
341
|
+
{
|
342
|
+
"internalType": "contract IGasRefunder",
|
343
|
+
"name": "gasRefunder",
|
344
|
+
"type": "address"
|
345
|
+
},
|
346
|
+
{
|
347
|
+
"internalType": "uint256",
|
348
|
+
"name": "prevMessageCount",
|
349
|
+
"type": "uint256"
|
350
|
+
},
|
351
|
+
{
|
352
|
+
"internalType": "uint256",
|
353
|
+
"name": "newMessageCount",
|
354
|
+
"type": "uint256"
|
355
|
+
}
|
356
|
+
],
|
357
|
+
"name": "addSequencerL2Batch",
|
358
|
+
"outputs": [],
|
359
|
+
"stateMutability": "nonpayable",
|
360
|
+
"type": "function"
|
361
|
+
},
|
362
|
+
{
|
363
|
+
"inputs": [
|
364
|
+
{
|
365
|
+
"internalType": "uint256",
|
366
|
+
"name": "sequenceNumber",
|
367
|
+
"type": "uint256"
|
368
|
+
},
|
369
|
+
{
|
370
|
+
"internalType": "bytes",
|
371
|
+
"name": "data",
|
372
|
+
"type": "bytes"
|
373
|
+
},
|
374
|
+
{
|
375
|
+
"internalType": "uint256",
|
376
|
+
"name": "afterDelayedMessagesRead",
|
377
|
+
"type": "uint256"
|
378
|
+
},
|
379
|
+
{
|
380
|
+
"internalType": "contract IGasRefunder",
|
381
|
+
"name": "gasRefunder",
|
382
|
+
"type": "address"
|
383
|
+
}
|
384
|
+
],
|
385
|
+
"name": "addSequencerL2BatchFromOrigin",
|
386
|
+
"outputs": [],
|
387
|
+
"stateMutability": "nonpayable",
|
388
|
+
"type": "function"
|
389
|
+
},
|
390
|
+
{
|
391
|
+
"inputs": [
|
392
|
+
{
|
393
|
+
"internalType": "uint256",
|
394
|
+
"name": "sequenceNumber",
|
395
|
+
"type": "uint256"
|
396
|
+
},
|
397
|
+
{
|
398
|
+
"internalType": "bytes",
|
399
|
+
"name": "data",
|
400
|
+
"type": "bytes"
|
401
|
+
},
|
402
|
+
{
|
403
|
+
"internalType": "uint256",
|
404
|
+
"name": "afterDelayedMessagesRead",
|
405
|
+
"type": "uint256"
|
406
|
+
},
|
407
|
+
{
|
408
|
+
"internalType": "contract IGasRefunder",
|
409
|
+
"name": "gasRefunder",
|
410
|
+
"type": "address"
|
411
|
+
},
|
412
|
+
{
|
413
|
+
"internalType": "uint256",
|
414
|
+
"name": "prevMessageCount",
|
415
|
+
"type": "uint256"
|
416
|
+
},
|
417
|
+
{
|
418
|
+
"internalType": "uint256",
|
419
|
+
"name": "newMessageCount",
|
420
|
+
"type": "uint256"
|
421
|
+
}
|
422
|
+
],
|
423
|
+
"name": "addSequencerL2BatchFromOrigin",
|
424
|
+
"outputs": [],
|
425
|
+
"stateMutability": "nonpayable",
|
426
|
+
"type": "function"
|
427
|
+
},
|
428
|
+
{
|
429
|
+
"inputs": [],
|
430
|
+
"name": "batchCount",
|
431
|
+
"outputs": [
|
432
|
+
{
|
433
|
+
"internalType": "uint256",
|
434
|
+
"name": "",
|
435
|
+
"type": "uint256"
|
436
|
+
}
|
437
|
+
],
|
438
|
+
"stateMutability": "view",
|
439
|
+
"type": "function"
|
440
|
+
},
|
441
|
+
{
|
442
|
+
"inputs": [],
|
443
|
+
"name": "bridge",
|
444
|
+
"outputs": [
|
445
|
+
{
|
446
|
+
"internalType": "contract IBridge",
|
447
|
+
"name": "",
|
448
|
+
"type": "address"
|
449
|
+
}
|
450
|
+
],
|
451
|
+
"stateMutability": "view",
|
452
|
+
"type": "function"
|
453
|
+
},
|
454
|
+
{
|
455
|
+
"inputs": [
|
456
|
+
{
|
457
|
+
"internalType": "bytes32",
|
458
|
+
"name": "",
|
459
|
+
"type": "bytes32"
|
460
|
+
}
|
461
|
+
],
|
462
|
+
"name": "dasKeySetInfo",
|
463
|
+
"outputs": [
|
464
|
+
{
|
465
|
+
"internalType": "bool",
|
466
|
+
"name": "isValidKeyset",
|
467
|
+
"type": "bool"
|
468
|
+
},
|
469
|
+
{
|
470
|
+
"internalType": "uint64",
|
471
|
+
"name": "creationBlock",
|
472
|
+
"type": "uint64"
|
473
|
+
}
|
474
|
+
],
|
475
|
+
"stateMutability": "view",
|
476
|
+
"type": "function"
|
477
|
+
},
|
478
|
+
{
|
479
|
+
"inputs": [
|
480
|
+
{
|
481
|
+
"internalType": "uint256",
|
482
|
+
"name": "_totalDelayedMessagesRead",
|
483
|
+
"type": "uint256"
|
484
|
+
},
|
485
|
+
{
|
486
|
+
"internalType": "uint8",
|
487
|
+
"name": "kind",
|
488
|
+
"type": "uint8"
|
489
|
+
},
|
490
|
+
{
|
491
|
+
"internalType": "uint64[2]",
|
492
|
+
"name": "l1BlockAndTime",
|
493
|
+
"type": "uint64[2]"
|
494
|
+
},
|
495
|
+
{
|
496
|
+
"internalType": "uint256",
|
497
|
+
"name": "baseFeeL1",
|
498
|
+
"type": "uint256"
|
499
|
+
},
|
500
|
+
{
|
501
|
+
"internalType": "address",
|
502
|
+
"name": "sender",
|
503
|
+
"type": "address"
|
504
|
+
},
|
505
|
+
{
|
506
|
+
"internalType": "bytes32",
|
507
|
+
"name": "messageDataHash",
|
508
|
+
"type": "bytes32"
|
509
|
+
}
|
510
|
+
],
|
511
|
+
"name": "forceInclusion",
|
512
|
+
"outputs": [],
|
513
|
+
"stateMutability": "nonpayable",
|
514
|
+
"type": "function"
|
515
|
+
},
|
516
|
+
{
|
517
|
+
"inputs": [
|
518
|
+
{
|
519
|
+
"internalType": "bytes32",
|
520
|
+
"name": "ksHash",
|
521
|
+
"type": "bytes32"
|
522
|
+
}
|
523
|
+
],
|
524
|
+
"name": "getKeysetCreationBlock",
|
525
|
+
"outputs": [
|
526
|
+
{
|
527
|
+
"internalType": "uint256",
|
528
|
+
"name": "",
|
529
|
+
"type": "uint256"
|
530
|
+
}
|
531
|
+
],
|
532
|
+
"stateMutability": "view",
|
533
|
+
"type": "function"
|
534
|
+
},
|
535
|
+
{
|
536
|
+
"inputs": [
|
537
|
+
{
|
538
|
+
"internalType": "uint256",
|
539
|
+
"name": "index",
|
540
|
+
"type": "uint256"
|
541
|
+
}
|
542
|
+
],
|
543
|
+
"name": "inboxAccs",
|
544
|
+
"outputs": [
|
545
|
+
{
|
546
|
+
"internalType": "bytes32",
|
547
|
+
"name": "",
|
548
|
+
"type": "bytes32"
|
549
|
+
}
|
550
|
+
],
|
551
|
+
"stateMutability": "view",
|
552
|
+
"type": "function"
|
553
|
+
},
|
554
|
+
{
|
555
|
+
"inputs": [
|
556
|
+
{
|
557
|
+
"internalType": "contract IBridge",
|
558
|
+
"name": "bridge_",
|
559
|
+
"type": "address"
|
560
|
+
},
|
561
|
+
{
|
562
|
+
"components": [
|
563
|
+
{
|
564
|
+
"internalType": "uint256",
|
565
|
+
"name": "delayBlocks",
|
566
|
+
"type": "uint256"
|
567
|
+
},
|
568
|
+
{
|
569
|
+
"internalType": "uint256",
|
570
|
+
"name": "futureBlocks",
|
571
|
+
"type": "uint256"
|
572
|
+
},
|
573
|
+
{
|
574
|
+
"internalType": "uint256",
|
575
|
+
"name": "delaySeconds",
|
576
|
+
"type": "uint256"
|
577
|
+
},
|
578
|
+
{
|
579
|
+
"internalType": "uint256",
|
580
|
+
"name": "futureSeconds",
|
581
|
+
"type": "uint256"
|
582
|
+
}
|
583
|
+
],
|
584
|
+
"internalType": "struct ISequencerInbox.MaxTimeVariation",
|
585
|
+
"name": "maxTimeVariation_",
|
586
|
+
"type": "tuple"
|
587
|
+
}
|
588
|
+
],
|
589
|
+
"name": "initialize",
|
590
|
+
"outputs": [],
|
591
|
+
"stateMutability": "nonpayable",
|
592
|
+
"type": "function"
|
593
|
+
},
|
594
|
+
{
|
595
|
+
"inputs": [
|
596
|
+
{
|
597
|
+
"internalType": "bytes32",
|
598
|
+
"name": "ksHash",
|
599
|
+
"type": "bytes32"
|
600
|
+
}
|
601
|
+
],
|
602
|
+
"name": "invalidateKeysetHash",
|
603
|
+
"outputs": [],
|
604
|
+
"stateMutability": "nonpayable",
|
605
|
+
"type": "function"
|
606
|
+
},
|
607
|
+
{
|
608
|
+
"inputs": [
|
609
|
+
{
|
610
|
+
"internalType": "address",
|
611
|
+
"name": "",
|
612
|
+
"type": "address"
|
613
|
+
}
|
614
|
+
],
|
615
|
+
"name": "isBatchPoster",
|
616
|
+
"outputs": [
|
617
|
+
{
|
618
|
+
"internalType": "bool",
|
619
|
+
"name": "",
|
620
|
+
"type": "bool"
|
621
|
+
}
|
622
|
+
],
|
623
|
+
"stateMutability": "view",
|
624
|
+
"type": "function"
|
625
|
+
},
|
626
|
+
{
|
627
|
+
"inputs": [
|
628
|
+
{
|
629
|
+
"internalType": "address",
|
630
|
+
"name": "",
|
631
|
+
"type": "address"
|
632
|
+
}
|
633
|
+
],
|
634
|
+
"name": "isSequencer",
|
635
|
+
"outputs": [
|
636
|
+
{
|
637
|
+
"internalType": "bool",
|
638
|
+
"name": "",
|
639
|
+
"type": "bool"
|
640
|
+
}
|
641
|
+
],
|
642
|
+
"stateMutability": "view",
|
643
|
+
"type": "function"
|
644
|
+
},
|
645
|
+
{
|
646
|
+
"inputs": [
|
647
|
+
{
|
648
|
+
"internalType": "bytes32",
|
649
|
+
"name": "ksHash",
|
650
|
+
"type": "bytes32"
|
651
|
+
}
|
652
|
+
],
|
653
|
+
"name": "isValidKeysetHash",
|
654
|
+
"outputs": [
|
655
|
+
{
|
656
|
+
"internalType": "bool",
|
657
|
+
"name": "",
|
658
|
+
"type": "bool"
|
659
|
+
}
|
660
|
+
],
|
661
|
+
"stateMutability": "view",
|
662
|
+
"type": "function"
|
663
|
+
},
|
664
|
+
{
|
665
|
+
"inputs": [],
|
666
|
+
"name": "maxTimeVariation",
|
667
|
+
"outputs": [
|
668
|
+
{
|
669
|
+
"internalType": "uint256",
|
670
|
+
"name": "delayBlocks",
|
671
|
+
"type": "uint256"
|
672
|
+
},
|
673
|
+
{
|
674
|
+
"internalType": "uint256",
|
675
|
+
"name": "futureBlocks",
|
676
|
+
"type": "uint256"
|
677
|
+
},
|
678
|
+
{
|
679
|
+
"internalType": "uint256",
|
680
|
+
"name": "delaySeconds",
|
681
|
+
"type": "uint256"
|
682
|
+
},
|
683
|
+
{
|
684
|
+
"internalType": "uint256",
|
685
|
+
"name": "futureSeconds",
|
686
|
+
"type": "uint256"
|
687
|
+
}
|
688
|
+
],
|
689
|
+
"stateMutability": "view",
|
690
|
+
"type": "function"
|
691
|
+
},
|
692
|
+
{
|
693
|
+
"inputs": [],
|
694
|
+
"name": "removeDelayAfterFork",
|
695
|
+
"outputs": [],
|
696
|
+
"stateMutability": "nonpayable",
|
697
|
+
"type": "function"
|
698
|
+
},
|
699
|
+
{
|
700
|
+
"inputs": [],
|
701
|
+
"name": "rollup",
|
702
|
+
"outputs": [
|
703
|
+
{
|
704
|
+
"internalType": "contract IOwnable",
|
705
|
+
"name": "",
|
706
|
+
"type": "address"
|
707
|
+
}
|
708
|
+
],
|
709
|
+
"stateMutability": "view",
|
710
|
+
"type": "function"
|
711
|
+
},
|
712
|
+
{
|
713
|
+
"inputs": [
|
714
|
+
{
|
715
|
+
"internalType": "address",
|
716
|
+
"name": "addr",
|
717
|
+
"type": "address"
|
718
|
+
},
|
719
|
+
{
|
720
|
+
"internalType": "bool",
|
721
|
+
"name": "isBatchPoster_",
|
722
|
+
"type": "bool"
|
723
|
+
}
|
724
|
+
],
|
725
|
+
"name": "setIsBatchPoster",
|
726
|
+
"outputs": [],
|
727
|
+
"stateMutability": "nonpayable",
|
728
|
+
"type": "function"
|
729
|
+
},
|
730
|
+
{
|
731
|
+
"inputs": [
|
732
|
+
{
|
733
|
+
"internalType": "address",
|
734
|
+
"name": "addr",
|
735
|
+
"type": "address"
|
736
|
+
},
|
737
|
+
{
|
738
|
+
"internalType": "bool",
|
739
|
+
"name": "isSequencer_",
|
740
|
+
"type": "bool"
|
741
|
+
}
|
742
|
+
],
|
743
|
+
"name": "setIsSequencer",
|
744
|
+
"outputs": [],
|
745
|
+
"stateMutability": "nonpayable",
|
746
|
+
"type": "function"
|
747
|
+
},
|
748
|
+
{
|
749
|
+
"inputs": [
|
750
|
+
{
|
751
|
+
"components": [
|
752
|
+
{
|
753
|
+
"internalType": "uint256",
|
754
|
+
"name": "delayBlocks",
|
755
|
+
"type": "uint256"
|
756
|
+
},
|
757
|
+
{
|
758
|
+
"internalType": "uint256",
|
759
|
+
"name": "futureBlocks",
|
760
|
+
"type": "uint256"
|
761
|
+
},
|
762
|
+
{
|
763
|
+
"internalType": "uint256",
|
764
|
+
"name": "delaySeconds",
|
765
|
+
"type": "uint256"
|
766
|
+
},
|
767
|
+
{
|
768
|
+
"internalType": "uint256",
|
769
|
+
"name": "futureSeconds",
|
770
|
+
"type": "uint256"
|
771
|
+
}
|
772
|
+
],
|
773
|
+
"internalType": "struct ISequencerInbox.MaxTimeVariation",
|
774
|
+
"name": "maxTimeVariation_",
|
775
|
+
"type": "tuple"
|
776
|
+
}
|
777
|
+
],
|
778
|
+
"name": "setMaxTimeVariation",
|
779
|
+
"outputs": [],
|
780
|
+
"stateMutability": "nonpayable",
|
781
|
+
"type": "function"
|
782
|
+
},
|
783
|
+
{
|
784
|
+
"inputs": [
|
785
|
+
{
|
786
|
+
"internalType": "bytes",
|
787
|
+
"name": "keysetBytes",
|
788
|
+
"type": "bytes"
|
789
|
+
}
|
790
|
+
],
|
791
|
+
"name": "setValidKeyset",
|
792
|
+
"outputs": [],
|
793
|
+
"stateMutability": "nonpayable",
|
794
|
+
"type": "function"
|
795
|
+
},
|
796
|
+
{
|
797
|
+
"inputs": [],
|
798
|
+
"name": "totalDelayedMessagesRead",
|
799
|
+
"outputs": [
|
800
|
+
{
|
801
|
+
"internalType": "uint256",
|
802
|
+
"name": "",
|
803
|
+
"type": "uint256"
|
804
|
+
}
|
805
|
+
],
|
806
|
+
"stateMutability": "view",
|
807
|
+
"type": "function"
|
808
|
+
}
|
809
|
+
],
|
810
|
+
"bytecode": "0x60e0604052306080524660a052620000226200003b602090811b620017ee17901c565b151560c0523480156200003457600080fd5b5062000116565b60408051600481526024810182526020810180516001600160e01b03166302881c7960e11b1790529051600091829182916064916200007b9190620000d8565b600060405180830381855afa9150503d8060008114620000b8576040519150601f19603f3d011682016040523d82523d6000602084013e620000bd565b606091505b5091509150818015620000d1575080516020145b9250505090565b6000825160005b81811015620000fb5760208186018101518583015201620000df565b818111156200010b576000828501525b509190910192915050565b60805160a05160c05161275c6200014d600039600081816110e30152611b7501526000610ddb01526000610465015261275c6000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806384420860116100c3578063d9dd67ab1161007c578063d9dd67ab14610334578063e0bc972914610347578063e5a358c81461035a578063e78cea921461037e578063ebea461d14610391578063f1981578146103c757600080fd5b806384420860146102b55780638f111f3c146102c857806396cc5c78146102db578063b31761f8146102e3578063cb23bcb5146102f6578063d1ce8da81461032157600080fd5b80636d46e987116101155780636d46e987146101ee5780636e7df3e7146102115780636f12b0c914610224578063715ea34b1461023757806371c3e6fe146102895780637fa3a40e146102ac57600080fd5b806306f130561461015d5780631637be48146101785780631f7a92b2146101ab5780631f956632146101c0578063258f0495146101d357806327957a49146101e6575b600080fd5b6101656103da565b6040519081526020015b60405180910390f35b61019b610186366004611f87565b60009081526008602052604090205460ff1690565b604051901515815260200161016f565b6101be6101b9366004611fb8565b61045a565b005b6101be6101ce366004612007565b610612565b6101656101e1366004611f87565b610718565b610165602881565b61019b6101fc366004612040565b60096020526000908152604090205460ff1681565b6101be61021f366004612007565b610781565b6101be6102323660046120ac565b610887565b61026a610245366004611f87565b60086020526000908152604090205460ff81169061010090046001600160401b031682565b6040805192151583526001600160401b0390911660208301520161016f565b61019b610297366004612040565b60036020526000908152604090205460ff1681565b61016560005481565b6101be6102c3366004611f87565b610a76565b6101be6102d6366004612116565b610bc9565b6101be610dd8565b6101be6102f1366004612192565b610e4f565b600254610309906001600160a01b031681565b6040516001600160a01b03909116815260200161016f565b6101be61032f366004612205565b610f4f565b610165610342366004611f87565b611233565b6101be610355366004612116565b6112b6565b610365600160fe1b81565b6040516001600160f81b0319909116815260200161016f565b600154610309906001600160a01b031681565b6004546005546006546007546103a79392919084565b60408051948552602085019390935291830152606082015260800161016f565b6101be6103d5366004612246565b61140b565b600154604080516221048360e21b815290516000926001600160a01b0316916284120c916004808301926020929190829003018186803b15801561041d57600080fd5b505afa158015610431573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061045591906122b6565b905090565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156104ed5760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b19195b1959d85d1958d85b1b60a21b60648201526084015b60405180910390fd5b6001546001600160a01b03161561051757604051633bcd329760e21b815260040160405180910390fd5b6001600160a01b03821661053e57604051631ad0f74360e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b0384169081179091556040805163cb23bcb560e01b8152905163cb23bcb591600480820192602092909190829003018186803b15801561059257600080fd5b505afa1580156105a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ca91906122cf565b600280546001600160a01b0319166001600160a01b03929092169190911790558035600490815560208201356005556040820135600655606082013560075581905b50505050565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561066057600080fd5b505afa158015610674573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061069891906122cf565b6001600160a01b0316336001600160a01b0316146106da57600254604051631194af8760e11b81526104e49133916001600160a01b03909116906004016122ec565b6001600160a01b038216600090815260096020526040808220805460ff19168415151790555160049160008051602061270783398151915291a25050565b600081815260086020908152604080832081518083019092525460ff81161515825261010090046001600160401b03169181018290529061076e5760405162f20c5d60e01b8152600481018490526024016104e4565b602001516001600160401b031692915050565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156107cf57600080fd5b505afa1580156107e3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061080791906122cf565b6001600160a01b0316336001600160a01b03161461084957600254604051631194af8760e11b81526104e49133916001600160a01b03909116906004016122ec565b6001600160a01b038216600090815260036020526040808220805460ff19168415151790555160019160008051602061270783398151915291a25050565b8060005a90503332146108ad5760405163feb3d07160e01b815260040160405180910390fd5b3360009081526003602052604090205460ff166108dd57604051632dd9fc9760e01b815260040160405180910390fd5b6000806108eb888888611886565b90925090506000808080610902868b8d84806119f9565b93509350935093508c84146109345760405163ac7411c960e01b815260048101859052602481018e90526044016104e4565b80838e6000805160206126e7833981519152856000548a600060405161095d9493929190612306565b60405180910390a4505050506001600160a01b038416159150610a6d905057366000602061098c83601f612390565b61099691906123a8565b90506102006109a66002836124ae565b6109b091906123a8565b6109bb8260066124bd565b6109c59190612390565b6109cf9084612390565b92503332146109dd57600091505b836001600160a01b031663e3db8a49335a6109f890876124dc565b856040518463ffffffff1660e01b8152600401610a17939291906124f3565b602060405180830381600087803b158015610a3157600080fd5b505af1158015610a45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a699190612514565b5050505b50505050505050565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ac457600080fd5b505afa158015610ad8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afc91906122cf565b6001600160a01b0316336001600160a01b031614610b3e57600254604051631194af8760e11b81526104e49133916001600160a01b03909116906004016122ec565b60008181526008602052604090205460ff16610b6f5760405162f20c5d60e01b8152600481018290526024016104e4565b600081815260086020526040808220805460ff191690555182917f5cb4218b272fd214168ac43e90fb4d05d6c36f0b17ffb4c2dd07c234d744eb2a91a260405160039060008051602061270783398151915290600090a250565b8260005a9050333214610bef5760405163feb3d07160e01b815260040160405180910390fd5b3360009081526003602052604090205460ff16610c1f57604051632dd9fc9760e01b815260040160405180910390fd5b600080610c2d8a8a8a611886565b90925090508a81838b8b8a8a6000808080610c4b89888a89896119f9565b93509350935093508a8414158015610c6557506000198b14155b15610c8d5760405163ac7411c960e01b815260048101859052602481018c90526044016104e4565b8083856000805160206126e7833981519152856000548f6000604051610cb69493929190612306565b60405180910390a4505050506001600160a01b038b16159850610dcd975050505050505050573660006020610cec83601f612390565b610cf691906123a8565b9050610200610d066002836124ae565b610d1091906123a8565b610d1b8260066124bd565b610d259190612390565b610d2f9084612390565b9250333214610d3d57600091505b836001600160a01b031663e3db8a49335a610d5890876124dc565b856040518463ffffffff1660e01b8152600401610d77939291906124f3565b602060405180830381600087803b158015610d9157600080fd5b505af1158015610da5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc99190612514565b5050505b505050505050505050565b467f00000000000000000000000000000000000000000000000000000000000000001415610e1957604051635180dd8360e11b815260040160405180910390fd5b60408051608081018252600180825260208201819052918101829052606001819052600481905560058190556006819055600755565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015610e9d57600080fd5b505afa158015610eb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed591906122cf565b6001600160a01b0316336001600160a01b031614610f1757600254604051631194af8760e11b81526104e49133916001600160a01b03909116906004016122ec565b80516004556020810151600555604080820151600655606082015160075551600090600080516020612707833981519152908290a250565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015610f9d57600080fd5b505afa158015610fb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd591906122cf565b6001600160a01b0316336001600160a01b03161461101757600254604051631194af8760e11b81526104e49133916001600160a01b03909116906004016122ec565b60008282604051611029929190612531565b604051908190038120607f60f91b6020830152602182015260410160408051601f1981840301815291905280516020909101209050600160ff1b81186201000083106110ad5760405162461bcd60e51b81526020600482015260136024820152726b657973657420697320746f6f206c6172676560681b60448201526064016104e4565b60008181526008602052604090205460ff16156110e057604051637d17eeed60e11b8152600481018290526024016104e4565b437f00000000000000000000000000000000000000000000000000000000000000001561117c5760646001600160a01b031663a3b1b31d6040518163ffffffff1660e01b815260040160206040518083038186803b15801561114157600080fd5b505afa158015611155573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117991906122b6565b90505b604080518082018252600181526001600160401b0383811660208084019182526000878152600890915284902092518354915168ffffffffffffffffff1990921690151568ffffffffffffffff0019161761010091909216021790555182907fabca9b7986bc22ad0160eb0cb88ae75411eacfba4052af0b457a9335ef6557229061120a9088908890612541565b60405180910390a260405160029060008051602061270783398151915290600090a25050505050565b6001546040516316bf557960e01b8152600481018390526000916001600160a01b0316906316bf55799060240160206040518083038186803b15801561127857600080fd5b505afa15801561128c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b091906122b6565b92915050565b8260005a3360009081526003602052604090205490915060ff161580156112e857506002546001600160a01b03163314155b1561130657604051632dd9fc9760e01b815260040160405180910390fd5b6000806113148a8a8a611886565b909250905060008b82848b8a8a86808061133187878388886119f9565b929c5090945092509050888a1480159061134d57506000198914155b156113755760405163ac7411c960e01b8152600481018b9052602481018a90526044016104e4565b80838b6000805160206126e7833981519152856000548d600160405161139e9493929190612306565b60405180910390a4505050505050505050807ffe325ca1efe4c5c1062c981c3ee74b781debe4ea9440306a96d2a55759c66c208c8c6040516113e1929190612541565b60405180910390a25050506001600160a01b03821615610dcd573660006020610cec83601f612390565b600054861161142d57604051633eb9f37d60e11b815260040160405180910390fd5b60006114dd86846114416020890189612586565b61145160408a0160208b01612586565b61145c60018d6124dc565b6040805160f89690961b6001600160f81b03191660208088019190915260609590951b6001600160601b031916602187015260c093841b6001600160c01b031990811660358801529290931b909116603d85015260458401526065830188905260858084018790528151808503909101815260a59093019052815191012090565b60045490915043906114f26020880188612586565b6001600160401b03166115059190612390565b106115235760405163ad3515d960e01b815260040160405180910390fd5b60065442906115386040880160208901612586565b6001600160401b031661154b9190612390565b106115695760405163c76d17e560e01b815260040160405180910390fd5b60006001881115611601576001546001600160a01b031663d5719dc261159060028b6124dc565b6040518263ffffffff1660e01b81526004016115ae91815260200190565b60206040518083038186803b1580156115c657600080fd5b505afa1580156115da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115fe91906122b6565b90505b60408051602080820184905281830185905282518083038401815260609092019092528051910120600180546001600160a01b03169063d5719dc290611647908c6124dc565b6040518263ffffffff1660e01b815260040161166591815260200190565b60206040518083038186803b15801561167d57600080fd5b505afa158015611691573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b591906122b6565b146116d3576040516313947fd760e01b815260040160405180910390fd5b6000806116df8a611df9565b9150915060008a90506000600160009054906101000a90046001600160a01b03166001600160a01b0316635fca4a166040518163ffffffff1660e01b815260040160206040518083038186803b15801561173857600080fd5b505afa15801561174c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061177091906122b6565b9050600080548d836117829190612390565b61178c91906124dc565b90506000806000806117a28988600089896119f9565b93509350935093508083856000805160206126e7833981519152856000548d60026040516117d39493929190612306565b60405180910390a45050505050505050505050505050505050565b60408051600481526024810182526020810180516001600160e01b03166302881c7960e11b17905290516000918291829160649161182c91906125db565b600060405180830381855afa9150503d8060008114611867576040519150601f19603f3d011682016040523d82523d6000602084013e61186c565b606091505b509150915081801561187f575080516020145b9250505090565b6000611890611f60565b8484600061189f826028612390565b90506201cccc8111156118d157604051634634691b60e01b8152600481018290526201cccc60248201526044016104e4565b81158015906119095750600160fe1b8084846000816118f2576118f2612570565b9050013560f81c60f81b166001600160f81b031916145b1561192757604051631f97007f60e01b815260040160405180910390fd5b6021821080159061195557508282600081811061194657611946612570565b90910135600160ff1b16151590505b156119a957600061196a6021600185876125f7565b61197391612621565b60008181526008602052604090205490915060ff166119a75760405162f20c5d60e01b8152600481018290526024016104e4565b505b6000806119b588611e25565b915091506000828b8b6040516020016119d09392919061263f565b60408051808303601f1901815291905280516020909101209b919a509098505050505050505050565b600080600080600054881015611a2257604051633eb9f37d60e11b815260040160405180910390fd5b600160009054906101000a90046001600160a01b03166001600160a01b031663eca067ad6040518163ffffffff1660e01b815260040160206040518083038186803b158015611a7057600080fd5b505afa158015611a84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aa891906122b6565b881115611ac85760405163925f8bd360e01b815260040160405180910390fd5b60015460405163432cc52b60e11b8152600481018b9052602481018a905260448101889052606481018790526001600160a01b03909116906386598a5690608401608060405180830381600087803b158015611b2357600080fd5b505af1158015611b37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b5b9190612667565b60008c9055929650909450925090508615611ded573360607f000000000000000000000000000000000000000000000000000000000000000015611cc8576000606c6001600160a01b031663c6f7de0e6040518163ffffffff1660e01b815260040160206040518083038186803b158015611bd557600080fd5b505afa158015611be9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c0d91906122b6565b90506000611c1b48836123a8565b90506001600160401b03811115611c685760405162461bcd60e51b8152602060048201526011602482015270130c57d1d054d7d393d517d55253950d8d607a1b60448201526064016104e4565b60408051426020820152606086901b6001600160601b03191681830152605481018f9052607481018a905248609482015260c09290921b6001600160c01b03191660b48301528051609c81840301815260bc90920190529150611d119050565b604080514260208201526001600160601b0319606085901b1691810191909152605481018c90526074810187905248609482015260b40160405160208183030381529060405290505b60015481516020830120604051637a88b10760e01b81526000926001600160a01b031691637a88b10791611d5d9187916004016001600160a01b03929092168252602082015260400190565b602060405180830381600087803b158015611d7757600080fd5b505af1158015611d8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611daf91906122b6565b9050807fff64905f73a67fb594e0f940a8075a860db489ad991e032f48c81123eb52d60b83604051611de1919061269d565b60405180910390a25050505b95509550955095915050565b6000611e03611f60565b600080611e0f85611e25565b8151602090920191909120969095509350505050565b6060611e2f611f60565b6000611e39611ecc565b90506000816000015182602001518360400151846060015188604051602001611ea195949392919060c095861b6001600160c01b0319908116825294861b8516600882015292851b8416601084015290841b8316601883015290921b16602082015260280190565b60405160208183030381529060405290506028815114611ec357611ec36126d0565b94909350915050565b611ed4611f60565b611edc611f60565b600654421115611eff57600654611ef390426124dc565b6001600160401b031681525b600754611f0c9042612390565b6001600160401b03166020820152600454431115611f4057600454611f3190436124dc565b6001600160401b031660408201525b600554611f4d9043612390565b6001600160401b03166060820152919050565b60408051608081018252600080825260208201819052918101829052606081019190915290565b600060208284031215611f9957600080fd5b5035919050565b6001600160a01b0381168114611fb557600080fd5b50565b60008082840360a0811215611fcc57600080fd5b8335611fd781611fa0565b92506080601f1982011215611feb57600080fd5b506020830190509250929050565b8015158114611fb557600080fd5b6000806040838503121561201a57600080fd5b823561202581611fa0565b9150602083013561203581611ff9565b809150509250929050565b60006020828403121561205257600080fd5b813561205d81611fa0565b9392505050565b60008083601f84011261207657600080fd5b5081356001600160401b0381111561208d57600080fd5b6020830191508360208285010111156120a557600080fd5b9250929050565b6000806000806000608086880312156120c457600080fd5b8535945060208601356001600160401b038111156120e157600080fd5b6120ed88828901612064565b90955093505060408601359150606086013561210881611fa0565b809150509295509295909350565b600080600080600080600060c0888a03121561213157600080fd5b8735965060208801356001600160401b0381111561214e57600080fd5b61215a8a828b01612064565b90975095505060408801359350606088013561217581611fa0565b969995985093969295946080840135945060a09093013592915050565b6000608082840312156121a457600080fd5b604051608081018181106001600160401b03821117156121d457634e487b7160e01b600052604160045260246000fd5b8060405250823581526020830135602082015260408301356040820152606083013560608201528091505092915050565b6000806020838503121561221857600080fd5b82356001600160401b0381111561222e57600080fd5b61223a85828601612064565b90969095509350505050565b60008060008060008060e0878903121561225f57600080fd5b86359550602087013560ff8116811461227757600080fd5b9450608087018881111561228a57600080fd5b60408801945035925060a08701356122a181611fa0565b8092505060c087013590509295509295509295565b6000602082840312156122c857600080fd5b5051919050565b6000602082840312156122e157600080fd5b815161205d81611fa0565b6001600160a01b0392831681529116602082015260400190565b600060e0820190508582528460208301526001600160401b038085511660408401528060208601511660608401528060408601511660808401528060608601511660a0840152506003831061236b57634e487b7160e01b600052602160045260246000fd5b8260c083015295945050505050565b634e487b7160e01b600052601160045260246000fd5b600082198211156123a3576123a361237a565b500190565b6000826123c557634e487b7160e01b600052601260045260246000fd5b500490565b600181815b808511156124055781600019048211156123eb576123eb61237a565b808516156123f857918102915b93841c93908002906123cf565b509250929050565b60008261241c575060016112b0565b81612429575060006112b0565b816001811461243f576002811461244957612465565b60019150506112b0565b60ff84111561245a5761245a61237a565b50506001821b6112b0565b5060208310610133831016604e8410600b8410161715612488575081810a6112b0565b61249283836123ca565b80600019048211156124a6576124a661237a565b029392505050565b600061205d60ff84168361240d565b60008160001904831182151516156124d7576124d761237a565b500290565b6000828210156124ee576124ee61237a565b500390565b6001600160a01b039390931683526020830191909152604082015260600190565b60006020828403121561252657600080fd5b815161205d81611ff9565b8183823760009101908152919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561259857600080fd5b81356001600160401b038116811461205d57600080fd5b60005b838110156125ca5781810151838201526020016125b2565b8381111561060c5750506000910152565b600082516125ed8184602087016125af565b9190910192915050565b6000808585111561260757600080fd5b8386111561261457600080fd5b5050820193919092039150565b803560208310156112b057600019602084900360031b1b1692915050565b600084516126518184602089016125af565b8201838582376000930192835250909392505050565b6000806000806080858703121561267d57600080fd5b505082516020840151604085015160609095015191969095509092509050565b60208152600082518060208401526126bc8160408501602087016125af565b601f01601f19169190910160400192915050565b634e487b7160e01b600052600160045260246000fdfe7394f4a19a13c7b92b5bb71033245305946ef78452f7b4986ac1390b5df4ebd7ea8787f128d10b2cc0317b0c3960f9ad447f7f6c1ed189db1083ccffd20f456ea26469706673582212207d9ece28bf95abb7f5d6c1b94ae4e87e4cc1a4315c61a261975659419b42c98a64736f6c63430008090033",
|
811
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101585760003560e01c806384420860116100c3578063d9dd67ab1161007c578063d9dd67ab14610334578063e0bc972914610347578063e5a358c81461035a578063e78cea921461037e578063ebea461d14610391578063f1981578146103c757600080fd5b806384420860146102b55780638f111f3c146102c857806396cc5c78146102db578063b31761f8146102e3578063cb23bcb5146102f6578063d1ce8da81461032157600080fd5b80636d46e987116101155780636d46e987146101ee5780636e7df3e7146102115780636f12b0c914610224578063715ea34b1461023757806371c3e6fe146102895780637fa3a40e146102ac57600080fd5b806306f130561461015d5780631637be48146101785780631f7a92b2146101ab5780631f956632146101c0578063258f0495146101d357806327957a49146101e6575b600080fd5b6101656103da565b6040519081526020015b60405180910390f35b61019b610186366004611f87565b60009081526008602052604090205460ff1690565b604051901515815260200161016f565b6101be6101b9366004611fb8565b61045a565b005b6101be6101ce366004612007565b610612565b6101656101e1366004611f87565b610718565b610165602881565b61019b6101fc366004612040565b60096020526000908152604090205460ff1681565b6101be61021f366004612007565b610781565b6101be6102323660046120ac565b610887565b61026a610245366004611f87565b60086020526000908152604090205460ff81169061010090046001600160401b031682565b6040805192151583526001600160401b0390911660208301520161016f565b61019b610297366004612040565b60036020526000908152604090205460ff1681565b61016560005481565b6101be6102c3366004611f87565b610a76565b6101be6102d6366004612116565b610bc9565b6101be610dd8565b6101be6102f1366004612192565b610e4f565b600254610309906001600160a01b031681565b6040516001600160a01b03909116815260200161016f565b6101be61032f366004612205565b610f4f565b610165610342366004611f87565b611233565b6101be610355366004612116565b6112b6565b610365600160fe1b81565b6040516001600160f81b0319909116815260200161016f565b600154610309906001600160a01b031681565b6004546005546006546007546103a79392919084565b60408051948552602085019390935291830152606082015260800161016f565b6101be6103d5366004612246565b61140b565b600154604080516221048360e21b815290516000926001600160a01b0316916284120c916004808301926020929190829003018186803b15801561041d57600080fd5b505afa158015610431573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061045591906122b6565b905090565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156104ed5760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b19195b1959d85d1958d85b1b60a21b60648201526084015b60405180910390fd5b6001546001600160a01b03161561051757604051633bcd329760e21b815260040160405180910390fd5b6001600160a01b03821661053e57604051631ad0f74360e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b0384169081179091556040805163cb23bcb560e01b8152905163cb23bcb591600480820192602092909190829003018186803b15801561059257600080fd5b505afa1580156105a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ca91906122cf565b600280546001600160a01b0319166001600160a01b03929092169190911790558035600490815560208201356005556040820135600655606082013560075581905b50505050565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561066057600080fd5b505afa158015610674573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061069891906122cf565b6001600160a01b0316336001600160a01b0316146106da57600254604051631194af8760e11b81526104e49133916001600160a01b03909116906004016122ec565b6001600160a01b038216600090815260096020526040808220805460ff19168415151790555160049160008051602061270783398151915291a25050565b600081815260086020908152604080832081518083019092525460ff81161515825261010090046001600160401b03169181018290529061076e5760405162f20c5d60e01b8152600481018490526024016104e4565b602001516001600160401b031692915050565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156107cf57600080fd5b505afa1580156107e3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061080791906122cf565b6001600160a01b0316336001600160a01b03161461084957600254604051631194af8760e11b81526104e49133916001600160a01b03909116906004016122ec565b6001600160a01b038216600090815260036020526040808220805460ff19168415151790555160019160008051602061270783398151915291a25050565b8060005a90503332146108ad5760405163feb3d07160e01b815260040160405180910390fd5b3360009081526003602052604090205460ff166108dd57604051632dd9fc9760e01b815260040160405180910390fd5b6000806108eb888888611886565b90925090506000808080610902868b8d84806119f9565b93509350935093508c84146109345760405163ac7411c960e01b815260048101859052602481018e90526044016104e4565b80838e6000805160206126e7833981519152856000548a600060405161095d9493929190612306565b60405180910390a4505050506001600160a01b038416159150610a6d905057366000602061098c83601f612390565b61099691906123a8565b90506102006109a66002836124ae565b6109b091906123a8565b6109bb8260066124bd565b6109c59190612390565b6109cf9084612390565b92503332146109dd57600091505b836001600160a01b031663e3db8a49335a6109f890876124dc565b856040518463ffffffff1660e01b8152600401610a17939291906124f3565b602060405180830381600087803b158015610a3157600080fd5b505af1158015610a45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a699190612514565b5050505b50505050505050565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ac457600080fd5b505afa158015610ad8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afc91906122cf565b6001600160a01b0316336001600160a01b031614610b3e57600254604051631194af8760e11b81526104e49133916001600160a01b03909116906004016122ec565b60008181526008602052604090205460ff16610b6f5760405162f20c5d60e01b8152600481018290526024016104e4565b600081815260086020526040808220805460ff191690555182917f5cb4218b272fd214168ac43e90fb4d05d6c36f0b17ffb4c2dd07c234d744eb2a91a260405160039060008051602061270783398151915290600090a250565b8260005a9050333214610bef5760405163feb3d07160e01b815260040160405180910390fd5b3360009081526003602052604090205460ff16610c1f57604051632dd9fc9760e01b815260040160405180910390fd5b600080610c2d8a8a8a611886565b90925090508a81838b8b8a8a6000808080610c4b89888a89896119f9565b93509350935093508a8414158015610c6557506000198b14155b15610c8d5760405163ac7411c960e01b815260048101859052602481018c90526044016104e4565b8083856000805160206126e7833981519152856000548f6000604051610cb69493929190612306565b60405180910390a4505050506001600160a01b038b16159850610dcd975050505050505050573660006020610cec83601f612390565b610cf691906123a8565b9050610200610d066002836124ae565b610d1091906123a8565b610d1b8260066124bd565b610d259190612390565b610d2f9084612390565b9250333214610d3d57600091505b836001600160a01b031663e3db8a49335a610d5890876124dc565b856040518463ffffffff1660e01b8152600401610d77939291906124f3565b602060405180830381600087803b158015610d9157600080fd5b505af1158015610da5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc99190612514565b5050505b505050505050505050565b467f00000000000000000000000000000000000000000000000000000000000000001415610e1957604051635180dd8360e11b815260040160405180910390fd5b60408051608081018252600180825260208201819052918101829052606001819052600481905560058190556006819055600755565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015610e9d57600080fd5b505afa158015610eb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed591906122cf565b6001600160a01b0316336001600160a01b031614610f1757600254604051631194af8760e11b81526104e49133916001600160a01b03909116906004016122ec565b80516004556020810151600555604080820151600655606082015160075551600090600080516020612707833981519152908290a250565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015610f9d57600080fd5b505afa158015610fb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd591906122cf565b6001600160a01b0316336001600160a01b03161461101757600254604051631194af8760e11b81526104e49133916001600160a01b03909116906004016122ec565b60008282604051611029929190612531565b604051908190038120607f60f91b6020830152602182015260410160408051601f1981840301815291905280516020909101209050600160ff1b81186201000083106110ad5760405162461bcd60e51b81526020600482015260136024820152726b657973657420697320746f6f206c6172676560681b60448201526064016104e4565b60008181526008602052604090205460ff16156110e057604051637d17eeed60e11b8152600481018290526024016104e4565b437f00000000000000000000000000000000000000000000000000000000000000001561117c5760646001600160a01b031663a3b1b31d6040518163ffffffff1660e01b815260040160206040518083038186803b15801561114157600080fd5b505afa158015611155573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117991906122b6565b90505b604080518082018252600181526001600160401b0383811660208084019182526000878152600890915284902092518354915168ffffffffffffffffff1990921690151568ffffffffffffffff0019161761010091909216021790555182907fabca9b7986bc22ad0160eb0cb88ae75411eacfba4052af0b457a9335ef6557229061120a9088908890612541565b60405180910390a260405160029060008051602061270783398151915290600090a25050505050565b6001546040516316bf557960e01b8152600481018390526000916001600160a01b0316906316bf55799060240160206040518083038186803b15801561127857600080fd5b505afa15801561128c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b091906122b6565b92915050565b8260005a3360009081526003602052604090205490915060ff161580156112e857506002546001600160a01b03163314155b1561130657604051632dd9fc9760e01b815260040160405180910390fd5b6000806113148a8a8a611886565b909250905060008b82848b8a8a86808061133187878388886119f9565b929c5090945092509050888a1480159061134d57506000198914155b156113755760405163ac7411c960e01b8152600481018b9052602481018a90526044016104e4565b80838b6000805160206126e7833981519152856000548d600160405161139e9493929190612306565b60405180910390a4505050505050505050807ffe325ca1efe4c5c1062c981c3ee74b781debe4ea9440306a96d2a55759c66c208c8c6040516113e1929190612541565b60405180910390a25050506001600160a01b03821615610dcd573660006020610cec83601f612390565b600054861161142d57604051633eb9f37d60e11b815260040160405180910390fd5b60006114dd86846114416020890189612586565b61145160408a0160208b01612586565b61145c60018d6124dc565b6040805160f89690961b6001600160f81b03191660208088019190915260609590951b6001600160601b031916602187015260c093841b6001600160c01b031990811660358801529290931b909116603d85015260458401526065830188905260858084018790528151808503909101815260a59093019052815191012090565b60045490915043906114f26020880188612586565b6001600160401b03166115059190612390565b106115235760405163ad3515d960e01b815260040160405180910390fd5b60065442906115386040880160208901612586565b6001600160401b031661154b9190612390565b106115695760405163c76d17e560e01b815260040160405180910390fd5b60006001881115611601576001546001600160a01b031663d5719dc261159060028b6124dc565b6040518263ffffffff1660e01b81526004016115ae91815260200190565b60206040518083038186803b1580156115c657600080fd5b505afa1580156115da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115fe91906122b6565b90505b60408051602080820184905281830185905282518083038401815260609092019092528051910120600180546001600160a01b03169063d5719dc290611647908c6124dc565b6040518263ffffffff1660e01b815260040161166591815260200190565b60206040518083038186803b15801561167d57600080fd5b505afa158015611691573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b591906122b6565b146116d3576040516313947fd760e01b815260040160405180910390fd5b6000806116df8a611df9565b9150915060008a90506000600160009054906101000a90046001600160a01b03166001600160a01b0316635fca4a166040518163ffffffff1660e01b815260040160206040518083038186803b15801561173857600080fd5b505afa15801561174c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061177091906122b6565b9050600080548d836117829190612390565b61178c91906124dc565b90506000806000806117a28988600089896119f9565b93509350935093508083856000805160206126e7833981519152856000548d60026040516117d39493929190612306565b60405180910390a45050505050505050505050505050505050565b60408051600481526024810182526020810180516001600160e01b03166302881c7960e11b17905290516000918291829160649161182c91906125db565b600060405180830381855afa9150503d8060008114611867576040519150601f19603f3d011682016040523d82523d6000602084013e61186c565b606091505b509150915081801561187f575080516020145b9250505090565b6000611890611f60565b8484600061189f826028612390565b90506201cccc8111156118d157604051634634691b60e01b8152600481018290526201cccc60248201526044016104e4565b81158015906119095750600160fe1b8084846000816118f2576118f2612570565b9050013560f81c60f81b166001600160f81b031916145b1561192757604051631f97007f60e01b815260040160405180910390fd5b6021821080159061195557508282600081811061194657611946612570565b90910135600160ff1b16151590505b156119a957600061196a6021600185876125f7565b61197391612621565b60008181526008602052604090205490915060ff166119a75760405162f20c5d60e01b8152600481018290526024016104e4565b505b6000806119b588611e25565b915091506000828b8b6040516020016119d09392919061263f565b60408051808303601f1901815291905280516020909101209b919a509098505050505050505050565b600080600080600054881015611a2257604051633eb9f37d60e11b815260040160405180910390fd5b600160009054906101000a90046001600160a01b03166001600160a01b031663eca067ad6040518163ffffffff1660e01b815260040160206040518083038186803b158015611a7057600080fd5b505afa158015611a84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aa891906122b6565b881115611ac85760405163925f8bd360e01b815260040160405180910390fd5b60015460405163432cc52b60e11b8152600481018b9052602481018a905260448101889052606481018790526001600160a01b03909116906386598a5690608401608060405180830381600087803b158015611b2357600080fd5b505af1158015611b37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b5b9190612667565b60008c9055929650909450925090508615611ded573360607f000000000000000000000000000000000000000000000000000000000000000015611cc8576000606c6001600160a01b031663c6f7de0e6040518163ffffffff1660e01b815260040160206040518083038186803b158015611bd557600080fd5b505afa158015611be9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c0d91906122b6565b90506000611c1b48836123a8565b90506001600160401b03811115611c685760405162461bcd60e51b8152602060048201526011602482015270130c57d1d054d7d393d517d55253950d8d607a1b60448201526064016104e4565b60408051426020820152606086901b6001600160601b03191681830152605481018f9052607481018a905248609482015260c09290921b6001600160c01b03191660b48301528051609c81840301815260bc90920190529150611d119050565b604080514260208201526001600160601b0319606085901b1691810191909152605481018c90526074810187905248609482015260b40160405160208183030381529060405290505b60015481516020830120604051637a88b10760e01b81526000926001600160a01b031691637a88b10791611d5d9187916004016001600160a01b03929092168252602082015260400190565b602060405180830381600087803b158015611d7757600080fd5b505af1158015611d8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611daf91906122b6565b9050807fff64905f73a67fb594e0f940a8075a860db489ad991e032f48c81123eb52d60b83604051611de1919061269d565b60405180910390a25050505b95509550955095915050565b6000611e03611f60565b600080611e0f85611e25565b8151602090920191909120969095509350505050565b6060611e2f611f60565b6000611e39611ecc565b90506000816000015182602001518360400151846060015188604051602001611ea195949392919060c095861b6001600160c01b0319908116825294861b8516600882015292851b8416601084015290841b8316601883015290921b16602082015260280190565b60405160208183030381529060405290506028815114611ec357611ec36126d0565b94909350915050565b611ed4611f60565b611edc611f60565b600654421115611eff57600654611ef390426124dc565b6001600160401b031681525b600754611f0c9042612390565b6001600160401b03166020820152600454431115611f4057600454611f3190436124dc565b6001600160401b031660408201525b600554611f4d9043612390565b6001600160401b03166060820152919050565b60408051608081018252600080825260208201819052918101829052606081019190915290565b600060208284031215611f9957600080fd5b5035919050565b6001600160a01b0381168114611fb557600080fd5b50565b60008082840360a0811215611fcc57600080fd5b8335611fd781611fa0565b92506080601f1982011215611feb57600080fd5b506020830190509250929050565b8015158114611fb557600080fd5b6000806040838503121561201a57600080fd5b823561202581611fa0565b9150602083013561203581611ff9565b809150509250929050565b60006020828403121561205257600080fd5b813561205d81611fa0565b9392505050565b60008083601f84011261207657600080fd5b5081356001600160401b0381111561208d57600080fd5b6020830191508360208285010111156120a557600080fd5b9250929050565b6000806000806000608086880312156120c457600080fd5b8535945060208601356001600160401b038111156120e157600080fd5b6120ed88828901612064565b90955093505060408601359150606086013561210881611fa0565b809150509295509295909350565b600080600080600080600060c0888a03121561213157600080fd5b8735965060208801356001600160401b0381111561214e57600080fd5b61215a8a828b01612064565b90975095505060408801359350606088013561217581611fa0565b969995985093969295946080840135945060a09093013592915050565b6000608082840312156121a457600080fd5b604051608081018181106001600160401b03821117156121d457634e487b7160e01b600052604160045260246000fd5b8060405250823581526020830135602082015260408301356040820152606083013560608201528091505092915050565b6000806020838503121561221857600080fd5b82356001600160401b0381111561222e57600080fd5b61223a85828601612064565b90969095509350505050565b60008060008060008060e0878903121561225f57600080fd5b86359550602087013560ff8116811461227757600080fd5b9450608087018881111561228a57600080fd5b60408801945035925060a08701356122a181611fa0565b8092505060c087013590509295509295509295565b6000602082840312156122c857600080fd5b5051919050565b6000602082840312156122e157600080fd5b815161205d81611fa0565b6001600160a01b0392831681529116602082015260400190565b600060e0820190508582528460208301526001600160401b038085511660408401528060208601511660608401528060408601511660808401528060608601511660a0840152506003831061236b57634e487b7160e01b600052602160045260246000fd5b8260c083015295945050505050565b634e487b7160e01b600052601160045260246000fd5b600082198211156123a3576123a361237a565b500190565b6000826123c557634e487b7160e01b600052601260045260246000fd5b500490565b600181815b808511156124055781600019048211156123eb576123eb61237a565b808516156123f857918102915b93841c93908002906123cf565b509250929050565b60008261241c575060016112b0565b81612429575060006112b0565b816001811461243f576002811461244957612465565b60019150506112b0565b60ff84111561245a5761245a61237a565b50506001821b6112b0565b5060208310610133831016604e8410600b8410161715612488575081810a6112b0565b61249283836123ca565b80600019048211156124a6576124a661237a565b029392505050565b600061205d60ff84168361240d565b60008160001904831182151516156124d7576124d761237a565b500290565b6000828210156124ee576124ee61237a565b500390565b6001600160a01b039390931683526020830191909152604082015260600190565b60006020828403121561252657600080fd5b815161205d81611ff9565b8183823760009101908152919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561259857600080fd5b81356001600160401b038116811461205d57600080fd5b60005b838110156125ca5781810151838201526020016125b2565b8381111561060c5750506000910152565b600082516125ed8184602087016125af565b9190910192915050565b6000808585111561260757600080fd5b8386111561261457600080fd5b5050820193919092039150565b803560208310156112b057600019602084900360031b1b1692915050565b600084516126518184602089016125af565b8201838582376000930192835250909392505050565b6000806000806080858703121561267d57600080fd5b505082516020840151604085015160609095015191969095509092509050565b60208152600082518060208401526126bc8160408501602087016125af565b601f01601f19169190910160400192915050565b634e487b7160e01b600052600160045260246000fdfe7394f4a19a13c7b92b5bb71033245305946ef78452f7b4986ac1390b5df4ebd7ea8787f128d10b2cc0317b0c3960f9ad447f7f6c1ed189db1083ccffd20f456ea26469706673582212207d9ece28bf95abb7f5d6c1b94ae4e87e4cc1a4315c61a261975659419b42c98a64736f6c63430008090033",
|
812
|
+
"linkReferences": {},
|
813
|
+
"deployedLinkReferences": {}
|
814
|
+
}
|