@arbitrum/nitro-contracts 1.0.3-beta.0 → 1.0.3-beta.2
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 +1008 -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/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 +324 -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 +69 -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/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 +343 -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 +5 -2
@@ -0,0 +1,870 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "SequencerInboxStub",
|
4
|
+
"sourceName": "src/mocks/SequencerInboxStub.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "contract IBridge",
|
10
|
+
"name": "bridge_",
|
11
|
+
"type": "address"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"internalType": "address",
|
15
|
+
"name": "sequencer_",
|
16
|
+
"type": "address"
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"components": [
|
20
|
+
{
|
21
|
+
"internalType": "uint256",
|
22
|
+
"name": "delayBlocks",
|
23
|
+
"type": "uint256"
|
24
|
+
},
|
25
|
+
{
|
26
|
+
"internalType": "uint256",
|
27
|
+
"name": "futureBlocks",
|
28
|
+
"type": "uint256"
|
29
|
+
},
|
30
|
+
{
|
31
|
+
"internalType": "uint256",
|
32
|
+
"name": "delaySeconds",
|
33
|
+
"type": "uint256"
|
34
|
+
},
|
35
|
+
{
|
36
|
+
"internalType": "uint256",
|
37
|
+
"name": "futureSeconds",
|
38
|
+
"type": "uint256"
|
39
|
+
}
|
40
|
+
],
|
41
|
+
"internalType": "struct ISequencerInbox.MaxTimeVariation",
|
42
|
+
"name": "maxTimeVariation_",
|
43
|
+
"type": "tuple"
|
44
|
+
}
|
45
|
+
],
|
46
|
+
"stateMutability": "nonpayable",
|
47
|
+
"type": "constructor"
|
48
|
+
},
|
49
|
+
{
|
50
|
+
"inputs": [],
|
51
|
+
"name": "AlreadyInit",
|
52
|
+
"type": "error"
|
53
|
+
},
|
54
|
+
{
|
55
|
+
"inputs": [
|
56
|
+
{
|
57
|
+
"internalType": "bytes32",
|
58
|
+
"name": "",
|
59
|
+
"type": "bytes32"
|
60
|
+
}
|
61
|
+
],
|
62
|
+
"name": "AlreadyValidDASKeyset",
|
63
|
+
"type": "error"
|
64
|
+
},
|
65
|
+
{
|
66
|
+
"inputs": [
|
67
|
+
{
|
68
|
+
"internalType": "uint256",
|
69
|
+
"name": "stored",
|
70
|
+
"type": "uint256"
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"internalType": "uint256",
|
74
|
+
"name": "received",
|
75
|
+
"type": "uint256"
|
76
|
+
}
|
77
|
+
],
|
78
|
+
"name": "BadSequencerNumber",
|
79
|
+
"type": "error"
|
80
|
+
},
|
81
|
+
{
|
82
|
+
"inputs": [],
|
83
|
+
"name": "DataNotAuthenticated",
|
84
|
+
"type": "error"
|
85
|
+
},
|
86
|
+
{
|
87
|
+
"inputs": [
|
88
|
+
{
|
89
|
+
"internalType": "uint256",
|
90
|
+
"name": "dataLength",
|
91
|
+
"type": "uint256"
|
92
|
+
},
|
93
|
+
{
|
94
|
+
"internalType": "uint256",
|
95
|
+
"name": "maxDataLength",
|
96
|
+
"type": "uint256"
|
97
|
+
}
|
98
|
+
],
|
99
|
+
"name": "DataTooLarge",
|
100
|
+
"type": "error"
|
101
|
+
},
|
102
|
+
{
|
103
|
+
"inputs": [],
|
104
|
+
"name": "DelayedBackwards",
|
105
|
+
"type": "error"
|
106
|
+
},
|
107
|
+
{
|
108
|
+
"inputs": [],
|
109
|
+
"name": "DelayedTooFar",
|
110
|
+
"type": "error"
|
111
|
+
},
|
112
|
+
{
|
113
|
+
"inputs": [],
|
114
|
+
"name": "ForceIncludeBlockTooSoon",
|
115
|
+
"type": "error"
|
116
|
+
},
|
117
|
+
{
|
118
|
+
"inputs": [],
|
119
|
+
"name": "ForceIncludeTimeTooSoon",
|
120
|
+
"type": "error"
|
121
|
+
},
|
122
|
+
{
|
123
|
+
"inputs": [],
|
124
|
+
"name": "HadZeroInit",
|
125
|
+
"type": "error"
|
126
|
+
},
|
127
|
+
{
|
128
|
+
"inputs": [],
|
129
|
+
"name": "IncorrectMessagePreimage",
|
130
|
+
"type": "error"
|
131
|
+
},
|
132
|
+
{
|
133
|
+
"inputs": [
|
134
|
+
{
|
135
|
+
"internalType": "bytes32",
|
136
|
+
"name": "",
|
137
|
+
"type": "bytes32"
|
138
|
+
}
|
139
|
+
],
|
140
|
+
"name": "NoSuchKeyset",
|
141
|
+
"type": "error"
|
142
|
+
},
|
143
|
+
{
|
144
|
+
"inputs": [],
|
145
|
+
"name": "NotBatchPoster",
|
146
|
+
"type": "error"
|
147
|
+
},
|
148
|
+
{
|
149
|
+
"inputs": [],
|
150
|
+
"name": "NotForked",
|
151
|
+
"type": "error"
|
152
|
+
},
|
153
|
+
{
|
154
|
+
"inputs": [],
|
155
|
+
"name": "NotOrigin",
|
156
|
+
"type": "error"
|
157
|
+
},
|
158
|
+
{
|
159
|
+
"inputs": [
|
160
|
+
{
|
161
|
+
"internalType": "address",
|
162
|
+
"name": "sender",
|
163
|
+
"type": "address"
|
164
|
+
},
|
165
|
+
{
|
166
|
+
"internalType": "address",
|
167
|
+
"name": "owner",
|
168
|
+
"type": "address"
|
169
|
+
}
|
170
|
+
],
|
171
|
+
"name": "NotOwner",
|
172
|
+
"type": "error"
|
173
|
+
},
|
174
|
+
{
|
175
|
+
"anonymous": false,
|
176
|
+
"inputs": [
|
177
|
+
{
|
178
|
+
"indexed": true,
|
179
|
+
"internalType": "uint256",
|
180
|
+
"name": "messageNum",
|
181
|
+
"type": "uint256"
|
182
|
+
},
|
183
|
+
{
|
184
|
+
"indexed": false,
|
185
|
+
"internalType": "bytes",
|
186
|
+
"name": "data",
|
187
|
+
"type": "bytes"
|
188
|
+
}
|
189
|
+
],
|
190
|
+
"name": "InboxMessageDelivered",
|
191
|
+
"type": "event"
|
192
|
+
},
|
193
|
+
{
|
194
|
+
"anonymous": false,
|
195
|
+
"inputs": [
|
196
|
+
{
|
197
|
+
"indexed": true,
|
198
|
+
"internalType": "uint256",
|
199
|
+
"name": "messageNum",
|
200
|
+
"type": "uint256"
|
201
|
+
}
|
202
|
+
],
|
203
|
+
"name": "InboxMessageDeliveredFromOrigin",
|
204
|
+
"type": "event"
|
205
|
+
},
|
206
|
+
{
|
207
|
+
"anonymous": false,
|
208
|
+
"inputs": [
|
209
|
+
{
|
210
|
+
"indexed": true,
|
211
|
+
"internalType": "bytes32",
|
212
|
+
"name": "keysetHash",
|
213
|
+
"type": "bytes32"
|
214
|
+
}
|
215
|
+
],
|
216
|
+
"name": "InvalidateKeyset",
|
217
|
+
"type": "event"
|
218
|
+
},
|
219
|
+
{
|
220
|
+
"anonymous": false,
|
221
|
+
"inputs": [
|
222
|
+
{
|
223
|
+
"indexed": true,
|
224
|
+
"internalType": "uint256",
|
225
|
+
"name": "id",
|
226
|
+
"type": "uint256"
|
227
|
+
}
|
228
|
+
],
|
229
|
+
"name": "OwnerFunctionCalled",
|
230
|
+
"type": "event"
|
231
|
+
},
|
232
|
+
{
|
233
|
+
"anonymous": false,
|
234
|
+
"inputs": [
|
235
|
+
{
|
236
|
+
"indexed": true,
|
237
|
+
"internalType": "uint256",
|
238
|
+
"name": "batchSequenceNumber",
|
239
|
+
"type": "uint256"
|
240
|
+
},
|
241
|
+
{
|
242
|
+
"indexed": false,
|
243
|
+
"internalType": "bytes",
|
244
|
+
"name": "data",
|
245
|
+
"type": "bytes"
|
246
|
+
}
|
247
|
+
],
|
248
|
+
"name": "SequencerBatchData",
|
249
|
+
"type": "event"
|
250
|
+
},
|
251
|
+
{
|
252
|
+
"anonymous": false,
|
253
|
+
"inputs": [
|
254
|
+
{
|
255
|
+
"indexed": true,
|
256
|
+
"internalType": "uint256",
|
257
|
+
"name": "batchSequenceNumber",
|
258
|
+
"type": "uint256"
|
259
|
+
},
|
260
|
+
{
|
261
|
+
"indexed": true,
|
262
|
+
"internalType": "bytes32",
|
263
|
+
"name": "beforeAcc",
|
264
|
+
"type": "bytes32"
|
265
|
+
},
|
266
|
+
{
|
267
|
+
"indexed": true,
|
268
|
+
"internalType": "bytes32",
|
269
|
+
"name": "afterAcc",
|
270
|
+
"type": "bytes32"
|
271
|
+
},
|
272
|
+
{
|
273
|
+
"indexed": false,
|
274
|
+
"internalType": "bytes32",
|
275
|
+
"name": "delayedAcc",
|
276
|
+
"type": "bytes32"
|
277
|
+
},
|
278
|
+
{
|
279
|
+
"indexed": false,
|
280
|
+
"internalType": "uint256",
|
281
|
+
"name": "afterDelayedMessagesRead",
|
282
|
+
"type": "uint256"
|
283
|
+
},
|
284
|
+
{
|
285
|
+
"components": [
|
286
|
+
{
|
287
|
+
"internalType": "uint64",
|
288
|
+
"name": "minTimestamp",
|
289
|
+
"type": "uint64"
|
290
|
+
},
|
291
|
+
{
|
292
|
+
"internalType": "uint64",
|
293
|
+
"name": "maxTimestamp",
|
294
|
+
"type": "uint64"
|
295
|
+
},
|
296
|
+
{
|
297
|
+
"internalType": "uint64",
|
298
|
+
"name": "minBlockNumber",
|
299
|
+
"type": "uint64"
|
300
|
+
},
|
301
|
+
{
|
302
|
+
"internalType": "uint64",
|
303
|
+
"name": "maxBlockNumber",
|
304
|
+
"type": "uint64"
|
305
|
+
}
|
306
|
+
],
|
307
|
+
"indexed": false,
|
308
|
+
"internalType": "struct ISequencerInbox.TimeBounds",
|
309
|
+
"name": "timeBounds",
|
310
|
+
"type": "tuple"
|
311
|
+
},
|
312
|
+
{
|
313
|
+
"indexed": false,
|
314
|
+
"internalType": "enum ISequencerInbox.BatchDataLocation",
|
315
|
+
"name": "dataLocation",
|
316
|
+
"type": "uint8"
|
317
|
+
}
|
318
|
+
],
|
319
|
+
"name": "SequencerBatchDelivered",
|
320
|
+
"type": "event"
|
321
|
+
},
|
322
|
+
{
|
323
|
+
"anonymous": false,
|
324
|
+
"inputs": [
|
325
|
+
{
|
326
|
+
"indexed": true,
|
327
|
+
"internalType": "bytes32",
|
328
|
+
"name": "keysetHash",
|
329
|
+
"type": "bytes32"
|
330
|
+
},
|
331
|
+
{
|
332
|
+
"indexed": false,
|
333
|
+
"internalType": "bytes",
|
334
|
+
"name": "keysetBytes",
|
335
|
+
"type": "bytes"
|
336
|
+
}
|
337
|
+
],
|
338
|
+
"name": "SetValidKeyset",
|
339
|
+
"type": "event"
|
340
|
+
},
|
341
|
+
{
|
342
|
+
"inputs": [],
|
343
|
+
"name": "DATA_AUTHENTICATED_FLAG",
|
344
|
+
"outputs": [
|
345
|
+
{
|
346
|
+
"internalType": "bytes1",
|
347
|
+
"name": "",
|
348
|
+
"type": "bytes1"
|
349
|
+
}
|
350
|
+
],
|
351
|
+
"stateMutability": "view",
|
352
|
+
"type": "function"
|
353
|
+
},
|
354
|
+
{
|
355
|
+
"inputs": [],
|
356
|
+
"name": "HEADER_LENGTH",
|
357
|
+
"outputs": [
|
358
|
+
{
|
359
|
+
"internalType": "uint256",
|
360
|
+
"name": "",
|
361
|
+
"type": "uint256"
|
362
|
+
}
|
363
|
+
],
|
364
|
+
"stateMutability": "view",
|
365
|
+
"type": "function"
|
366
|
+
},
|
367
|
+
{
|
368
|
+
"inputs": [
|
369
|
+
{
|
370
|
+
"internalType": "uint256",
|
371
|
+
"name": "chainId",
|
372
|
+
"type": "uint256"
|
373
|
+
}
|
374
|
+
],
|
375
|
+
"name": "addInitMessage",
|
376
|
+
"outputs": [],
|
377
|
+
"stateMutability": "nonpayable",
|
378
|
+
"type": "function"
|
379
|
+
},
|
380
|
+
{
|
381
|
+
"inputs": [
|
382
|
+
{
|
383
|
+
"internalType": "uint256",
|
384
|
+
"name": "sequenceNumber",
|
385
|
+
"type": "uint256"
|
386
|
+
},
|
387
|
+
{
|
388
|
+
"internalType": "bytes",
|
389
|
+
"name": "data",
|
390
|
+
"type": "bytes"
|
391
|
+
},
|
392
|
+
{
|
393
|
+
"internalType": "uint256",
|
394
|
+
"name": "afterDelayedMessagesRead",
|
395
|
+
"type": "uint256"
|
396
|
+
},
|
397
|
+
{
|
398
|
+
"internalType": "contract IGasRefunder",
|
399
|
+
"name": "gasRefunder",
|
400
|
+
"type": "address"
|
401
|
+
},
|
402
|
+
{
|
403
|
+
"internalType": "uint256",
|
404
|
+
"name": "prevMessageCount",
|
405
|
+
"type": "uint256"
|
406
|
+
},
|
407
|
+
{
|
408
|
+
"internalType": "uint256",
|
409
|
+
"name": "newMessageCount",
|
410
|
+
"type": "uint256"
|
411
|
+
}
|
412
|
+
],
|
413
|
+
"name": "addSequencerL2Batch",
|
414
|
+
"outputs": [],
|
415
|
+
"stateMutability": "nonpayable",
|
416
|
+
"type": "function"
|
417
|
+
},
|
418
|
+
{
|
419
|
+
"inputs": [
|
420
|
+
{
|
421
|
+
"internalType": "uint256",
|
422
|
+
"name": "sequenceNumber",
|
423
|
+
"type": "uint256"
|
424
|
+
},
|
425
|
+
{
|
426
|
+
"internalType": "bytes",
|
427
|
+
"name": "data",
|
428
|
+
"type": "bytes"
|
429
|
+
},
|
430
|
+
{
|
431
|
+
"internalType": "uint256",
|
432
|
+
"name": "afterDelayedMessagesRead",
|
433
|
+
"type": "uint256"
|
434
|
+
},
|
435
|
+
{
|
436
|
+
"internalType": "contract IGasRefunder",
|
437
|
+
"name": "gasRefunder",
|
438
|
+
"type": "address"
|
439
|
+
}
|
440
|
+
],
|
441
|
+
"name": "addSequencerL2BatchFromOrigin",
|
442
|
+
"outputs": [],
|
443
|
+
"stateMutability": "nonpayable",
|
444
|
+
"type": "function"
|
445
|
+
},
|
446
|
+
{
|
447
|
+
"inputs": [
|
448
|
+
{
|
449
|
+
"internalType": "uint256",
|
450
|
+
"name": "sequenceNumber",
|
451
|
+
"type": "uint256"
|
452
|
+
},
|
453
|
+
{
|
454
|
+
"internalType": "bytes",
|
455
|
+
"name": "data",
|
456
|
+
"type": "bytes"
|
457
|
+
},
|
458
|
+
{
|
459
|
+
"internalType": "uint256",
|
460
|
+
"name": "afterDelayedMessagesRead",
|
461
|
+
"type": "uint256"
|
462
|
+
},
|
463
|
+
{
|
464
|
+
"internalType": "contract IGasRefunder",
|
465
|
+
"name": "gasRefunder",
|
466
|
+
"type": "address"
|
467
|
+
},
|
468
|
+
{
|
469
|
+
"internalType": "uint256",
|
470
|
+
"name": "prevMessageCount",
|
471
|
+
"type": "uint256"
|
472
|
+
},
|
473
|
+
{
|
474
|
+
"internalType": "uint256",
|
475
|
+
"name": "newMessageCount",
|
476
|
+
"type": "uint256"
|
477
|
+
}
|
478
|
+
],
|
479
|
+
"name": "addSequencerL2BatchFromOrigin",
|
480
|
+
"outputs": [],
|
481
|
+
"stateMutability": "nonpayable",
|
482
|
+
"type": "function"
|
483
|
+
},
|
484
|
+
{
|
485
|
+
"inputs": [],
|
486
|
+
"name": "batchCount",
|
487
|
+
"outputs": [
|
488
|
+
{
|
489
|
+
"internalType": "uint256",
|
490
|
+
"name": "",
|
491
|
+
"type": "uint256"
|
492
|
+
}
|
493
|
+
],
|
494
|
+
"stateMutability": "view",
|
495
|
+
"type": "function"
|
496
|
+
},
|
497
|
+
{
|
498
|
+
"inputs": [],
|
499
|
+
"name": "bridge",
|
500
|
+
"outputs": [
|
501
|
+
{
|
502
|
+
"internalType": "contract IBridge",
|
503
|
+
"name": "",
|
504
|
+
"type": "address"
|
505
|
+
}
|
506
|
+
],
|
507
|
+
"stateMutability": "view",
|
508
|
+
"type": "function"
|
509
|
+
},
|
510
|
+
{
|
511
|
+
"inputs": [
|
512
|
+
{
|
513
|
+
"internalType": "bytes32",
|
514
|
+
"name": "",
|
515
|
+
"type": "bytes32"
|
516
|
+
}
|
517
|
+
],
|
518
|
+
"name": "dasKeySetInfo",
|
519
|
+
"outputs": [
|
520
|
+
{
|
521
|
+
"internalType": "bool",
|
522
|
+
"name": "isValidKeyset",
|
523
|
+
"type": "bool"
|
524
|
+
},
|
525
|
+
{
|
526
|
+
"internalType": "uint64",
|
527
|
+
"name": "creationBlock",
|
528
|
+
"type": "uint64"
|
529
|
+
}
|
530
|
+
],
|
531
|
+
"stateMutability": "view",
|
532
|
+
"type": "function"
|
533
|
+
},
|
534
|
+
{
|
535
|
+
"inputs": [
|
536
|
+
{
|
537
|
+
"internalType": "uint256",
|
538
|
+
"name": "_totalDelayedMessagesRead",
|
539
|
+
"type": "uint256"
|
540
|
+
},
|
541
|
+
{
|
542
|
+
"internalType": "uint8",
|
543
|
+
"name": "kind",
|
544
|
+
"type": "uint8"
|
545
|
+
},
|
546
|
+
{
|
547
|
+
"internalType": "uint64[2]",
|
548
|
+
"name": "l1BlockAndTime",
|
549
|
+
"type": "uint64[2]"
|
550
|
+
},
|
551
|
+
{
|
552
|
+
"internalType": "uint256",
|
553
|
+
"name": "baseFeeL1",
|
554
|
+
"type": "uint256"
|
555
|
+
},
|
556
|
+
{
|
557
|
+
"internalType": "address",
|
558
|
+
"name": "sender",
|
559
|
+
"type": "address"
|
560
|
+
},
|
561
|
+
{
|
562
|
+
"internalType": "bytes32",
|
563
|
+
"name": "messageDataHash",
|
564
|
+
"type": "bytes32"
|
565
|
+
}
|
566
|
+
],
|
567
|
+
"name": "forceInclusion",
|
568
|
+
"outputs": [],
|
569
|
+
"stateMutability": "nonpayable",
|
570
|
+
"type": "function"
|
571
|
+
},
|
572
|
+
{
|
573
|
+
"inputs": [
|
574
|
+
{
|
575
|
+
"internalType": "bytes32",
|
576
|
+
"name": "ksHash",
|
577
|
+
"type": "bytes32"
|
578
|
+
}
|
579
|
+
],
|
580
|
+
"name": "getKeysetCreationBlock",
|
581
|
+
"outputs": [
|
582
|
+
{
|
583
|
+
"internalType": "uint256",
|
584
|
+
"name": "",
|
585
|
+
"type": "uint256"
|
586
|
+
}
|
587
|
+
],
|
588
|
+
"stateMutability": "view",
|
589
|
+
"type": "function"
|
590
|
+
},
|
591
|
+
{
|
592
|
+
"inputs": [
|
593
|
+
{
|
594
|
+
"internalType": "uint256",
|
595
|
+
"name": "index",
|
596
|
+
"type": "uint256"
|
597
|
+
}
|
598
|
+
],
|
599
|
+
"name": "inboxAccs",
|
600
|
+
"outputs": [
|
601
|
+
{
|
602
|
+
"internalType": "bytes32",
|
603
|
+
"name": "",
|
604
|
+
"type": "bytes32"
|
605
|
+
}
|
606
|
+
],
|
607
|
+
"stateMutability": "view",
|
608
|
+
"type": "function"
|
609
|
+
},
|
610
|
+
{
|
611
|
+
"inputs": [
|
612
|
+
{
|
613
|
+
"internalType": "contract IBridge",
|
614
|
+
"name": "bridge_",
|
615
|
+
"type": "address"
|
616
|
+
},
|
617
|
+
{
|
618
|
+
"components": [
|
619
|
+
{
|
620
|
+
"internalType": "uint256",
|
621
|
+
"name": "delayBlocks",
|
622
|
+
"type": "uint256"
|
623
|
+
},
|
624
|
+
{
|
625
|
+
"internalType": "uint256",
|
626
|
+
"name": "futureBlocks",
|
627
|
+
"type": "uint256"
|
628
|
+
},
|
629
|
+
{
|
630
|
+
"internalType": "uint256",
|
631
|
+
"name": "delaySeconds",
|
632
|
+
"type": "uint256"
|
633
|
+
},
|
634
|
+
{
|
635
|
+
"internalType": "uint256",
|
636
|
+
"name": "futureSeconds",
|
637
|
+
"type": "uint256"
|
638
|
+
}
|
639
|
+
],
|
640
|
+
"internalType": "struct ISequencerInbox.MaxTimeVariation",
|
641
|
+
"name": "maxTimeVariation_",
|
642
|
+
"type": "tuple"
|
643
|
+
}
|
644
|
+
],
|
645
|
+
"name": "initialize",
|
646
|
+
"outputs": [],
|
647
|
+
"stateMutability": "nonpayable",
|
648
|
+
"type": "function"
|
649
|
+
},
|
650
|
+
{
|
651
|
+
"inputs": [
|
652
|
+
{
|
653
|
+
"internalType": "bytes32",
|
654
|
+
"name": "ksHash",
|
655
|
+
"type": "bytes32"
|
656
|
+
}
|
657
|
+
],
|
658
|
+
"name": "invalidateKeysetHash",
|
659
|
+
"outputs": [],
|
660
|
+
"stateMutability": "nonpayable",
|
661
|
+
"type": "function"
|
662
|
+
},
|
663
|
+
{
|
664
|
+
"inputs": [
|
665
|
+
{
|
666
|
+
"internalType": "address",
|
667
|
+
"name": "",
|
668
|
+
"type": "address"
|
669
|
+
}
|
670
|
+
],
|
671
|
+
"name": "isBatchPoster",
|
672
|
+
"outputs": [
|
673
|
+
{
|
674
|
+
"internalType": "bool",
|
675
|
+
"name": "",
|
676
|
+
"type": "bool"
|
677
|
+
}
|
678
|
+
],
|
679
|
+
"stateMutability": "view",
|
680
|
+
"type": "function"
|
681
|
+
},
|
682
|
+
{
|
683
|
+
"inputs": [
|
684
|
+
{
|
685
|
+
"internalType": "address",
|
686
|
+
"name": "",
|
687
|
+
"type": "address"
|
688
|
+
}
|
689
|
+
],
|
690
|
+
"name": "isSequencer",
|
691
|
+
"outputs": [
|
692
|
+
{
|
693
|
+
"internalType": "bool",
|
694
|
+
"name": "",
|
695
|
+
"type": "bool"
|
696
|
+
}
|
697
|
+
],
|
698
|
+
"stateMutability": "view",
|
699
|
+
"type": "function"
|
700
|
+
},
|
701
|
+
{
|
702
|
+
"inputs": [
|
703
|
+
{
|
704
|
+
"internalType": "bytes32",
|
705
|
+
"name": "ksHash",
|
706
|
+
"type": "bytes32"
|
707
|
+
}
|
708
|
+
],
|
709
|
+
"name": "isValidKeysetHash",
|
710
|
+
"outputs": [
|
711
|
+
{
|
712
|
+
"internalType": "bool",
|
713
|
+
"name": "",
|
714
|
+
"type": "bool"
|
715
|
+
}
|
716
|
+
],
|
717
|
+
"stateMutability": "view",
|
718
|
+
"type": "function"
|
719
|
+
},
|
720
|
+
{
|
721
|
+
"inputs": [],
|
722
|
+
"name": "maxTimeVariation",
|
723
|
+
"outputs": [
|
724
|
+
{
|
725
|
+
"internalType": "uint256",
|
726
|
+
"name": "delayBlocks",
|
727
|
+
"type": "uint256"
|
728
|
+
},
|
729
|
+
{
|
730
|
+
"internalType": "uint256",
|
731
|
+
"name": "futureBlocks",
|
732
|
+
"type": "uint256"
|
733
|
+
},
|
734
|
+
{
|
735
|
+
"internalType": "uint256",
|
736
|
+
"name": "delaySeconds",
|
737
|
+
"type": "uint256"
|
738
|
+
},
|
739
|
+
{
|
740
|
+
"internalType": "uint256",
|
741
|
+
"name": "futureSeconds",
|
742
|
+
"type": "uint256"
|
743
|
+
}
|
744
|
+
],
|
745
|
+
"stateMutability": "view",
|
746
|
+
"type": "function"
|
747
|
+
},
|
748
|
+
{
|
749
|
+
"inputs": [],
|
750
|
+
"name": "removeDelayAfterFork",
|
751
|
+
"outputs": [],
|
752
|
+
"stateMutability": "nonpayable",
|
753
|
+
"type": "function"
|
754
|
+
},
|
755
|
+
{
|
756
|
+
"inputs": [],
|
757
|
+
"name": "rollup",
|
758
|
+
"outputs": [
|
759
|
+
{
|
760
|
+
"internalType": "contract IOwnable",
|
761
|
+
"name": "",
|
762
|
+
"type": "address"
|
763
|
+
}
|
764
|
+
],
|
765
|
+
"stateMutability": "view",
|
766
|
+
"type": "function"
|
767
|
+
},
|
768
|
+
{
|
769
|
+
"inputs": [
|
770
|
+
{
|
771
|
+
"internalType": "address",
|
772
|
+
"name": "addr",
|
773
|
+
"type": "address"
|
774
|
+
},
|
775
|
+
{
|
776
|
+
"internalType": "bool",
|
777
|
+
"name": "isBatchPoster_",
|
778
|
+
"type": "bool"
|
779
|
+
}
|
780
|
+
],
|
781
|
+
"name": "setIsBatchPoster",
|
782
|
+
"outputs": [],
|
783
|
+
"stateMutability": "nonpayable",
|
784
|
+
"type": "function"
|
785
|
+
},
|
786
|
+
{
|
787
|
+
"inputs": [
|
788
|
+
{
|
789
|
+
"internalType": "address",
|
790
|
+
"name": "addr",
|
791
|
+
"type": "address"
|
792
|
+
},
|
793
|
+
{
|
794
|
+
"internalType": "bool",
|
795
|
+
"name": "isSequencer_",
|
796
|
+
"type": "bool"
|
797
|
+
}
|
798
|
+
],
|
799
|
+
"name": "setIsSequencer",
|
800
|
+
"outputs": [],
|
801
|
+
"stateMutability": "nonpayable",
|
802
|
+
"type": "function"
|
803
|
+
},
|
804
|
+
{
|
805
|
+
"inputs": [
|
806
|
+
{
|
807
|
+
"components": [
|
808
|
+
{
|
809
|
+
"internalType": "uint256",
|
810
|
+
"name": "delayBlocks",
|
811
|
+
"type": "uint256"
|
812
|
+
},
|
813
|
+
{
|
814
|
+
"internalType": "uint256",
|
815
|
+
"name": "futureBlocks",
|
816
|
+
"type": "uint256"
|
817
|
+
},
|
818
|
+
{
|
819
|
+
"internalType": "uint256",
|
820
|
+
"name": "delaySeconds",
|
821
|
+
"type": "uint256"
|
822
|
+
},
|
823
|
+
{
|
824
|
+
"internalType": "uint256",
|
825
|
+
"name": "futureSeconds",
|
826
|
+
"type": "uint256"
|
827
|
+
}
|
828
|
+
],
|
829
|
+
"internalType": "struct ISequencerInbox.MaxTimeVariation",
|
830
|
+
"name": "maxTimeVariation_",
|
831
|
+
"type": "tuple"
|
832
|
+
}
|
833
|
+
],
|
834
|
+
"name": "setMaxTimeVariation",
|
835
|
+
"outputs": [],
|
836
|
+
"stateMutability": "nonpayable",
|
837
|
+
"type": "function"
|
838
|
+
},
|
839
|
+
{
|
840
|
+
"inputs": [
|
841
|
+
{
|
842
|
+
"internalType": "bytes",
|
843
|
+
"name": "keysetBytes",
|
844
|
+
"type": "bytes"
|
845
|
+
}
|
846
|
+
],
|
847
|
+
"name": "setValidKeyset",
|
848
|
+
"outputs": [],
|
849
|
+
"stateMutability": "nonpayable",
|
850
|
+
"type": "function"
|
851
|
+
},
|
852
|
+
{
|
853
|
+
"inputs": [],
|
854
|
+
"name": "totalDelayedMessagesRead",
|
855
|
+
"outputs": [
|
856
|
+
{
|
857
|
+
"internalType": "uint256",
|
858
|
+
"name": "",
|
859
|
+
"type": "uint256"
|
860
|
+
}
|
861
|
+
],
|
862
|
+
"stateMutability": "view",
|
863
|
+
"type": "function"
|
864
|
+
}
|
865
|
+
],
|
866
|
+
"bytecode": "0x60c0604052306080524660a0523480156200001957600080fd5b50604051620027c1380380620027c18339810160408190526200003c91620000bf565b600180546001600160a01b039485166001600160a01b03199182161782556002805490911633179055815160045560208083015160055560408084015160065560609093015160075592909316600090815260039092529020805460ff1916909117905562000172565b6001600160a01b0381168114620000bc57600080fd5b50565b600080600083850360c0811215620000d657600080fd5b8451620000e381620000a6565b6020860151909450620000f681620000a6565b92506080603f19820112156200010b57600080fd5b50604051608081016001600160401b03811182821017156200013d57634e487b7160e01b600052604160045260246000fd5b806040525060408501518152606085015160208201526080850151604082015260a08501516060820152809150509250925092565b60805160a051612629620001986000396000610fe40152600061048301526126296000f3fe608060405234801561001057600080fd5b50600436106101635760003560e01c80637fa3a40e116100ce578063d1ce8da811610087578063d1ce8da81461033f578063d9dd67ab14610352578063e0bc972914610365578063e5a358c814610378578063e78cea921461039c578063ebea461d146103af578063f1981578146103e557600080fd5b80637fa3a40e146102ca57806384420860146102d35780638f111f3c146102e657806396cc5c78146102f9578063b31761f814610301578063cb23bcb51461031457600080fd5b80636633ae85116101205780636633ae85146101f95780636d46e9871461020c5780636e7df3e71461022f5780636f12b0c914610242578063715ea34b1461025557806371c3e6fe146102a757600080fd5b806306f13056146101685780631637be48146101835780631f7a92b2146101b65780631f956632146101cb578063258f0495146101de57806327957a49146101f1575b600080fd5b6101706103f8565b6040519081526020015b60405180910390f35b6101a6610191366004611e70565b60009081526008602052604090205460ff1690565b604051901515815260200161017a565b6101c96101c4366004611ea1565b610478565b005b6101c96101d9366004611ef0565b610630565b6101706101ec366004611e70565b610736565b610170602881565b6101c9610207366004611e70565b61079f565b6101a661021a366004611f29565b60096020526000908152604090205460ff1681565b6101c961023d366004611ef0565b61098a565b6101c9610250366004611f95565b610a90565b610288610263366004611e70565b60086020526000908152604090205460ff81169061010090046001600160401b031682565b6040805192151583526001600160401b0390911660208301520161017a565b6101a66102b5366004611f29565b60036020526000908152604090205460ff1681565b61017060005481565b6101c96102e1366004611e70565b610c7f565b6101c96102f4366004611fff565b610dd2565b6101c9610fe1565b6101c961030f36600461207b565b611058565b600254610327906001600160a01b031681565b6040516001600160a01b03909116815260200161017a565b6101c961034d3660046120ee565b611158565b610170610360366004611e70565b6113a0565b6101c9610373366004611fff565b611423565b610383600160fe1b81565b6040516001600160f81b0319909116815260200161017a565b600154610327906001600160a01b031681565b6004546005546006546007546103c59392919084565b60408051948552602085019390935291830152606082015260800161017a565b6101c96103f336600461212f565b611578565b600154604080516221048360e21b815290516000926001600160a01b0316916284120c916004808301926020929190829003018186803b15801561043b57600080fd5b505afa15801561044f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610473919061219f565b905090565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016141561050b5760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b19195b1959d85d1958d85b1b60a21b60648201526084015b60405180910390fd5b6001546001600160a01b03161561053557604051633bcd329760e21b815260040160405180910390fd5b6001600160a01b03821661055c57604051631ad0f74360e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b0384169081179091556040805163cb23bcb560e01b8152905163cb23bcb591600480820192602092909190829003018186803b1580156105b057600080fd5b505afa1580156105c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e891906121b8565b600280546001600160a01b0319166001600160a01b03929092169190911790558035600490815560208201356005556040820135600655606082013560075581905b50505050565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561067e57600080fd5b505afa158015610692573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b691906121b8565b6001600160a01b0316336001600160a01b0316146106f857600254604051631194af8760e11b81526105029133916001600160a01b03909116906004016121d5565b6001600160a01b038216600090815260096020526040808220805460ff1916841515179055516004916000805160206125d483398151915291a25050565b600081815260086020908152604080832081518083019092525460ff81161515825261010090046001600160401b03169181018290529061078c5760405162f20c5d60e01b815260048101849052602401610502565b602001516001600160401b031692915050565b6000816040516020016107b491815260200190565b60408051808303601f190181529082905260015481516020830120638db5993b60e01b8452600b6004850152600060248501819052604485019190915291935090916001600160a01b0390911690638db5993b90606401602060405180830381600087803b15801561082557600080fd5b505af1158015610839573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085d919061219f565b905080156108a45760405162461bcd60e51b81526020600482015260146024820152731053149150511657d111531056515117d253925560621b6044820152606401610502565b807fff64905f73a67fb594e0f940a8075a860db489ad991e032f48c81123eb52d60b836040516108d4919061221b565b60405180910390a26000806108e9600161195b565b915091506000806000806109038660016000806001611987565b93509350935093508360001461094e5760405162461bcd60e51b815260206004820152601060248201526f1053149150511657d4d15457d253925560821b6044820152606401610502565b8083856000805160206125b4833981519152856000548a6002604051610977949392919061224e565b60405180910390a4505050505050505050565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156109d857600080fd5b505afa1580156109ec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1091906121b8565b6001600160a01b0316336001600160a01b031614610a5257600254604051631194af8760e11b81526105029133916001600160a01b03909116906004016121d5565b6001600160a01b038216600090815260036020526040808220805460ff1916841515179055516001916000805160206125d483398151915291a25050565b8060005a9050333214610ab65760405163feb3d07160e01b815260040160405180910390fd5b3360009081526003602052604090205460ff16610ae657604051632dd9fc9760e01b815260040160405180910390fd5b600080610af4888888611c24565b90925090506000808080610b0b868b8d8480611987565b93509350935093508c8414610b3d5760405163ac7411c960e01b815260048101859052602481018e9052604401610502565b80838e6000805160206125b4833981519152856000548a6000604051610b66949392919061224e565b60405180910390a4505050506001600160a01b038416159150610c769050573660006020610b9583601f6122d8565b610b9f91906122f0565b9050610200610baf6002836123f6565b610bb991906122f0565b610bc4826006612405565b610bce91906122d8565b610bd890846122d8565b9250333214610be657600091505b836001600160a01b031663e3db8a49335a610c019087612424565b856040518463ffffffff1660e01b8152600401610c209392919061243b565b602060405180830381600087803b158015610c3a57600080fd5b505af1158015610c4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c72919061245c565b5050505b50505050505050565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ccd57600080fd5b505afa158015610ce1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0591906121b8565b6001600160a01b0316336001600160a01b031614610d4757600254604051631194af8760e11b81526105029133916001600160a01b03909116906004016121d5565b60008181526008602052604090205460ff16610d785760405162f20c5d60e01b815260048101829052602401610502565b600081815260086020526040808220805460ff191690555182917f5cb4218b272fd214168ac43e90fb4d05d6c36f0b17ffb4c2dd07c234d744eb2a91a26040516003906000805160206125d483398151915290600090a250565b8260005a9050333214610df85760405163feb3d07160e01b815260040160405180910390fd5b3360009081526003602052604090205460ff16610e2857604051632dd9fc9760e01b815260040160405180910390fd5b600080610e368a8a8a611c24565b90925090508a81838b8b8a8a6000808080610e5489888a8989611987565b93509350935093508a8414158015610e6e57506000198b14155b15610e965760405163ac7411c960e01b815260048101859052602481018c9052604401610502565b8083856000805160206125b4833981519152856000548f6000604051610ebf949392919061224e565b60405180910390a4505050506001600160a01b038b16159850610fd6975050505050505050573660006020610ef583601f6122d8565b610eff91906122f0565b9050610200610f0f6002836123f6565b610f1991906122f0565b610f24826006612405565b610f2e91906122d8565b610f3890846122d8565b9250333214610f4657600091505b836001600160a01b031663e3db8a49335a610f619087612424565b856040518463ffffffff1660e01b8152600401610f809392919061243b565b602060405180830381600087803b158015610f9a57600080fd5b505af1158015610fae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd2919061245c565b5050505b505050505050505050565b467f0000000000000000000000000000000000000000000000000000000000000000141561102257604051635180dd8360e11b815260040160405180910390fd5b60408051608081018252600180825260208201819052918101829052606001819052600481905560058190556006819055600755565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156110a657600080fd5b505afa1580156110ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110de91906121b8565b6001600160a01b0316336001600160a01b03161461112057600254604051631194af8760e11b81526105029133916001600160a01b03909116906004016121d5565b805160045560208101516005556040808201516006556060820151600755516000906000805160206125d4833981519152908290a250565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156111a657600080fd5b505afa1580156111ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111de91906121b8565b6001600160a01b0316336001600160a01b03161461122057600254604051631194af8760e11b81526105029133916001600160a01b03909116906004016121d5565b60008282604051611232929190612479565b604051908190038120607f60f91b6020830152602182015260410160408051601f1981840301815291905280516020909101209050600160ff1b81186201000083106112b65760405162461bcd60e51b81526020600482015260136024820152726b657973657420697320746f6f206c6172676560681b6044820152606401610502565b60008181526008602052604090205460ff16156112e957604051637d17eeed60e11b815260048101829052602401610502565b60408051808201825260018152436001600160401b0390811660208084019182526000868152600890915284902092518354915168ffffffffffffffffff1990921690151568ffffffffffffffff0019161761010091909216021790555181907fabca9b7986bc22ad0160eb0cb88ae75411eacfba4052af0b457a9335ef655722906113789087908790612489565b60405180910390a26040516002906000805160206125d483398151915290600090a250505050565b6001546040516316bf557960e01b8152600481018390526000916001600160a01b0316906316bf55799060240160206040518083038186803b1580156113e557600080fd5b505afa1580156113f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141d919061219f565b92915050565b8260005a3360009081526003602052604090205490915060ff1615801561145557506002546001600160a01b03163314155b1561147357604051632dd9fc9760e01b815260040160405180910390fd5b6000806114818a8a8a611c24565b909250905060008b82848b8a8a86808061149e8787838888611987565b929c5090945092509050888a148015906114ba57506000198914155b156114e25760405163ac7411c960e01b8152600481018b9052602481018a9052604401610502565b80838b6000805160206125b4833981519152856000548d600160405161150b949392919061224e565b60405180910390a4505050505050505050807ffe325ca1efe4c5c1062c981c3ee74b781debe4ea9440306a96d2a55759c66c208c8c60405161154e929190612489565b60405180910390a25050506001600160a01b03821615610fd6573660006020610ef583601f6122d8565b600054861161159a57604051633eb9f37d60e11b815260040160405180910390fd5b600061164a86846115ae60208901896124ce565b6115be60408a0160208b016124ce565b6115c960018d612424565b6040805160f89690961b6001600160f81b03191660208088019190915260609590951b6001600160601b031916602187015260c093841b6001600160c01b031990811660358801529290931b909116603d85015260458401526065830188905260858084018790528151808503909101815260a59093019052815191012090565b600454909150439061165f60208801886124ce565b6001600160401b031661167291906122d8565b106116905760405163ad3515d960e01b815260040160405180910390fd5b60065442906116a560408801602089016124ce565b6001600160401b03166116b891906122d8565b106116d65760405163c76d17e560e01b815260040160405180910390fd5b6000600188111561176e576001546001600160a01b031663d5719dc26116fd60028b612424565b6040518263ffffffff1660e01b815260040161171b91815260200190565b60206040518083038186803b15801561173357600080fd5b505afa158015611747573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061176b919061219f565b90505b60408051602080820184905281830185905282518083038401815260609092019092528051910120600180546001600160a01b03169063d5719dc2906117b4908c612424565b6040518263ffffffff1660e01b81526004016117d291815260200190565b60206040518083038186803b1580156117ea57600080fd5b505afa1580156117fe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611822919061219f565b14611840576040516313947fd760e01b815260040160405180910390fd5b60008061184c8a61195b565b9150915060008a90506000600160009054906101000a90046001600160a01b03166001600160a01b0316635fca4a166040518163ffffffff1660e01b815260040160206040518083038186803b1580156118a557600080fd5b505afa1580156118b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118dd919061219f565b9050600080548d836118ef91906122d8565b6118f99190612424565b905060008060008061190f898860008989611987565b93509350935093508083856000805160206125b4833981519152856000548d6002604051611940949392919061224e565b60405180910390a45050505050505050505050505050505050565b6000611965611e49565b60008061197185611d97565b8151602090920191909120969095509350505050565b6000806000806000548810156119b057604051633eb9f37d60e11b815260040160405180910390fd5b600160009054906101000a90046001600160a01b03166001600160a01b031663eca067ad6040518163ffffffff1660e01b815260040160206040518083038186803b1580156119fe57600080fd5b505afa158015611a12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a36919061219f565b881115611a565760405163925f8bd360e01b815260040160405180910390fd5b60015460405163432cc52b60e11b8152600481018b9052602481018a905260448101889052606481018790526001600160a01b03909116906386598a5690608401608060405180830381600087803b158015611ab157600080fd5b505af1158015611ac5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae991906124f7565b60008c9055929650909450925090508615611c18576040805142602082015233606081901b6001600160601b03191692820192909252605481018b90526074810186905248609482015260009060b40160408051808303601f190181529082905260015481516020830120637a88b10760e01b84526001600160a01b0386811660048601526024850191909152919350600092911690637a88b10790604401602060405180830381600087803b158015611ba257600080fd5b505af1158015611bb6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bda919061219f565b9050807fff64905f73a67fb594e0f940a8075a860db489ad991e032f48c81123eb52d60b83604051611c0c919061221b565b60405180910390a25050505b95509550955095915050565b6000611c2e611e49565b84846000611c3d8260286122d8565b90506201cccc811115611c6f57604051634634691b60e01b8152600481018290526201cccc6024820152604401610502565b8115801590611ca75750600160fe1b808484600081611c9057611c906124b8565b9050013560f81c60f81b166001600160f81b031916145b15611cc557604051631f97007f60e01b815260040160405180910390fd5b60218210801590611cf3575082826000818110611ce457611ce46124b8565b90910135600160ff1b16151590505b15611d47576000611d0860216001858761252d565b611d1191612557565b60008181526008602052604090205490915060ff16611d455760405162f20c5d60e01b815260048101829052602401610502565b505b600080611d5388611d97565b915091506000828b8b604051602001611d6e93929190612575565b60408051808303601f1901815291905280516020909101209b919a509098505050505050505050565b6060611da1611e49565b6000611dab611e3e565b90506000816000015182602001518360400151846060015188604051602001611e1395949392919060c095861b6001600160c01b0319908116825294861b8516600882015292851b8416601084015290841b8316601883015290921b16602082015260280190565b60405160208183030381529060405290506028815114611e3557611e3561259d565b94909350915050565b611e46611e49565b90565b60408051608081018252600080825260208201819052918101829052606081019190915290565b600060208284031215611e8257600080fd5b5035919050565b6001600160a01b0381168114611e9e57600080fd5b50565b60008082840360a0811215611eb557600080fd5b8335611ec081611e89565b92506080601f1982011215611ed457600080fd5b506020830190509250929050565b8015158114611e9e57600080fd5b60008060408385031215611f0357600080fd5b8235611f0e81611e89565b91506020830135611f1e81611ee2565b809150509250929050565b600060208284031215611f3b57600080fd5b8135611f4681611e89565b9392505050565b60008083601f840112611f5f57600080fd5b5081356001600160401b03811115611f7657600080fd5b602083019150836020828501011115611f8e57600080fd5b9250929050565b600080600080600060808688031215611fad57600080fd5b8535945060208601356001600160401b03811115611fca57600080fd5b611fd688828901611f4d565b909550935050604086013591506060860135611ff181611e89565b809150509295509295909350565b600080600080600080600060c0888a03121561201a57600080fd5b8735965060208801356001600160401b0381111561203757600080fd5b6120438a828b01611f4d565b90975095505060408801359350606088013561205e81611e89565b969995985093969295946080840135945060a09093013592915050565b60006080828403121561208d57600080fd5b604051608081018181106001600160401b03821117156120bd57634e487b7160e01b600052604160045260246000fd5b8060405250823581526020830135602082015260408301356040820152606083013560608201528091505092915050565b6000806020838503121561210157600080fd5b82356001600160401b0381111561211757600080fd5b61212385828601611f4d565b90969095509350505050565b60008060008060008060e0878903121561214857600080fd5b86359550602087013560ff8116811461216057600080fd5b9450608087018881111561217357600080fd5b60408801945035925060a087013561218a81611e89565b8092505060c087013590509295509295509295565b6000602082840312156121b157600080fd5b5051919050565b6000602082840312156121ca57600080fd5b8151611f4681611e89565b6001600160a01b0392831681529116602082015260400190565b60005b8381101561220a5781810151838201526020016121f2565b8381111561062a5750506000910152565b602081526000825180602084015261223a8160408501602087016121ef565b601f01601f19169190910160400192915050565b600060e0820190508582528460208301526001600160401b038085511660408401528060208601511660608401528060408601511660808401528060608601511660a084015250600383106122b357634e487b7160e01b600052602160045260246000fd5b8260c083015295945050505050565b634e487b7160e01b600052601160045260246000fd5b600082198211156122eb576122eb6122c2565b500190565b60008261230d57634e487b7160e01b600052601260045260246000fd5b500490565b600181815b8085111561234d578160001904821115612333576123336122c2565b8085161561234057918102915b93841c9390800290612317565b509250929050565b6000826123645750600161141d565b816123715750600061141d565b81600181146123875760028114612391576123ad565b600191505061141d565b60ff8411156123a2576123a26122c2565b50506001821b61141d565b5060208310610133831016604e8410600b84101617156123d0575081810a61141d565b6123da8383612312565b80600019048211156123ee576123ee6122c2565b029392505050565b6000611f4660ff841683612355565b600081600019048311821515161561241f5761241f6122c2565b500290565b600082821015612436576124366122c2565b500390565b6001600160a01b039390931683526020830191909152604082015260600190565b60006020828403121561246e57600080fd5b8151611f4681611ee2565b8183823760009101908152919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156124e057600080fd5b81356001600160401b0381168114611f4657600080fd5b6000806000806080858703121561250d57600080fd5b505082516020840151604085015160609095015191969095509092509050565b6000808585111561253d57600080fd5b8386111561254a57600080fd5b5050820193919092039150565b8035602083101561141d57600019602084900360031b1b1692915050565b600084516125878184602089016121ef565b8201838582376000930192835250909392505050565b634e487b7160e01b600052600160045260246000fdfe7394f4a19a13c7b92b5bb71033245305946ef78452f7b4986ac1390b5df4ebd7ea8787f128d10b2cc0317b0c3960f9ad447f7f6c1ed189db1083ccffd20f456ea2646970667358221220104bab138983ac4cbba7c73e6e3c67b90903df76c352446149d30d9d7eac423f64736f6c63430008090033",
|
867
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101635760003560e01c80637fa3a40e116100ce578063d1ce8da811610087578063d1ce8da81461033f578063d9dd67ab14610352578063e0bc972914610365578063e5a358c814610378578063e78cea921461039c578063ebea461d146103af578063f1981578146103e557600080fd5b80637fa3a40e146102ca57806384420860146102d35780638f111f3c146102e657806396cc5c78146102f9578063b31761f814610301578063cb23bcb51461031457600080fd5b80636633ae85116101205780636633ae85146101f95780636d46e9871461020c5780636e7df3e71461022f5780636f12b0c914610242578063715ea34b1461025557806371c3e6fe146102a757600080fd5b806306f13056146101685780631637be48146101835780631f7a92b2146101b65780631f956632146101cb578063258f0495146101de57806327957a49146101f1575b600080fd5b6101706103f8565b6040519081526020015b60405180910390f35b6101a6610191366004611e70565b60009081526008602052604090205460ff1690565b604051901515815260200161017a565b6101c96101c4366004611ea1565b610478565b005b6101c96101d9366004611ef0565b610630565b6101706101ec366004611e70565b610736565b610170602881565b6101c9610207366004611e70565b61079f565b6101a661021a366004611f29565b60096020526000908152604090205460ff1681565b6101c961023d366004611ef0565b61098a565b6101c9610250366004611f95565b610a90565b610288610263366004611e70565b60086020526000908152604090205460ff81169061010090046001600160401b031682565b6040805192151583526001600160401b0390911660208301520161017a565b6101a66102b5366004611f29565b60036020526000908152604090205460ff1681565b61017060005481565b6101c96102e1366004611e70565b610c7f565b6101c96102f4366004611fff565b610dd2565b6101c9610fe1565b6101c961030f36600461207b565b611058565b600254610327906001600160a01b031681565b6040516001600160a01b03909116815260200161017a565b6101c961034d3660046120ee565b611158565b610170610360366004611e70565b6113a0565b6101c9610373366004611fff565b611423565b610383600160fe1b81565b6040516001600160f81b0319909116815260200161017a565b600154610327906001600160a01b031681565b6004546005546006546007546103c59392919084565b60408051948552602085019390935291830152606082015260800161017a565b6101c96103f336600461212f565b611578565b600154604080516221048360e21b815290516000926001600160a01b0316916284120c916004808301926020929190829003018186803b15801561043b57600080fd5b505afa15801561044f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610473919061219f565b905090565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016141561050b5760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b19195b1959d85d1958d85b1b60a21b60648201526084015b60405180910390fd5b6001546001600160a01b03161561053557604051633bcd329760e21b815260040160405180910390fd5b6001600160a01b03821661055c57604051631ad0f74360e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b0384169081179091556040805163cb23bcb560e01b8152905163cb23bcb591600480820192602092909190829003018186803b1580156105b057600080fd5b505afa1580156105c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e891906121b8565b600280546001600160a01b0319166001600160a01b03929092169190911790558035600490815560208201356005556040820135600655606082013560075581905b50505050565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561067e57600080fd5b505afa158015610692573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b691906121b8565b6001600160a01b0316336001600160a01b0316146106f857600254604051631194af8760e11b81526105029133916001600160a01b03909116906004016121d5565b6001600160a01b038216600090815260096020526040808220805460ff1916841515179055516004916000805160206125d483398151915291a25050565b600081815260086020908152604080832081518083019092525460ff81161515825261010090046001600160401b03169181018290529061078c5760405162f20c5d60e01b815260048101849052602401610502565b602001516001600160401b031692915050565b6000816040516020016107b491815260200190565b60408051808303601f190181529082905260015481516020830120638db5993b60e01b8452600b6004850152600060248501819052604485019190915291935090916001600160a01b0390911690638db5993b90606401602060405180830381600087803b15801561082557600080fd5b505af1158015610839573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085d919061219f565b905080156108a45760405162461bcd60e51b81526020600482015260146024820152731053149150511657d111531056515117d253925560621b6044820152606401610502565b807fff64905f73a67fb594e0f940a8075a860db489ad991e032f48c81123eb52d60b836040516108d4919061221b565b60405180910390a26000806108e9600161195b565b915091506000806000806109038660016000806001611987565b93509350935093508360001461094e5760405162461bcd60e51b815260206004820152601060248201526f1053149150511657d4d15457d253925560821b6044820152606401610502565b8083856000805160206125b4833981519152856000548a6002604051610977949392919061224e565b60405180910390a4505050505050505050565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156109d857600080fd5b505afa1580156109ec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1091906121b8565b6001600160a01b0316336001600160a01b031614610a5257600254604051631194af8760e11b81526105029133916001600160a01b03909116906004016121d5565b6001600160a01b038216600090815260036020526040808220805460ff1916841515179055516001916000805160206125d483398151915291a25050565b8060005a9050333214610ab65760405163feb3d07160e01b815260040160405180910390fd5b3360009081526003602052604090205460ff16610ae657604051632dd9fc9760e01b815260040160405180910390fd5b600080610af4888888611c24565b90925090506000808080610b0b868b8d8480611987565b93509350935093508c8414610b3d5760405163ac7411c960e01b815260048101859052602481018e9052604401610502565b80838e6000805160206125b4833981519152856000548a6000604051610b66949392919061224e565b60405180910390a4505050506001600160a01b038416159150610c769050573660006020610b9583601f6122d8565b610b9f91906122f0565b9050610200610baf6002836123f6565b610bb991906122f0565b610bc4826006612405565b610bce91906122d8565b610bd890846122d8565b9250333214610be657600091505b836001600160a01b031663e3db8a49335a610c019087612424565b856040518463ffffffff1660e01b8152600401610c209392919061243b565b602060405180830381600087803b158015610c3a57600080fd5b505af1158015610c4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c72919061245c565b5050505b50505050505050565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ccd57600080fd5b505afa158015610ce1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0591906121b8565b6001600160a01b0316336001600160a01b031614610d4757600254604051631194af8760e11b81526105029133916001600160a01b03909116906004016121d5565b60008181526008602052604090205460ff16610d785760405162f20c5d60e01b815260048101829052602401610502565b600081815260086020526040808220805460ff191690555182917f5cb4218b272fd214168ac43e90fb4d05d6c36f0b17ffb4c2dd07c234d744eb2a91a26040516003906000805160206125d483398151915290600090a250565b8260005a9050333214610df85760405163feb3d07160e01b815260040160405180910390fd5b3360009081526003602052604090205460ff16610e2857604051632dd9fc9760e01b815260040160405180910390fd5b600080610e368a8a8a611c24565b90925090508a81838b8b8a8a6000808080610e5489888a8989611987565b93509350935093508a8414158015610e6e57506000198b14155b15610e965760405163ac7411c960e01b815260048101859052602481018c9052604401610502565b8083856000805160206125b4833981519152856000548f6000604051610ebf949392919061224e565b60405180910390a4505050506001600160a01b038b16159850610fd6975050505050505050573660006020610ef583601f6122d8565b610eff91906122f0565b9050610200610f0f6002836123f6565b610f1991906122f0565b610f24826006612405565b610f2e91906122d8565b610f3890846122d8565b9250333214610f4657600091505b836001600160a01b031663e3db8a49335a610f619087612424565b856040518463ffffffff1660e01b8152600401610f809392919061243b565b602060405180830381600087803b158015610f9a57600080fd5b505af1158015610fae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd2919061245c565b5050505b505050505050505050565b467f0000000000000000000000000000000000000000000000000000000000000000141561102257604051635180dd8360e11b815260040160405180910390fd5b60408051608081018252600180825260208201819052918101829052606001819052600481905560058190556006819055600755565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156110a657600080fd5b505afa1580156110ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110de91906121b8565b6001600160a01b0316336001600160a01b03161461112057600254604051631194af8760e11b81526105029133916001600160a01b03909116906004016121d5565b805160045560208101516005556040808201516006556060820151600755516000906000805160206125d4833981519152908290a250565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156111a657600080fd5b505afa1580156111ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111de91906121b8565b6001600160a01b0316336001600160a01b03161461122057600254604051631194af8760e11b81526105029133916001600160a01b03909116906004016121d5565b60008282604051611232929190612479565b604051908190038120607f60f91b6020830152602182015260410160408051601f1981840301815291905280516020909101209050600160ff1b81186201000083106112b65760405162461bcd60e51b81526020600482015260136024820152726b657973657420697320746f6f206c6172676560681b6044820152606401610502565b60008181526008602052604090205460ff16156112e957604051637d17eeed60e11b815260048101829052602401610502565b60408051808201825260018152436001600160401b0390811660208084019182526000868152600890915284902092518354915168ffffffffffffffffff1990921690151568ffffffffffffffff0019161761010091909216021790555181907fabca9b7986bc22ad0160eb0cb88ae75411eacfba4052af0b457a9335ef655722906113789087908790612489565b60405180910390a26040516002906000805160206125d483398151915290600090a250505050565b6001546040516316bf557960e01b8152600481018390526000916001600160a01b0316906316bf55799060240160206040518083038186803b1580156113e557600080fd5b505afa1580156113f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141d919061219f565b92915050565b8260005a3360009081526003602052604090205490915060ff1615801561145557506002546001600160a01b03163314155b1561147357604051632dd9fc9760e01b815260040160405180910390fd5b6000806114818a8a8a611c24565b909250905060008b82848b8a8a86808061149e8787838888611987565b929c5090945092509050888a148015906114ba57506000198914155b156114e25760405163ac7411c960e01b8152600481018b9052602481018a9052604401610502565b80838b6000805160206125b4833981519152856000548d600160405161150b949392919061224e565b60405180910390a4505050505050505050807ffe325ca1efe4c5c1062c981c3ee74b781debe4ea9440306a96d2a55759c66c208c8c60405161154e929190612489565b60405180910390a25050506001600160a01b03821615610fd6573660006020610ef583601f6122d8565b600054861161159a57604051633eb9f37d60e11b815260040160405180910390fd5b600061164a86846115ae60208901896124ce565b6115be60408a0160208b016124ce565b6115c960018d612424565b6040805160f89690961b6001600160f81b03191660208088019190915260609590951b6001600160601b031916602187015260c093841b6001600160c01b031990811660358801529290931b909116603d85015260458401526065830188905260858084018790528151808503909101815260a59093019052815191012090565b600454909150439061165f60208801886124ce565b6001600160401b031661167291906122d8565b106116905760405163ad3515d960e01b815260040160405180910390fd5b60065442906116a560408801602089016124ce565b6001600160401b03166116b891906122d8565b106116d65760405163c76d17e560e01b815260040160405180910390fd5b6000600188111561176e576001546001600160a01b031663d5719dc26116fd60028b612424565b6040518263ffffffff1660e01b815260040161171b91815260200190565b60206040518083038186803b15801561173357600080fd5b505afa158015611747573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061176b919061219f565b90505b60408051602080820184905281830185905282518083038401815260609092019092528051910120600180546001600160a01b03169063d5719dc2906117b4908c612424565b6040518263ffffffff1660e01b81526004016117d291815260200190565b60206040518083038186803b1580156117ea57600080fd5b505afa1580156117fe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611822919061219f565b14611840576040516313947fd760e01b815260040160405180910390fd5b60008061184c8a61195b565b9150915060008a90506000600160009054906101000a90046001600160a01b03166001600160a01b0316635fca4a166040518163ffffffff1660e01b815260040160206040518083038186803b1580156118a557600080fd5b505afa1580156118b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118dd919061219f565b9050600080548d836118ef91906122d8565b6118f99190612424565b905060008060008061190f898860008989611987565b93509350935093508083856000805160206125b4833981519152856000548d6002604051611940949392919061224e565b60405180910390a45050505050505050505050505050505050565b6000611965611e49565b60008061197185611d97565b8151602090920191909120969095509350505050565b6000806000806000548810156119b057604051633eb9f37d60e11b815260040160405180910390fd5b600160009054906101000a90046001600160a01b03166001600160a01b031663eca067ad6040518163ffffffff1660e01b815260040160206040518083038186803b1580156119fe57600080fd5b505afa158015611a12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a36919061219f565b881115611a565760405163925f8bd360e01b815260040160405180910390fd5b60015460405163432cc52b60e11b8152600481018b9052602481018a905260448101889052606481018790526001600160a01b03909116906386598a5690608401608060405180830381600087803b158015611ab157600080fd5b505af1158015611ac5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae991906124f7565b60008c9055929650909450925090508615611c18576040805142602082015233606081901b6001600160601b03191692820192909252605481018b90526074810186905248609482015260009060b40160408051808303601f190181529082905260015481516020830120637a88b10760e01b84526001600160a01b0386811660048601526024850191909152919350600092911690637a88b10790604401602060405180830381600087803b158015611ba257600080fd5b505af1158015611bb6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bda919061219f565b9050807fff64905f73a67fb594e0f940a8075a860db489ad991e032f48c81123eb52d60b83604051611c0c919061221b565b60405180910390a25050505b95509550955095915050565b6000611c2e611e49565b84846000611c3d8260286122d8565b90506201cccc811115611c6f57604051634634691b60e01b8152600481018290526201cccc6024820152604401610502565b8115801590611ca75750600160fe1b808484600081611c9057611c906124b8565b9050013560f81c60f81b166001600160f81b031916145b15611cc557604051631f97007f60e01b815260040160405180910390fd5b60218210801590611cf3575082826000818110611ce457611ce46124b8565b90910135600160ff1b16151590505b15611d47576000611d0860216001858761252d565b611d1191612557565b60008181526008602052604090205490915060ff16611d455760405162f20c5d60e01b815260048101829052602401610502565b505b600080611d5388611d97565b915091506000828b8b604051602001611d6e93929190612575565b60408051808303601f1901815291905280516020909101209b919a509098505050505050505050565b6060611da1611e49565b6000611dab611e3e565b90506000816000015182602001518360400151846060015188604051602001611e1395949392919060c095861b6001600160c01b0319908116825294861b8516600882015292851b8416601084015290841b8316601883015290921b16602082015260280190565b60405160208183030381529060405290506028815114611e3557611e3561259d565b94909350915050565b611e46611e49565b90565b60408051608081018252600080825260208201819052918101829052606081019190915290565b600060208284031215611e8257600080fd5b5035919050565b6001600160a01b0381168114611e9e57600080fd5b50565b60008082840360a0811215611eb557600080fd5b8335611ec081611e89565b92506080601f1982011215611ed457600080fd5b506020830190509250929050565b8015158114611e9e57600080fd5b60008060408385031215611f0357600080fd5b8235611f0e81611e89565b91506020830135611f1e81611ee2565b809150509250929050565b600060208284031215611f3b57600080fd5b8135611f4681611e89565b9392505050565b60008083601f840112611f5f57600080fd5b5081356001600160401b03811115611f7657600080fd5b602083019150836020828501011115611f8e57600080fd5b9250929050565b600080600080600060808688031215611fad57600080fd5b8535945060208601356001600160401b03811115611fca57600080fd5b611fd688828901611f4d565b909550935050604086013591506060860135611ff181611e89565b809150509295509295909350565b600080600080600080600060c0888a03121561201a57600080fd5b8735965060208801356001600160401b0381111561203757600080fd5b6120438a828b01611f4d565b90975095505060408801359350606088013561205e81611e89565b969995985093969295946080840135945060a09093013592915050565b60006080828403121561208d57600080fd5b604051608081018181106001600160401b03821117156120bd57634e487b7160e01b600052604160045260246000fd5b8060405250823581526020830135602082015260408301356040820152606083013560608201528091505092915050565b6000806020838503121561210157600080fd5b82356001600160401b0381111561211757600080fd5b61212385828601611f4d565b90969095509350505050565b60008060008060008060e0878903121561214857600080fd5b86359550602087013560ff8116811461216057600080fd5b9450608087018881111561217357600080fd5b60408801945035925060a087013561218a81611e89565b8092505060c087013590509295509295509295565b6000602082840312156121b157600080fd5b5051919050565b6000602082840312156121ca57600080fd5b8151611f4681611e89565b6001600160a01b0392831681529116602082015260400190565b60005b8381101561220a5781810151838201526020016121f2565b8381111561062a5750506000910152565b602081526000825180602084015261223a8160408501602087016121ef565b601f01601f19169190910160400192915050565b600060e0820190508582528460208301526001600160401b038085511660408401528060208601511660608401528060408601511660808401528060608601511660a084015250600383106122b357634e487b7160e01b600052602160045260246000fd5b8260c083015295945050505050565b634e487b7160e01b600052601160045260246000fd5b600082198211156122eb576122eb6122c2565b500190565b60008261230d57634e487b7160e01b600052601260045260246000fd5b500490565b600181815b8085111561234d578160001904821115612333576123336122c2565b8085161561234057918102915b93841c9390800290612317565b509250929050565b6000826123645750600161141d565b816123715750600061141d565b81600181146123875760028114612391576123ad565b600191505061141d565b60ff8411156123a2576123a26122c2565b50506001821b61141d565b5060208310610133831016604e8410600b84101617156123d0575081810a61141d565b6123da8383612312565b80600019048211156123ee576123ee6122c2565b029392505050565b6000611f4660ff841683612355565b600081600019048311821515161561241f5761241f6122c2565b500290565b600082821015612436576124366122c2565b500390565b6001600160a01b039390931683526020830191909152604082015260600190565b60006020828403121561246e57600080fd5b8151611f4681611ee2565b8183823760009101908152919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156124e057600080fd5b81356001600160401b0381168114611f4657600080fd5b6000806000806080858703121561250d57600080fd5b505082516020840151604085015160609095015191969095509092509050565b6000808585111561253d57600080fd5b8386111561254a57600080fd5b5050820193919092039150565b8035602083101561141d57600019602084900360031b1b1692915050565b600084516125878184602089016121ef565b8201838582376000930192835250909392505050565b634e487b7160e01b600052600160045260246000fdfe7394f4a19a13c7b92b5bb71033245305946ef78452f7b4986ac1390b5df4ebd7ea8787f128d10b2cc0317b0c3960f9ad447f7f6c1ed189db1083ccffd20f456ea2646970667358221220104bab138983ac4cbba7c73e6e3c67b90903df76c352446149d30d9d7eac423f64736f6c63430008090033",
|
868
|
+
"linkReferences": {},
|
869
|
+
"deployedLinkReferences": {}
|
870
|
+
}
|