@etherisc/gif-next 0.0.2-e6a90b9 → 0.0.2-e6ad61d-739
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +33 -0
 - package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
 - package/artifacts/contracts/components/Component.sol/Component.json +35 -9
 - package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +1 -1
 - package/artifacts/contracts/components/Component.sol/InstanceLinked.json +2 -2
 - package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +84 -8
 - package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +34 -152
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/components/Pool.sol/Pool.json +146 -13
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/components/Product.sol/Product.json +148 -15
 - package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
 - package/artifacts/contracts/experiment/errors/Require.sol/Require.json +2 -2
 - package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
 - package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +2 -2
 - package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/A.sol/A.json +2 -2
 - package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +2 -2
 - package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +4 -0
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +59 -0
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +4 -0
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +124 -0
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +4 -0
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +74 -0
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +4 -0
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +124 -0
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +4 -0
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +207 -0
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +2 -2
 - package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
 - package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +2 -2
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +714 -127
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +845 -129
 - package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +1 -1
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +1 -1
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +1 -1
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +1 -1
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +1 -1
 - package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +1 -1
 - package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +31 -59
 - package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +1 -1
 - package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +103 -6
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +1 -1
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +1 -1
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +34 -8
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +1 -1
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +31 -59
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +1 -1
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +50 -3
 - package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +1 -1
 - package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +4 -0
 - package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +134 -0
 - package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +4 -0
 - package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.json +182 -0
 - package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +4 -0
 - package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +221 -0
 - package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +1 -1
 - package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +1 -1
 - package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +44 -21
 - package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +1 -1
 - package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +44 -21
 - package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +1 -1
 - package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +1 -1
 - package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +23 -43
 - package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +1 -1
 - package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +28 -35
 - package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +1 -1
 - package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +21 -8
 - package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +1 -1
 - package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +85 -14
 - package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +4 -0
 - package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.json +10 -0
 - package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +4 -0
 - package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +490 -0
 - package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +4 -0
 - package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +45 -0
 - package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +4 -0
 - package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +490 -0
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
 - package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +8 -8
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +20 -111
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registerable.json +9 -9
 - package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.json +66 -115
 - package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +2 -2
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +174 -0
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +2 -2
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.json +85 -3
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +92 -0
 - package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/StateId.sol/StateIdLib.json +92 -0
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +174 -0
 - package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +4 -0
 - package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +479 -0
 - package/contracts/components/Component.sol +39 -24
 - package/contracts/components/IPool.sol +9 -3
 - package/contracts/components/IProduct.sol +11 -6
 - package/contracts/components/Pool.sol +37 -14
 - package/contracts/components/Product.sol +48 -24
 - package/contracts/experiment/errors/Require.sol +10 -5
 - package/contracts/experiment/errors/Revert.sol +13 -8
 - package/contracts/experiment/inheritance/A.sol +8 -11
 - package/contracts/experiment/inheritance/B.sol +10 -5
 - package/contracts/experiment/inheritance/C.sol +11 -5
 - package/contracts/experiment/inheritance/IA.sol +2 -7
 - package/contracts/experiment/inheritance/IB.sol +3 -2
 - package/contracts/experiment/inheritance/IC.sol +4 -3
 - package/contracts/experiment/statemachine/Dummy.sol +27 -0
 - package/contracts/experiment/statemachine/ISM.sol +25 -0
 - package/contracts/experiment/statemachine/README.md +112 -0
 - package/contracts/experiment/statemachine/SM.sol +57 -0
 - package/contracts/experiment/statemachine/SimpleStateMachine.sol +31 -0
 - package/contracts/experiment/types/TypeA.sol +14 -9
 - package/contracts/experiment/types/TypeB.sol +14 -9
 - package/contracts/instance/IInstance.sol +8 -3
 - package/contracts/instance/Instance.sol +24 -15
 - package/contracts/instance/access/Access.sol +63 -116
 - package/contracts/instance/access/IAccess.sol +28 -48
 - package/contracts/instance/component/ComponentModule.sol +163 -135
 - package/contracts/instance/component/IComponent.sol +41 -61
 - package/contracts/instance/lifecycle/ILifecycle.sol +47 -0
 - package/contracts/instance/lifecycle/LifecycleModule.sol +88 -0
 - package/contracts/instance/policy/IPolicy.sol +19 -35
 - package/contracts/instance/policy/PolicyModule.sol +52 -44
 - package/contracts/instance/pool/IPoolModule.sol +9 -26
 - package/contracts/instance/pool/PoolModule.sol +43 -45
 - package/contracts/instance/product/IProductService.sol +10 -19
 - package/contracts/instance/product/ProductService.sol +86 -55
 - package/contracts/instance/treasury/ITreasury.sol +91 -0
 - package/contracts/instance/treasury/TokenHandler.sol +24 -0
 - package/contracts/instance/treasury/TreasuryModule.sol +168 -0
 - package/contracts/registry/ChainNft.sol +23 -61
 - package/contracts/registry/IChainNft.sol +10 -7
 - package/contracts/registry/IRegistry.sol +40 -41
 - package/contracts/registry/Registry.sol +73 -67
 - package/contracts/types/Blocknumber.sol +118 -0
 - package/contracts/types/ChainId.sol +24 -10
 - package/contracts/types/Fee.sol +32 -0
 - package/contracts/types/NftId.sol +36 -10
 - package/contracts/types/ObjectType.sol +107 -0
 - package/contracts/types/StateId.sol +91 -0
 - package/contracts/types/Timestamp.sol +102 -0
 - package/contracts/types/UFixed.sol +210 -0
 - package/package.json +13 -5
 
| 
         @@ -2,9 +2,91 @@ 
     | 
|
| 
       2 
2 
     | 
    
         
             
              "_format": "hh-sol-artifact-1",
         
     | 
| 
       3 
3 
     | 
    
         
             
              "contractName": "NftIdLib",
         
     | 
| 
       4 
4 
     | 
    
         
             
              "sourceName": "contracts/types/NftId.sol",
         
     | 
| 
       5 
     | 
    
         
            -
              "abi": [ 
     | 
| 
       6 
     | 
    
         
            -
             
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
      
 5 
     | 
    
         
            +
              "abi": [
         
     | 
| 
      
 6 
     | 
    
         
            +
                {
         
     | 
| 
      
 7 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 8 
     | 
    
         
            +
                    {
         
     | 
| 
      
 9 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 10 
     | 
    
         
            +
                      "name": "a",
         
     | 
| 
      
 11 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 12 
     | 
    
         
            +
                    },
         
     | 
| 
      
 13 
     | 
    
         
            +
                    {
         
     | 
| 
      
 14 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 15 
     | 
    
         
            +
                      "name": "b",
         
     | 
| 
      
 16 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 17 
     | 
    
         
            +
                    }
         
     | 
| 
      
 18 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 19 
     | 
    
         
            +
                  "name": "eq",
         
     | 
| 
      
 20 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 21 
     | 
    
         
            +
                    {
         
     | 
| 
      
 22 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 23 
     | 
    
         
            +
                      "name": "isSame",
         
     | 
| 
      
 24 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 25 
     | 
    
         
            +
                    }
         
     | 
| 
      
 26 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 27 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 28 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 29 
     | 
    
         
            +
                },
         
     | 
| 
      
 30 
     | 
    
         
            +
                {
         
     | 
| 
      
 31 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 32 
     | 
    
         
            +
                    {
         
     | 
| 
      
 33 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 34 
     | 
    
         
            +
                      "name": "a",
         
     | 
| 
      
 35 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 36 
     | 
    
         
            +
                    }
         
     | 
| 
      
 37 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 38 
     | 
    
         
            +
                  "name": "eqz",
         
     | 
| 
      
 39 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 40 
     | 
    
         
            +
                    {
         
     | 
| 
      
 41 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 42 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 43 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 44 
     | 
    
         
            +
                    }
         
     | 
| 
      
 45 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 46 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 47 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 48 
     | 
    
         
            +
                },
         
     | 
| 
      
 49 
     | 
    
         
            +
                {
         
     | 
| 
      
 50 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 51 
     | 
    
         
            +
                    {
         
     | 
| 
      
 52 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 53 
     | 
    
         
            +
                      "name": "a",
         
     | 
| 
      
 54 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 55 
     | 
    
         
            +
                    }
         
     | 
| 
      
 56 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 57 
     | 
    
         
            +
                  "name": "gtz",
         
     | 
| 
      
 58 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 59 
     | 
    
         
            +
                    {
         
     | 
| 
      
 60 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 61 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 62 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 63 
     | 
    
         
            +
                    }
         
     | 
| 
      
 64 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 65 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 66 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 67 
     | 
    
         
            +
                },
         
     | 
| 
      
 68 
     | 
    
         
            +
                {
         
     | 
| 
      
 69 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 70 
     | 
    
         
            +
                    {
         
     | 
| 
      
 71 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 72 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 73 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 74 
     | 
    
         
            +
                    }
         
     | 
| 
      
 75 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 76 
     | 
    
         
            +
                  "name": "toInt",
         
     | 
| 
      
 77 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 78 
     | 
    
         
            +
                    {
         
     | 
| 
      
 79 
     | 
    
         
            +
                      "internalType": "uint96",
         
     | 
| 
      
 80 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 81 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 82 
     | 
    
         
            +
                    }
         
     | 
| 
      
 83 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 84 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 85 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 86 
     | 
    
         
            +
                }
         
     | 
| 
      
 87 
     | 
    
         
            +
              ],
         
     | 
| 
      
 88 
     | 
    
         
            +
              "bytecode": "0x61019761003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106100565760003560e01c806308dc895e1461005b57806330b8415f1461008957806352694ee8146100b5578063c4cade9d146100d0575b600080fd5b61006c610069366004610113565b90565b6040516001600160601b0390911681526020015b60405180910390f35b6100a5610097366004610113565b6001600160601b0316151590565b6040519015158152602001610080565b6100a56100c3366004610113565b6001600160601b03161590565b6100a56100de36600461012e565b60006001600160601b03808416908316145b9392505050565b80356001600160601b038116811461010e57600080fd5b919050565b60006020828403121561012557600080fd5b6100f0826100f7565b6000806040838503121561014157600080fd5b61014a836100f7565b9150610158602084016100f7565b9050925092905056fea264697066735822122086c40d21088b135650d1720bf76aa3ac4d6f440abbd63c369af2921e83b739cf64736f6c63430008140033",
         
     | 
| 
      
 89 
     | 
    
         
            +
              "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600436106100565760003560e01c806308dc895e1461005b57806330b8415f1461008957806352694ee8146100b5578063c4cade9d146100d0575b600080fd5b61006c610069366004610113565b90565b6040516001600160601b0390911681526020015b60405180910390f35b6100a5610097366004610113565b6001600160601b0316151590565b6040519015158152602001610080565b6100a56100c3366004610113565b6001600160601b03161590565b6100a56100de36600461012e565b60006001600160601b03808416908316145b9392505050565b80356001600160601b038116811461010e57600080fd5b919050565b60006020828403121561012557600080fd5b6100f0826100f7565b6000806040838503121561014157600080fd5b61014a836100f7565b9150610158602084016100f7565b9050925092905056fea264697066735822122086c40d21088b135650d1720bf76aa3ac4d6f440abbd63c369af2921e83b739cf64736f6c63430008140033",
         
     | 
| 
       8 
90 
     | 
    
         
             
              "linkReferences": {},
         
     | 
| 
       9 
91 
     | 
    
         
             
              "deployedLinkReferences": {}
         
     | 
| 
       10 
92 
     | 
    
         
             
            }
         
     | 
| 
         @@ -0,0 +1,92 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            {
         
     | 
| 
      
 2 
     | 
    
         
            +
              "_format": "hh-sol-artifact-1",
         
     | 
| 
      
 3 
     | 
    
         
            +
              "contractName": "ObjectTypeLib",
         
     | 
| 
      
 4 
     | 
    
         
            +
              "sourceName": "contracts/types/ObjectType.sol",
         
     | 
| 
      
 5 
     | 
    
         
            +
              "abi": [
         
     | 
| 
      
 6 
     | 
    
         
            +
                {
         
     | 
| 
      
 7 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 8 
     | 
    
         
            +
                    {
         
     | 
| 
      
 9 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 10 
     | 
    
         
            +
                      "name": "a",
         
     | 
| 
      
 11 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 12 
     | 
    
         
            +
                    },
         
     | 
| 
      
 13 
     | 
    
         
            +
                    {
         
     | 
| 
      
 14 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 15 
     | 
    
         
            +
                      "name": "b",
         
     | 
| 
      
 16 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 17 
     | 
    
         
            +
                    }
         
     | 
| 
      
 18 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 19 
     | 
    
         
            +
                  "name": "eq",
         
     | 
| 
      
 20 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 21 
     | 
    
         
            +
                    {
         
     | 
| 
      
 22 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 23 
     | 
    
         
            +
                      "name": "isSame",
         
     | 
| 
      
 24 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 25 
     | 
    
         
            +
                    }
         
     | 
| 
      
 26 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 27 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 28 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 29 
     | 
    
         
            +
                },
         
     | 
| 
      
 30 
     | 
    
         
            +
                {
         
     | 
| 
      
 31 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 32 
     | 
    
         
            +
                    {
         
     | 
| 
      
 33 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 34 
     | 
    
         
            +
                      "name": "a",
         
     | 
| 
      
 35 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 36 
     | 
    
         
            +
                    }
         
     | 
| 
      
 37 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 38 
     | 
    
         
            +
                  "name": "eqz",
         
     | 
| 
      
 39 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 40 
     | 
    
         
            +
                    {
         
     | 
| 
      
 41 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 42 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 43 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 44 
     | 
    
         
            +
                    }
         
     | 
| 
      
 45 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 46 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 47 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 48 
     | 
    
         
            +
                },
         
     | 
| 
      
 49 
     | 
    
         
            +
                {
         
     | 
| 
      
 50 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 51 
     | 
    
         
            +
                    {
         
     | 
| 
      
 52 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 53 
     | 
    
         
            +
                      "name": "a",
         
     | 
| 
      
 54 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 55 
     | 
    
         
            +
                    }
         
     | 
| 
      
 56 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 57 
     | 
    
         
            +
                  "name": "gtz",
         
     | 
| 
      
 58 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 59 
     | 
    
         
            +
                    {
         
     | 
| 
      
 60 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 61 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 62 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 63 
     | 
    
         
            +
                    }
         
     | 
| 
      
 64 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 65 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 66 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 67 
     | 
    
         
            +
                },
         
     | 
| 
      
 68 
     | 
    
         
            +
                {
         
     | 
| 
      
 69 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 70 
     | 
    
         
            +
                    {
         
     | 
| 
      
 71 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 72 
     | 
    
         
            +
                      "name": "objectType",
         
     | 
| 
      
 73 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 74 
     | 
    
         
            +
                    }
         
     | 
| 
      
 75 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 76 
     | 
    
         
            +
                  "name": "toInt",
         
     | 
| 
      
 77 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 78 
     | 
    
         
            +
                    {
         
     | 
| 
      
 79 
     | 
    
         
            +
                      "internalType": "uint96",
         
     | 
| 
      
 80 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 81 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 82 
     | 
    
         
            +
                    }
         
     | 
| 
      
 83 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 84 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 85 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 86 
     | 
    
         
            +
                }
         
     | 
| 
      
 87 
     | 
    
         
            +
              ],
         
     | 
| 
      
 88 
     | 
    
         
            +
              "bytecode": "0x61018c61003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106100565760003560e01c80632c2f8a671461005b5780636f91962014610083578063ac43d83414610098578063b2466acf146100c9575b600080fd5b61006e610069366004610108565b6100df565b60405190151581526020015b60405180910390f35b61006e61009136600461013b565b60ff161590565b6100ac6100a636600461013b565b60ff1690565b6040516bffffffffffffffffffffffff909116815260200161007a565b61006e6100d736600461013b565b60ff16151590565b600060ff808416908316145b9392505050565b803560ff8116811461010357600080fd5b919050565b6000806040838503121561011b57600080fd5b610124836100f2565b9150610132602084016100f2565b90509250929050565b60006020828403121561014d57600080fd5b6100eb826100f256fea2646970667358221220f00c11edd8717e8912945888b0dc2c44aadd41b2fc10aaf5dd3c68c6977e868864736f6c63430008140033",
         
     | 
| 
      
 89 
     | 
    
         
            +
              "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600436106100565760003560e01c80632c2f8a671461005b5780636f91962014610083578063ac43d83414610098578063b2466acf146100c9575b600080fd5b61006e610069366004610108565b6100df565b60405190151581526020015b60405180910390f35b61006e61009136600461013b565b60ff161590565b6100ac6100a636600461013b565b60ff1690565b6040516bffffffffffffffffffffffff909116815260200161007a565b61006e6100d736600461013b565b60ff16151590565b600060ff808416908316145b9392505050565b803560ff8116811461010357600080fd5b919050565b6000806040838503121561011b57600080fd5b610124836100f2565b9150610132602084016100f2565b90509250929050565b60006020828403121561014d57600080fd5b6100eb826100f256fea2646970667358221220f00c11edd8717e8912945888b0dc2c44aadd41b2fc10aaf5dd3c68c6977e868864736f6c63430008140033",
         
     | 
| 
      
 90 
     | 
    
         
            +
              "linkReferences": {},
         
     | 
| 
      
 91 
     | 
    
         
            +
              "deployedLinkReferences": {}
         
     | 
| 
      
 92 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -0,0 +1,92 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            {
         
     | 
| 
      
 2 
     | 
    
         
            +
              "_format": "hh-sol-artifact-1",
         
     | 
| 
      
 3 
     | 
    
         
            +
              "contractName": "StateIdLib",
         
     | 
| 
      
 4 
     | 
    
         
            +
              "sourceName": "contracts/types/StateId.sol",
         
     | 
| 
      
 5 
     | 
    
         
            +
              "abi": [
         
     | 
| 
      
 6 
     | 
    
         
            +
                {
         
     | 
| 
      
 7 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 8 
     | 
    
         
            +
                    {
         
     | 
| 
      
 9 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 10 
     | 
    
         
            +
                      "name": "a",
         
     | 
| 
      
 11 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 12 
     | 
    
         
            +
                    },
         
     | 
| 
      
 13 
     | 
    
         
            +
                    {
         
     | 
| 
      
 14 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 15 
     | 
    
         
            +
                      "name": "b",
         
     | 
| 
      
 16 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 17 
     | 
    
         
            +
                    }
         
     | 
| 
      
 18 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 19 
     | 
    
         
            +
                  "name": "eq",
         
     | 
| 
      
 20 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 21 
     | 
    
         
            +
                    {
         
     | 
| 
      
 22 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 23 
     | 
    
         
            +
                      "name": "isSame",
         
     | 
| 
      
 24 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 25 
     | 
    
         
            +
                    }
         
     | 
| 
      
 26 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 27 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 28 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 29 
     | 
    
         
            +
                },
         
     | 
| 
      
 30 
     | 
    
         
            +
                {
         
     | 
| 
      
 31 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 32 
     | 
    
         
            +
                    {
         
     | 
| 
      
 33 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 34 
     | 
    
         
            +
                      "name": "a",
         
     | 
| 
      
 35 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 36 
     | 
    
         
            +
                    }
         
     | 
| 
      
 37 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 38 
     | 
    
         
            +
                  "name": "eqz",
         
     | 
| 
      
 39 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 40 
     | 
    
         
            +
                    {
         
     | 
| 
      
 41 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 42 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 43 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 44 
     | 
    
         
            +
                    }
         
     | 
| 
      
 45 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 46 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 47 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 48 
     | 
    
         
            +
                },
         
     | 
| 
      
 49 
     | 
    
         
            +
                {
         
     | 
| 
      
 50 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 51 
     | 
    
         
            +
                    {
         
     | 
| 
      
 52 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 53 
     | 
    
         
            +
                      "name": "a",
         
     | 
| 
      
 54 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 55 
     | 
    
         
            +
                    }
         
     | 
| 
      
 56 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 57 
     | 
    
         
            +
                  "name": "gtz",
         
     | 
| 
      
 58 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 59 
     | 
    
         
            +
                    {
         
     | 
| 
      
 60 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 61 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 62 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 63 
     | 
    
         
            +
                    }
         
     | 
| 
      
 64 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 65 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 66 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 67 
     | 
    
         
            +
                },
         
     | 
| 
      
 68 
     | 
    
         
            +
                {
         
     | 
| 
      
 69 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 70 
     | 
    
         
            +
                    {
         
     | 
| 
      
 71 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 72 
     | 
    
         
            +
                      "name": "stateId",
         
     | 
| 
      
 73 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 74 
     | 
    
         
            +
                    }
         
     | 
| 
      
 75 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 76 
     | 
    
         
            +
                  "name": "toInt",
         
     | 
| 
      
 77 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 78 
     | 
    
         
            +
                    {
         
     | 
| 
      
 79 
     | 
    
         
            +
                      "internalType": "uint96",
         
     | 
| 
      
 80 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 81 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 82 
     | 
    
         
            +
                    }
         
     | 
| 
      
 83 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 84 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 85 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 86 
     | 
    
         
            +
                }
         
     | 
| 
      
 87 
     | 
    
         
            +
              ],
         
     | 
| 
      
 88 
     | 
    
         
            +
              "bytecode": "0x61018c61003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106100565760003560e01c80632c2f8a671461005b5780636f91962014610083578063ac43d83414610098578063b2466acf146100c9575b600080fd5b61006e610069366004610108565b6100df565b60405190151581526020015b60405180910390f35b61006e61009136600461013b565b60ff161590565b6100ac6100a636600461013b565b60ff1690565b6040516bffffffffffffffffffffffff909116815260200161007a565b61006e6100d736600461013b565b60ff16151590565b600060ff808416908316145b9392505050565b803560ff8116811461010357600080fd5b919050565b6000806040838503121561011b57600080fd5b610124836100f2565b9150610132602084016100f2565b90509250929050565b60006020828403121561014d57600080fd5b6100eb826100f256fea26469706673582212202a80a64e54b6fb1b9571359df5cfb48e00ec67039e42d95b75da9d429a3404d664736f6c63430008140033",
         
     | 
| 
      
 89 
     | 
    
         
            +
              "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600436106100565760003560e01c80632c2f8a671461005b5780636f91962014610083578063ac43d83414610098578063b2466acf146100c9575b600080fd5b61006e610069366004610108565b6100df565b60405190151581526020015b60405180910390f35b61006e61009136600461013b565b60ff161590565b6100ac6100a636600461013b565b60ff1690565b6040516bffffffffffffffffffffffff909116815260200161007a565b61006e6100d736600461013b565b60ff16151590565b600060ff808416908316145b9392505050565b803560ff8116811461010357600080fd5b919050565b6000806040838503121561011b57600080fd5b610124836100f2565b9150610132602084016100f2565b90509250929050565b60006020828403121561014d57600080fd5b6100eb826100f256fea26469706673582212202a80a64e54b6fb1b9571359df5cfb48e00ec67039e42d95b75da9d429a3404d664736f6c63430008140033",
         
     | 
| 
      
 90 
     | 
    
         
            +
              "linkReferences": {},
         
     | 
| 
      
 91 
     | 
    
         
            +
              "deployedLinkReferences": {}
         
     | 
| 
      
 92 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -0,0 +1,174 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            {
         
     | 
| 
      
 2 
     | 
    
         
            +
              "_format": "hh-sol-artifact-1",
         
     | 
| 
      
 3 
     | 
    
         
            +
              "contractName": "TimestampLib",
         
     | 
| 
      
 4 
     | 
    
         
            +
              "sourceName": "contracts/types/Timestamp.sol",
         
     | 
| 
      
 5 
     | 
    
         
            +
              "abi": [
         
     | 
| 
      
 6 
     | 
    
         
            +
                {
         
     | 
| 
      
 7 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 8 
     | 
    
         
            +
                    {
         
     | 
| 
      
 9 
     | 
    
         
            +
                      "internalType": "Timestamp",
         
     | 
| 
      
 10 
     | 
    
         
            +
                      "name": "a",
         
     | 
| 
      
 11 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 12 
     | 
    
         
            +
                    },
         
     | 
| 
      
 13 
     | 
    
         
            +
                    {
         
     | 
| 
      
 14 
     | 
    
         
            +
                      "internalType": "Timestamp",
         
     | 
| 
      
 15 
     | 
    
         
            +
                      "name": "b",
         
     | 
| 
      
 16 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 17 
     | 
    
         
            +
                    }
         
     | 
| 
      
 18 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 19 
     | 
    
         
            +
                  "name": "eq",
         
     | 
| 
      
 20 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 21 
     | 
    
         
            +
                    {
         
     | 
| 
      
 22 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 23 
     | 
    
         
            +
                      "name": "isSame",
         
     | 
| 
      
 24 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 25 
     | 
    
         
            +
                    }
         
     | 
| 
      
 26 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 27 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 28 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 29 
     | 
    
         
            +
                },
         
     | 
| 
      
 30 
     | 
    
         
            +
                {
         
     | 
| 
      
 31 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 32 
     | 
    
         
            +
                    {
         
     | 
| 
      
 33 
     | 
    
         
            +
                      "internalType": "Timestamp",
         
     | 
| 
      
 34 
     | 
    
         
            +
                      "name": "a",
         
     | 
| 
      
 35 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 36 
     | 
    
         
            +
                    },
         
     | 
| 
      
 37 
     | 
    
         
            +
                    {
         
     | 
| 
      
 38 
     | 
    
         
            +
                      "internalType": "Timestamp",
         
     | 
| 
      
 39 
     | 
    
         
            +
                      "name": "b",
         
     | 
| 
      
 40 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 41 
     | 
    
         
            +
                    }
         
     | 
| 
      
 42 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 43 
     | 
    
         
            +
                  "name": "gt",
         
     | 
| 
      
 44 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 45 
     | 
    
         
            +
                    {
         
     | 
| 
      
 46 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 47 
     | 
    
         
            +
                      "name": "isAfter",
         
     | 
| 
      
 48 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 49 
     | 
    
         
            +
                    }
         
     | 
| 
      
 50 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 51 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 52 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 53 
     | 
    
         
            +
                },
         
     | 
| 
      
 54 
     | 
    
         
            +
                {
         
     | 
| 
      
 55 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 56 
     | 
    
         
            +
                    {
         
     | 
| 
      
 57 
     | 
    
         
            +
                      "internalType": "Timestamp",
         
     | 
| 
      
 58 
     | 
    
         
            +
                      "name": "a",
         
     | 
| 
      
 59 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 60 
     | 
    
         
            +
                    },
         
     | 
| 
      
 61 
     | 
    
         
            +
                    {
         
     | 
| 
      
 62 
     | 
    
         
            +
                      "internalType": "Timestamp",
         
     | 
| 
      
 63 
     | 
    
         
            +
                      "name": "b",
         
     | 
| 
      
 64 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 65 
     | 
    
         
            +
                    }
         
     | 
| 
      
 66 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 67 
     | 
    
         
            +
                  "name": "gte",
         
     | 
| 
      
 68 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 69 
     | 
    
         
            +
                    {
         
     | 
| 
      
 70 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 71 
     | 
    
         
            +
                      "name": "isAfterOrSame",
         
     | 
| 
      
 72 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 73 
     | 
    
         
            +
                    }
         
     | 
| 
      
 74 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 75 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 76 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 77 
     | 
    
         
            +
                },
         
     | 
| 
      
 78 
     | 
    
         
            +
                {
         
     | 
| 
      
 79 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 80 
     | 
    
         
            +
                    {
         
     | 
| 
      
 81 
     | 
    
         
            +
                      "internalType": "Timestamp",
         
     | 
| 
      
 82 
     | 
    
         
            +
                      "name": "a",
         
     | 
| 
      
 83 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 84 
     | 
    
         
            +
                    },
         
     | 
| 
      
 85 
     | 
    
         
            +
                    {
         
     | 
| 
      
 86 
     | 
    
         
            +
                      "internalType": "Timestamp",
         
     | 
| 
      
 87 
     | 
    
         
            +
                      "name": "b",
         
     | 
| 
      
 88 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 89 
     | 
    
         
            +
                    }
         
     | 
| 
      
 90 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 91 
     | 
    
         
            +
                  "name": "lt",
         
     | 
| 
      
 92 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 93 
     | 
    
         
            +
                    {
         
     | 
| 
      
 94 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 95 
     | 
    
         
            +
                      "name": "isBefore",
         
     | 
| 
      
 96 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 97 
     | 
    
         
            +
                    }
         
     | 
| 
      
 98 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 99 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 100 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 101 
     | 
    
         
            +
                },
         
     | 
| 
      
 102 
     | 
    
         
            +
                {
         
     | 
| 
      
 103 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 104 
     | 
    
         
            +
                    {
         
     | 
| 
      
 105 
     | 
    
         
            +
                      "internalType": "Timestamp",
         
     | 
| 
      
 106 
     | 
    
         
            +
                      "name": "a",
         
     | 
| 
      
 107 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 108 
     | 
    
         
            +
                    },
         
     | 
| 
      
 109 
     | 
    
         
            +
                    {
         
     | 
| 
      
 110 
     | 
    
         
            +
                      "internalType": "Timestamp",
         
     | 
| 
      
 111 
     | 
    
         
            +
                      "name": "b",
         
     | 
| 
      
 112 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 113 
     | 
    
         
            +
                    }
         
     | 
| 
      
 114 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 115 
     | 
    
         
            +
                  "name": "lte",
         
     | 
| 
      
 116 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 117 
     | 
    
         
            +
                    {
         
     | 
| 
      
 118 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 119 
     | 
    
         
            +
                      "name": "isBeforeOrSame",
         
     | 
| 
      
 120 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 121 
     | 
    
         
            +
                    }
         
     | 
| 
      
 122 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 123 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 124 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 125 
     | 
    
         
            +
                },
         
     | 
| 
      
 126 
     | 
    
         
            +
                {
         
     | 
| 
      
 127 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 128 
     | 
    
         
            +
                    {
         
     | 
| 
      
 129 
     | 
    
         
            +
                      "internalType": "Timestamp",
         
     | 
| 
      
 130 
     | 
    
         
            +
                      "name": "a",
         
     | 
| 
      
 131 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 132 
     | 
    
         
            +
                    },
         
     | 
| 
      
 133 
     | 
    
         
            +
                    {
         
     | 
| 
      
 134 
     | 
    
         
            +
                      "internalType": "Timestamp",
         
     | 
| 
      
 135 
     | 
    
         
            +
                      "name": "b",
         
     | 
| 
      
 136 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 137 
     | 
    
         
            +
                    }
         
     | 
| 
      
 138 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 139 
     | 
    
         
            +
                  "name": "ne",
         
     | 
| 
      
 140 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 141 
     | 
    
         
            +
                    {
         
     | 
| 
      
 142 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 143 
     | 
    
         
            +
                      "name": "isDifferent",
         
     | 
| 
      
 144 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 145 
     | 
    
         
            +
                    }
         
     | 
| 
      
 146 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 147 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 148 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 149 
     | 
    
         
            +
                },
         
     | 
| 
      
 150 
     | 
    
         
            +
                {
         
     | 
| 
      
 151 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 152 
     | 
    
         
            +
                    {
         
     | 
| 
      
 153 
     | 
    
         
            +
                      "internalType": "Timestamp",
         
     | 
| 
      
 154 
     | 
    
         
            +
                      "name": "timestamp",
         
     | 
| 
      
 155 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 156 
     | 
    
         
            +
                    }
         
     | 
| 
      
 157 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 158 
     | 
    
         
            +
                  "name": "toInt",
         
     | 
| 
      
 159 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 160 
     | 
    
         
            +
                    {
         
     | 
| 
      
 161 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 162 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 163 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 164 
     | 
    
         
            +
                    }
         
     | 
| 
      
 165 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 166 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 167 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 168 
     | 
    
         
            +
                }
         
     | 
| 
      
 169 
     | 
    
         
            +
              ],
         
     | 
| 
      
 170 
     | 
    
         
            +
              "bytecode": "0x61025561003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106100875760003560e01c8063add9ce9911610065578063add9ce99146100da578063c24922ce146100ed578063da09d48414610100578063ddf3d6311461012657600080fd5b806383ffcdef1461008c57806394335b1a146100b45780639df87639146100c7575b600080fd5b61009f61009a3660046101d1565b610139565b60405190151581526020015b60405180910390f35b61009f6100c23660046101d1565b610150565b61009f6100d53660046101d1565b610165565b61009f6100e83660046101d1565b610179565b61009f6100fb3660046101d1565b61018d565b61011861010e366004610204565b64ffffffffff1690565b6040519081526020016100ab565b61009f6101343660046101d1565b6101a2565b600064ffffffffff808316908416115b9392505050565b600064ffffffffff8083169084161115610149565b600064ffffffffff80841690831614610149565b600064ffffffffff80831690841610610149565b600064ffffffffff8083169084161015610149565b600064ffffffffff8084169083161415610149565b803564ffffffffff811681146101cc57600080fd5b919050565b600080604083850312156101e457600080fd5b6101ed836101b7565b91506101fb602084016101b7565b90509250929050565b60006020828403121561021657600080fd5b610149826101b756fea264697066735822122016e87f92643d0581f90789481774e8b1de3db708282694b6e79c9f85ec25d8f564736f6c63430008140033",
         
     | 
| 
      
 171 
     | 
    
         
            +
              "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600436106100875760003560e01c8063add9ce9911610065578063add9ce99146100da578063c24922ce146100ed578063da09d48414610100578063ddf3d6311461012657600080fd5b806383ffcdef1461008c57806394335b1a146100b45780639df87639146100c7575b600080fd5b61009f61009a3660046101d1565b610139565b60405190151581526020015b60405180910390f35b61009f6100c23660046101d1565b610150565b61009f6100d53660046101d1565b610165565b61009f6100e83660046101d1565b610179565b61009f6100fb3660046101d1565b61018d565b61011861010e366004610204565b64ffffffffff1690565b6040519081526020016100ab565b61009f6101343660046101d1565b6101a2565b600064ffffffffff808316908416115b9392505050565b600064ffffffffff8083169084161115610149565b600064ffffffffff80841690831614610149565b600064ffffffffff80831690841610610149565b600064ffffffffff8083169084161015610149565b600064ffffffffff8084169083161415610149565b803564ffffffffff811681146101cc57600080fd5b919050565b600080604083850312156101e457600080fd5b6101ed836101b7565b91506101fb602084016101b7565b90509250929050565b60006020828403121561021657600080fd5b610149826101b756fea264697066735822122016e87f92643d0581f90789481774e8b1de3db708282694b6e79c9f85ec25d8f564736f6c63430008140033",
         
     | 
| 
      
 172 
     | 
    
         
            +
              "linkReferences": {},
         
     | 
| 
      
 173 
     | 
    
         
            +
              "deployedLinkReferences": {}
         
     | 
| 
      
 174 
     | 
    
         
            +
            }
         
     |