@venusprotocol/isolated-pools 1.0.0-dev.6 → 1.0.0-dev.8
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/artifacts/@openzeppelin/contracts/access/AccessControl.sol/AccessControl.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts/access/AccessControl.sol/AccessControl.json +215 -0
- package/artifacts/@openzeppelin/contracts/access/IAccessControl.sol/IAccessControl.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts/access/IAccessControl.sol/IAccessControl.json +183 -0
- package/artifacts/@openzeppelin/contracts/access/Ownable.sol/Ownable.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts/access/Ownable.sol/Ownable.json +63 -0
- package/artifacts/@openzeppelin/contracts/interfaces/IERC1967.sol/IERC1967.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts/interfaces/IERC1967.sol/IERC1967.json +56 -0
- package/artifacts/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/IERC1822Proxiable.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/IERC1822Proxiable.json +24 -0
- package/artifacts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Upgrade.sol/ERC1967Upgrade.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Upgrade.sol/ERC1967Upgrade.json +56 -0
- package/artifacts/@openzeppelin/contracts/proxy/Proxy.sol/Proxy.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts/proxy/Proxy.sol/Proxy.json +19 -0
- package/artifacts/@openzeppelin/contracts/proxy/beacon/BeaconProxy.sol/BeaconProxy.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts/proxy/beacon/BeaconProxy.sol/BeaconProxy.json +80 -0
- package/artifacts/@openzeppelin/contracts/proxy/beacon/IBeacon.sol/IBeacon.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts/proxy/beacon/IBeacon.sol/IBeacon.json +24 -0
- package/artifacts/@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol/UpgradeableBeacon.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol/UpgradeableBeacon.json +113 -0
- package/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.json +297 -0
- package/artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.json +194 -0
- package/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.json +233 -0
- package/artifacts/@openzeppelin/contracts/utils/Address.sol/Address.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts/utils/Address.sol/Address.json +10 -0
- package/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.json +10 -0
- package/artifacts/@openzeppelin/contracts/utils/StorageSlot.sol/StorageSlot.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts/utils/StorageSlot.sol/StorageSlot.json +10 -0
- package/artifacts/@openzeppelin/contracts/utils/Strings.sol/Strings.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts/utils/Strings.sol/Strings.json +10 -0
- package/artifacts/@openzeppelin/contracts/utils/introspection/ERC165.sol/ERC165.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts/utils/introspection/ERC165.sol/ERC165.json +30 -0
- package/artifacts/@openzeppelin/contracts/utils/introspection/IERC165.sol/IERC165.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts/utils/introspection/IERC165.sol/IERC165.json +30 -0
- package/artifacts/@openzeppelin/contracts/utils/math/Math.sol/Math.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts/utils/math/Math.sol/Math.json +10 -0
- package/artifacts/@openzeppelin/contracts/utils/math/SignedMath.sol/SignedMath.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts/utils/math/SignedMath.sol/SignedMath.json +10 -0
- package/artifacts/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol/Ownable2StepUpgradeable.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol/Ownable2StepUpgradeable.json +115 -0
- package/artifacts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.json +76 -0
- package/artifacts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.json +24 -0
- package/artifacts/@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol/ReentrancyGuardUpgradeable.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol/ReentrancyGuardUpgradeable.json +24 -0
- package/artifacts/@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol/IERC20Upgradeable.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol/IERC20Upgradeable.json +194 -0
- package/artifacts/@openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20PermitUpgradeable.sol/IERC20PermitUpgradeable.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20PermitUpgradeable.sol/IERC20PermitUpgradeable.json +86 -0
- package/artifacts/@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol/SafeERC20Upgradeable.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol/SafeERC20Upgradeable.json +10 -0
- package/artifacts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.json +10 -0
- package/artifacts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.dbg.json +4 -0
- package/artifacts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.json +24 -0
- package/artifacts/@venusprotocol/governance-contracts/contracts/Governance/AccessControlManager.sol/AccessControlManager.dbg.json +4 -0
- package/artifacts/@venusprotocol/governance-contracts/contracts/Governance/AccessControlManager.sol/AccessControlManager.json +369 -0
- package/artifacts/@venusprotocol/governance-contracts/contracts/Governance/AccessControlledV8.sol/AccessControlledV8.dbg.json +4 -0
- package/artifacts/@venusprotocol/governance-contracts/contracts/Governance/AccessControlledV8.sol/AccessControlledV8.json +181 -0
- package/artifacts/@venusprotocol/governance-contracts/contracts/Governance/IAccessControlManagerV8.sol/IAccessControlManagerV8.dbg.json +4 -0
- package/artifacts/@venusprotocol/governance-contracts/contracts/Governance/IAccessControlManagerV8.sol/IAccessControlManagerV8.json +282 -0
- package/artifacts/@venusprotocol/oracle/contracts/interfaces/OracleInterface.sol/BoundValidatorInterface.dbg.json +4 -0
- package/artifacts/@venusprotocol/oracle/contracts/interfaces/OracleInterface.sol/BoundValidatorInterface.json +40 -0
- package/artifacts/@venusprotocol/oracle/contracts/interfaces/OracleInterface.sol/OracleInterface.dbg.json +4 -0
- package/artifacts/@venusprotocol/oracle/contracts/interfaces/OracleInterface.sol/OracleInterface.json +30 -0
- package/artifacts/@venusprotocol/oracle/contracts/interfaces/OracleInterface.sol/ResilientOracleInterface.dbg.json +4 -0
- package/artifacts/@venusprotocol/oracle/contracts/interfaces/OracleInterface.sol/ResilientOracleInterface.json +43 -0
- package/artifacts/@venusprotocol/oracle/contracts/interfaces/OracleInterface.sol/TwapInterface.dbg.json +4 -0
- package/artifacts/@venusprotocol/oracle/contracts/interfaces/OracleInterface.sol/TwapInterface.json +49 -0
- package/artifacts/build-info/8c02b3a8e3642dffe55772a8d2bed46f.json +1 -0
- package/artifacts/build-info/f19d689bc99e63a20dd2a17a14e2b84a.json +1 -0
- package/artifacts/contracts/BaseJumpRateModelV2.sol/BaseJumpRateModelV2.dbg.json +4 -0
- package/artifacts/contracts/BaseJumpRateModelV2.sol/BaseJumpRateModelV2.json +276 -0
- package/artifacts/contracts/Comptroller.sol/Comptroller.dbg.json +4 -0
- package/artifacts/contracts/Comptroller.sol/Comptroller.json +1667 -0
- package/artifacts/contracts/ComptrollerInterface.sol/ComptrollerInterface.dbg.json +4 -0
- package/artifacts/contracts/ComptrollerInterface.sol/ComptrollerInterface.json +285 -0
- package/artifacts/contracts/ComptrollerInterface.sol/ComptrollerViewInterface.dbg.json +4 -0
- package/artifacts/contracts/ComptrollerInterface.sol/ComptrollerViewInterface.json +170 -0
- package/artifacts/contracts/ComptrollerStorage.sol/ComptrollerStorage.dbg.json +4 -0
- package/artifacts/contracts/ComptrollerStorage.sol/ComptrollerStorage.json +173 -0
- package/artifacts/contracts/ErrorReporter.sol/TokenErrorReporter.dbg.json +4 -0
- package/artifacts/contracts/ErrorReporter.sol/TokenErrorReporter.json +156 -0
- package/artifacts/contracts/ExponentialNoError.sol/ExponentialNoError.dbg.json +4 -0
- package/artifacts/contracts/ExponentialNoError.sol/ExponentialNoError.json +10 -0
- package/artifacts/contracts/Factories/JumpRateModelFactory.sol/JumpRateModelFactory.dbg.json +4 -0
- package/artifacts/contracts/Factories/JumpRateModelFactory.sol/JumpRateModelFactory.json +50 -0
- package/artifacts/contracts/Factories/VTokenProxyFactory.sol/VTokenProxyFactory.dbg.json +4 -0
- package/artifacts/contracts/Factories/VTokenProxyFactory.sol/VTokenProxyFactory.json +191 -0
- package/artifacts/contracts/Factories/WhitePaperInterestRateModelFactory.sol/WhitePaperInterestRateModelFactory.dbg.json +4 -0
- package/artifacts/contracts/Factories/WhitePaperInterestRateModelFactory.sol/WhitePaperInterestRateModelFactory.json +35 -0
- package/artifacts/contracts/IPancakeswapV2Router.sol/IPancakeswapV2Router.dbg.json +4 -0
- package/artifacts/contracts/IPancakeswapV2Router.sol/IPancakeswapV2Router.json +50 -0
- package/artifacts/contracts/InterestRateModel.sol/InterestRateModel.dbg.json +4 -0
- package/artifacts/contracts/InterestRateModel.sol/InterestRateModel.json +97 -0
- package/artifacts/contracts/JumpRateModelV2.sol/JumpRateModelV2.dbg.json +4 -0
- package/artifacts/contracts/JumpRateModelV2.sol/JumpRateModelV2.json +307 -0
- package/artifacts/contracts/Lens/PoolLens.sol/PoolLens.dbg.json +4 -0
- package/artifacts/contracts/Lens/PoolLens.sol/PoolLens.json +1087 -0
- package/artifacts/contracts/MaxLoopsLimitHelper.sol/MaxLoopsLimitHelper.dbg.json +4 -0
- package/artifacts/contracts/MaxLoopsLimitHelper.sol/MaxLoopsLimitHelper.json +59 -0
- package/artifacts/contracts/Pool/PoolRegistry.sol/PoolRegistry.dbg.json +4 -0
- package/artifacts/contracts/Pool/PoolRegistry.sol/PoolRegistry.json +923 -0
- package/artifacts/contracts/Pool/PoolRegistryInterface.sol/PoolRegistryInterface.dbg.json +4 -0
- package/artifacts/contracts/Pool/PoolRegistryInterface.sol/PoolRegistryInterface.json +176 -0
- package/artifacts/contracts/Proxy/UpgradeableBeacon.sol/Beacon.dbg.json +4 -0
- package/artifacts/contracts/Proxy/UpgradeableBeacon.sol/Beacon.json +113 -0
- package/artifacts/contracts/Rewards/RewardsDistributor.sol/RewardsDistributor.dbg.json +4 -0
- package/artifacts/contracts/Rewards/RewardsDistributor.sol/RewardsDistributor.json +928 -0
- package/artifacts/contracts/RiskFund/IProtocolShareReserve.sol/IProtocolShareReserve.dbg.json +4 -0
- package/artifacts/contracts/RiskFund/IProtocolShareReserve.sol/IProtocolShareReserve.json +29 -0
- package/artifacts/contracts/RiskFund/IRiskFund.sol/IRiskFund.dbg.json +4 -0
- package/artifacts/contracts/RiskFund/IRiskFund.sol/IRiskFund.json +101 -0
- package/artifacts/contracts/RiskFund/ProtocolShareReserve.sol/ProtocolShareReserve.dbg.json +4 -0
- package/artifacts/contracts/RiskFund/ProtocolShareReserve.sol/ProtocolShareReserve.json +296 -0
- package/artifacts/contracts/RiskFund/ReserveHelpers.sol/ReserveHelpers.dbg.json +4 -0
- package/artifacts/contracts/RiskFund/ReserveHelpers.sol/ReserveHelpers.json +83 -0
- package/artifacts/contracts/RiskFund/RiskFund.sol/RiskFund.dbg.json +4 -0
- package/artifacts/contracts/RiskFund/RiskFund.sol/RiskFund.json +615 -0
- package/artifacts/contracts/Shortfall/IShortfall.sol/IShortfall.dbg.json +4 -0
- package/artifacts/contracts/Shortfall/IShortfall.sol/IShortfall.json +24 -0
- package/artifacts/contracts/Shortfall/Shortfall.sol/Shortfall.dbg.json +4 -0
- package/artifacts/contracts/Shortfall/Shortfall.sol/Shortfall.json +756 -0
- package/artifacts/contracts/VToken.sol/VToken.dbg.json +4 -0
- package/artifacts/contracts/VToken.sol/VToken.json +1850 -0
- package/artifacts/contracts/VTokenInterfaces.sol/VTokenInterface.dbg.json +4 -0
- package/artifacts/contracts/VTokenInterfaces.sol/VTokenInterface.json +1398 -0
- package/artifacts/contracts/VTokenInterfaces.sol/VTokenStorage.dbg.json +4 -0
- package/artifacts/contracts/VTokenInterfaces.sol/VTokenStorage.json +219 -0
- package/artifacts/contracts/WhitePaperInterestRateModel.sol/WhitePaperInterestRateModel.dbg.json +4 -0
- package/artifacts/contracts/WhitePaperInterestRateModel.sol/WhitePaperInterestRateModel.json +192 -0
- package/artifacts/contracts/test/ComptrollerHarness.sol/ComptrollerHarness.dbg.json +4 -0
- package/artifacts/contracts/test/ComptrollerHarness.sol/ComptrollerHarness.json +1712 -0
- package/artifacts/contracts/test/ComptrollerHarness.sol/EchoTypesComptroller.dbg.json +4 -0
- package/artifacts/contracts/test/ComptrollerHarness.sol/EchoTypesComptroller.json +94 -0
- package/artifacts/contracts/test/ComptrollerScenario.sol/ComptrollerScenario.dbg.json +4 -0
- package/artifacts/contracts/test/ComptrollerScenario.sol/ComptrollerScenario.json +1744 -0
- package/artifacts/contracts/test/ERC20.sol/ERC20.dbg.json +4 -0
- package/artifacts/contracts/test/ERC20.sol/ERC20.json +194 -0
- package/artifacts/contracts/test/ERC20.sol/ERC20Base.dbg.json +4 -0
- package/artifacts/contracts/test/ERC20.sol/ERC20Base.json +141 -0
- package/artifacts/contracts/test/ERC20.sol/ERC20Harness.dbg.json +4 -0
- package/artifacts/contracts/test/ERC20.sol/ERC20Harness.json +351 -0
- package/artifacts/contracts/test/ERC20.sol/ERC20NS.dbg.json +4 -0
- package/artifacts/contracts/test/ERC20.sol/ERC20NS.json +182 -0
- package/artifacts/contracts/test/ERC20.sol/NonStandardToken.dbg.json +4 -0
- package/artifacts/contracts/test/ERC20.sol/NonStandardToken.json +247 -0
- package/artifacts/contracts/test/ERC20.sol/StandardToken.dbg.json +4 -0
- package/artifacts/contracts/test/ERC20.sol/StandardToken.json +259 -0
- package/artifacts/contracts/test/EvilToken.sol/EvilToken.dbg.json +4 -0
- package/artifacts/contracts/test/EvilToken.sol/EvilToken.json +303 -0
- package/artifacts/contracts/test/FaucetToken.sol/FaucetNonStandardToken.dbg.json +4 -0
- package/artifacts/contracts/test/FaucetToken.sol/FaucetNonStandardToken.json +265 -0
- package/artifacts/contracts/test/FaucetToken.sol/FaucetToken.dbg.json +4 -0
- package/artifacts/contracts/test/FaucetToken.sol/FaucetToken.json +277 -0
- package/artifacts/contracts/test/FaucetToken.sol/FaucetTokenReEntrantHarness.dbg.json +4 -0
- package/artifacts/contracts/test/FaucetToken.sol/FaucetTokenReEntrantHarness.json +313 -0
- package/artifacts/contracts/test/FeeToken.sol/FeeToken.dbg.json +4 -0
- package/artifacts/contracts/test/FeeToken.sol/FeeToken.json +313 -0
- package/artifacts/contracts/test/HarnessMaxLoopsLimitHelper.sol/HarnessMaxLoopsLimitHelper.dbg.json +4 -0
- package/artifacts/contracts/test/HarnessMaxLoopsLimitHelper.sol/HarnessMaxLoopsLimitHelper.json +85 -0
- package/artifacts/contracts/test/MockDeflationaryToken.sol/MockDeflatingToken.dbg.json +4 -0
- package/artifacts/contracts/test/MockDeflationaryToken.sol/MockDeflatingToken.json +332 -0
- package/artifacts/contracts/test/Mocks/MockPancakeSwap.sol/IERC20.dbg.json +4 -0
- package/artifacts/contracts/test/Mocks/MockPancakeSwap.sol/IERC20.json +233 -0
- package/artifacts/contracts/test/Mocks/MockPancakeSwap.sol/IPancakeFactory.dbg.json +4 -0
- package/artifacts/contracts/test/Mocks/MockPancakeSwap.sol/IPancakeFactory.json +187 -0
- package/artifacts/contracts/test/Mocks/MockPancakeSwap.sol/IPancakePair.dbg.json +4 -0
- package/artifacts/contracts/test/Mocks/MockPancakeSwap.sol/IPancakePair.json +668 -0
- package/artifacts/contracts/test/Mocks/MockPancakeSwap.sol/IPancakeRouter01.dbg.json +4 -0
- package/artifacts/contracts/test/Mocks/MockPancakeSwap.sol/IPancakeRouter01.json +760 -0
- package/artifacts/contracts/test/Mocks/MockPancakeSwap.sol/IPancakeRouter02.dbg.json +4 -0
- package/artifacts/contracts/test/Mocks/MockPancakeSwap.sol/IPancakeRouter02.json +962 -0
- package/artifacts/contracts/test/Mocks/MockPancakeSwap.sol/IWETH.dbg.json +4 -0
- package/artifacts/contracts/test/Mocks/MockPancakeSwap.sol/IWETH.json +55 -0
- package/artifacts/contracts/test/Mocks/MockPancakeSwap.sol/PancakeLibrary.dbg.json +4 -0
- package/artifacts/contracts/test/Mocks/MockPancakeSwap.sol/PancakeLibrary.json +10 -0
- package/artifacts/contracts/test/Mocks/MockPancakeSwap.sol/PancakeRouter.dbg.json +4 -0
- package/artifacts/contracts/test/Mocks/MockPancakeSwap.sol/PancakeRouter.json +982 -0
- package/artifacts/contracts/test/Mocks/MockPancakeSwap.sol/SafeMath.dbg.json +4 -0
- package/artifacts/contracts/test/Mocks/MockPancakeSwap.sol/SafeMath.json +10 -0
- package/artifacts/contracts/test/Mocks/MockPancakeSwap.sol/TransferHelper.dbg.json +4 -0
- package/artifacts/contracts/test/Mocks/MockPancakeSwap.sol/TransferHelper.json +10 -0
- package/artifacts/contracts/test/Mocks/MockPriceOracle.sol/MockPriceOracle.dbg.json +4 -0
- package/artifacts/contracts/test/Mocks/MockPriceOracle.sol/MockPriceOracle.json +85 -0
- package/artifacts/contracts/test/Mocks/MockToken.sol/MockToken.dbg.json +4 -0
- package/artifacts/contracts/test/Mocks/MockToken.sol/MockToken.json +315 -0
- package/artifacts/contracts/test/SafeMath.sol/SafeMath.dbg.json +4 -0
- package/artifacts/contracts/test/SafeMath.sol/SafeMath.json +10 -0
- package/artifacts/contracts/test/UpgradedVToken.sol/UpgradedVToken.dbg.json +4 -0
- package/artifacts/contracts/test/UpgradedVToken.sol/UpgradedVToken.json +1946 -0
- package/artifacts/contracts/test/VTokenHarness.sol/VTokenHarness.dbg.json +4 -0
- package/artifacts/contracts/test/VTokenHarness.sol/VTokenHarness.json +2306 -0
- package/contracts/BaseJumpRateModelV2.sol +4 -3
- package/contracts/Comptroller.sol +27 -11
- package/contracts/ComptrollerInterface.sol +10 -0
- package/contracts/ComptrollerStorage.sol +5 -0
- package/contracts/ErrorReporter.sol +5 -0
- package/contracts/Lens/PoolLens.sol +13 -0
- package/contracts/MaxLoopsLimitHelper.sol +5 -0
- package/contracts/Pool/PoolRegistry.sol +19 -1
- package/contracts/Pool/PoolRegistryInterface.sol +12 -7
- package/contracts/Rewards/RewardsDistributor.sol +15 -0
- package/contracts/RiskFund/IProtocolShareReserve.sol +5 -0
- package/contracts/RiskFund/IRiskFund.sol +5 -0
- package/contracts/RiskFund/ProtocolShareReserve.sol +5 -0
- package/contracts/RiskFund/ReserveHelpers.sol +5 -0
- package/contracts/RiskFund/RiskFund.sol +3 -0
- package/contracts/Shortfall/IShortfall.sol +5 -0
- package/contracts/Shortfall/Shortfall.sol +10 -2
- package/contracts/VToken.sol +24 -2
- package/contracts/VTokenInterfaces.sol +10 -0
- package/contracts/WhitePaperInterestRateModel.sol +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,1712 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "ComptrollerHarness",
|
|
4
|
+
"sourceName": "contracts/test/ComptrollerHarness.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "address",
|
|
10
|
+
"name": "_poolRegistry",
|
|
11
|
+
"type": "address"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"stateMutability": "nonpayable",
|
|
15
|
+
"type": "constructor"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"inputs": [
|
|
19
|
+
{
|
|
20
|
+
"internalType": "address",
|
|
21
|
+
"name": "market",
|
|
22
|
+
"type": "address"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"internalType": "enum ComptrollerStorage.Action",
|
|
26
|
+
"name": "action",
|
|
27
|
+
"type": "uint8"
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"name": "ActionPaused",
|
|
31
|
+
"type": "error"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"inputs": [
|
|
35
|
+
{
|
|
36
|
+
"internalType": "address",
|
|
37
|
+
"name": "market",
|
|
38
|
+
"type": "address"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"internalType": "uint256",
|
|
42
|
+
"name": "cap",
|
|
43
|
+
"type": "uint256"
|
|
44
|
+
}
|
|
45
|
+
],
|
|
46
|
+
"name": "BorrowCapExceeded",
|
|
47
|
+
"type": "error"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"inputs": [
|
|
51
|
+
{
|
|
52
|
+
"internalType": "uint256",
|
|
53
|
+
"name": "expectedLessThanOrEqualTo",
|
|
54
|
+
"type": "uint256"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"internalType": "uint256",
|
|
58
|
+
"name": "actual",
|
|
59
|
+
"type": "uint256"
|
|
60
|
+
}
|
|
61
|
+
],
|
|
62
|
+
"name": "CollateralExceedsThreshold",
|
|
63
|
+
"type": "error"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"inputs": [],
|
|
67
|
+
"name": "ComptrollerMismatch",
|
|
68
|
+
"type": "error"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"inputs": [
|
|
72
|
+
{
|
|
73
|
+
"internalType": "uint256",
|
|
74
|
+
"name": "collateralToSeize",
|
|
75
|
+
"type": "uint256"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"internalType": "uint256",
|
|
79
|
+
"name": "availableCollateral",
|
|
80
|
+
"type": "uint256"
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
"name": "InsufficientCollateral",
|
|
84
|
+
"type": "error"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"inputs": [],
|
|
88
|
+
"name": "InsufficientLiquidity",
|
|
89
|
+
"type": "error"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"inputs": [],
|
|
93
|
+
"name": "InsufficientShortfall",
|
|
94
|
+
"type": "error"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"inputs": [],
|
|
98
|
+
"name": "InvalidCollateralFactor",
|
|
99
|
+
"type": "error"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"inputs": [],
|
|
103
|
+
"name": "InvalidLiquidationThreshold",
|
|
104
|
+
"type": "error"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"inputs": [
|
|
108
|
+
{
|
|
109
|
+
"internalType": "address",
|
|
110
|
+
"name": "market",
|
|
111
|
+
"type": "address"
|
|
112
|
+
}
|
|
113
|
+
],
|
|
114
|
+
"name": "MarketAlreadyListed",
|
|
115
|
+
"type": "error"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"inputs": [
|
|
119
|
+
{
|
|
120
|
+
"internalType": "address",
|
|
121
|
+
"name": "vToken",
|
|
122
|
+
"type": "address"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"internalType": "address",
|
|
126
|
+
"name": "user",
|
|
127
|
+
"type": "address"
|
|
128
|
+
}
|
|
129
|
+
],
|
|
130
|
+
"name": "MarketNotCollateral",
|
|
131
|
+
"type": "error"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"inputs": [
|
|
135
|
+
{
|
|
136
|
+
"internalType": "address",
|
|
137
|
+
"name": "market",
|
|
138
|
+
"type": "address"
|
|
139
|
+
}
|
|
140
|
+
],
|
|
141
|
+
"name": "MarketNotListed",
|
|
142
|
+
"type": "error"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"inputs": [
|
|
146
|
+
{
|
|
147
|
+
"internalType": "uint256",
|
|
148
|
+
"name": "loopsLimit",
|
|
149
|
+
"type": "uint256"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"internalType": "uint256",
|
|
153
|
+
"name": "requiredLoops",
|
|
154
|
+
"type": "uint256"
|
|
155
|
+
}
|
|
156
|
+
],
|
|
157
|
+
"name": "MaxLoopsLimitExceeded",
|
|
158
|
+
"type": "error"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"inputs": [
|
|
162
|
+
{
|
|
163
|
+
"internalType": "uint256",
|
|
164
|
+
"name": "expectedGreaterThan",
|
|
165
|
+
"type": "uint256"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"internalType": "uint256",
|
|
169
|
+
"name": "actual",
|
|
170
|
+
"type": "uint256"
|
|
171
|
+
}
|
|
172
|
+
],
|
|
173
|
+
"name": "MinimalCollateralViolated",
|
|
174
|
+
"type": "error"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"inputs": [],
|
|
178
|
+
"name": "NonzeroBorrowBalance",
|
|
179
|
+
"type": "error"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"inputs": [
|
|
183
|
+
{
|
|
184
|
+
"internalType": "address",
|
|
185
|
+
"name": "vToken",
|
|
186
|
+
"type": "address"
|
|
187
|
+
}
|
|
188
|
+
],
|
|
189
|
+
"name": "PriceError",
|
|
190
|
+
"type": "error"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"inputs": [
|
|
194
|
+
{
|
|
195
|
+
"internalType": "address",
|
|
196
|
+
"name": "vToken",
|
|
197
|
+
"type": "address"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"internalType": "address",
|
|
201
|
+
"name": "user",
|
|
202
|
+
"type": "address"
|
|
203
|
+
}
|
|
204
|
+
],
|
|
205
|
+
"name": "SnapshotError",
|
|
206
|
+
"type": "error"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"inputs": [
|
|
210
|
+
{
|
|
211
|
+
"internalType": "address",
|
|
212
|
+
"name": "market",
|
|
213
|
+
"type": "address"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"internalType": "uint256",
|
|
217
|
+
"name": "cap",
|
|
218
|
+
"type": "uint256"
|
|
219
|
+
}
|
|
220
|
+
],
|
|
221
|
+
"name": "SupplyCapExceeded",
|
|
222
|
+
"type": "error"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"inputs": [],
|
|
226
|
+
"name": "TooMuchRepay",
|
|
227
|
+
"type": "error"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"inputs": [
|
|
231
|
+
{
|
|
232
|
+
"internalType": "address",
|
|
233
|
+
"name": "sender",
|
|
234
|
+
"type": "address"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"internalType": "address",
|
|
238
|
+
"name": "calledContract",
|
|
239
|
+
"type": "address"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"internalType": "string",
|
|
243
|
+
"name": "methodSignature",
|
|
244
|
+
"type": "string"
|
|
245
|
+
}
|
|
246
|
+
],
|
|
247
|
+
"name": "Unauthorized",
|
|
248
|
+
"type": "error"
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"inputs": [
|
|
252
|
+
{
|
|
253
|
+
"internalType": "address",
|
|
254
|
+
"name": "expectedSender",
|
|
255
|
+
"type": "address"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"internalType": "address",
|
|
259
|
+
"name": "actualSender",
|
|
260
|
+
"type": "address"
|
|
261
|
+
}
|
|
262
|
+
],
|
|
263
|
+
"name": "UnexpectedSender",
|
|
264
|
+
"type": "error"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"inputs": [],
|
|
268
|
+
"name": "ZeroAddressNotAllowed",
|
|
269
|
+
"type": "error"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"anonymous": false,
|
|
273
|
+
"inputs": [
|
|
274
|
+
{
|
|
275
|
+
"indexed": false,
|
|
276
|
+
"internalType": "contract VToken",
|
|
277
|
+
"name": "vToken",
|
|
278
|
+
"type": "address"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"indexed": false,
|
|
282
|
+
"internalType": "enum ComptrollerStorage.Action",
|
|
283
|
+
"name": "action",
|
|
284
|
+
"type": "uint8"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"indexed": false,
|
|
288
|
+
"internalType": "bool",
|
|
289
|
+
"name": "pauseState",
|
|
290
|
+
"type": "bool"
|
|
291
|
+
}
|
|
292
|
+
],
|
|
293
|
+
"name": "ActionPausedMarket",
|
|
294
|
+
"type": "event"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"anonymous": false,
|
|
298
|
+
"inputs": [
|
|
299
|
+
{
|
|
300
|
+
"indexed": false,
|
|
301
|
+
"internalType": "uint8",
|
|
302
|
+
"name": "version",
|
|
303
|
+
"type": "uint8"
|
|
304
|
+
}
|
|
305
|
+
],
|
|
306
|
+
"name": "Initialized",
|
|
307
|
+
"type": "event"
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"anonymous": false,
|
|
311
|
+
"inputs": [
|
|
312
|
+
{
|
|
313
|
+
"indexed": true,
|
|
314
|
+
"internalType": "contract VToken",
|
|
315
|
+
"name": "vToken",
|
|
316
|
+
"type": "address"
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"indexed": true,
|
|
320
|
+
"internalType": "address",
|
|
321
|
+
"name": "account",
|
|
322
|
+
"type": "address"
|
|
323
|
+
}
|
|
324
|
+
],
|
|
325
|
+
"name": "MarketEntered",
|
|
326
|
+
"type": "event"
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"anonymous": false,
|
|
330
|
+
"inputs": [
|
|
331
|
+
{
|
|
332
|
+
"indexed": true,
|
|
333
|
+
"internalType": "contract VToken",
|
|
334
|
+
"name": "vToken",
|
|
335
|
+
"type": "address"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"indexed": true,
|
|
339
|
+
"internalType": "address",
|
|
340
|
+
"name": "account",
|
|
341
|
+
"type": "address"
|
|
342
|
+
}
|
|
343
|
+
],
|
|
344
|
+
"name": "MarketExited",
|
|
345
|
+
"type": "event"
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"anonymous": false,
|
|
349
|
+
"inputs": [
|
|
350
|
+
{
|
|
351
|
+
"indexed": false,
|
|
352
|
+
"internalType": "contract VToken",
|
|
353
|
+
"name": "vToken",
|
|
354
|
+
"type": "address"
|
|
355
|
+
}
|
|
356
|
+
],
|
|
357
|
+
"name": "MarketSupported",
|
|
358
|
+
"type": "event"
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"anonymous": false,
|
|
362
|
+
"inputs": [
|
|
363
|
+
{
|
|
364
|
+
"indexed": false,
|
|
365
|
+
"internalType": "uint256",
|
|
366
|
+
"name": "oldMaxLoopsLimit",
|
|
367
|
+
"type": "uint256"
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"indexed": false,
|
|
371
|
+
"internalType": "uint256",
|
|
372
|
+
"name": "newmaxLoopsLimit",
|
|
373
|
+
"type": "uint256"
|
|
374
|
+
}
|
|
375
|
+
],
|
|
376
|
+
"name": "MaxLoopsLimitUpdated",
|
|
377
|
+
"type": "event"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"anonymous": false,
|
|
381
|
+
"inputs": [
|
|
382
|
+
{
|
|
383
|
+
"indexed": false,
|
|
384
|
+
"internalType": "address",
|
|
385
|
+
"name": "oldAccessControlManager",
|
|
386
|
+
"type": "address"
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"indexed": false,
|
|
390
|
+
"internalType": "address",
|
|
391
|
+
"name": "newAccessControlManager",
|
|
392
|
+
"type": "address"
|
|
393
|
+
}
|
|
394
|
+
],
|
|
395
|
+
"name": "NewAccessControlManager",
|
|
396
|
+
"type": "event"
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"anonymous": false,
|
|
400
|
+
"inputs": [
|
|
401
|
+
{
|
|
402
|
+
"indexed": true,
|
|
403
|
+
"internalType": "contract VToken",
|
|
404
|
+
"name": "vToken",
|
|
405
|
+
"type": "address"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"indexed": false,
|
|
409
|
+
"internalType": "uint256",
|
|
410
|
+
"name": "newBorrowCap",
|
|
411
|
+
"type": "uint256"
|
|
412
|
+
}
|
|
413
|
+
],
|
|
414
|
+
"name": "NewBorrowCap",
|
|
415
|
+
"type": "event"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"anonymous": false,
|
|
419
|
+
"inputs": [
|
|
420
|
+
{
|
|
421
|
+
"indexed": false,
|
|
422
|
+
"internalType": "uint256",
|
|
423
|
+
"name": "oldCloseFactorMantissa",
|
|
424
|
+
"type": "uint256"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"indexed": false,
|
|
428
|
+
"internalType": "uint256",
|
|
429
|
+
"name": "newCloseFactorMantissa",
|
|
430
|
+
"type": "uint256"
|
|
431
|
+
}
|
|
432
|
+
],
|
|
433
|
+
"name": "NewCloseFactor",
|
|
434
|
+
"type": "event"
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"anonymous": false,
|
|
438
|
+
"inputs": [
|
|
439
|
+
{
|
|
440
|
+
"indexed": false,
|
|
441
|
+
"internalType": "contract VToken",
|
|
442
|
+
"name": "vToken",
|
|
443
|
+
"type": "address"
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"indexed": false,
|
|
447
|
+
"internalType": "uint256",
|
|
448
|
+
"name": "oldCollateralFactorMantissa",
|
|
449
|
+
"type": "uint256"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"indexed": false,
|
|
453
|
+
"internalType": "uint256",
|
|
454
|
+
"name": "newCollateralFactorMantissa",
|
|
455
|
+
"type": "uint256"
|
|
456
|
+
}
|
|
457
|
+
],
|
|
458
|
+
"name": "NewCollateralFactor",
|
|
459
|
+
"type": "event"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"anonymous": false,
|
|
463
|
+
"inputs": [
|
|
464
|
+
{
|
|
465
|
+
"indexed": false,
|
|
466
|
+
"internalType": "uint256",
|
|
467
|
+
"name": "oldLiquidationIncentiveMantissa",
|
|
468
|
+
"type": "uint256"
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"indexed": false,
|
|
472
|
+
"internalType": "uint256",
|
|
473
|
+
"name": "newLiquidationIncentiveMantissa",
|
|
474
|
+
"type": "uint256"
|
|
475
|
+
}
|
|
476
|
+
],
|
|
477
|
+
"name": "NewLiquidationIncentive",
|
|
478
|
+
"type": "event"
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"anonymous": false,
|
|
482
|
+
"inputs": [
|
|
483
|
+
{
|
|
484
|
+
"indexed": false,
|
|
485
|
+
"internalType": "contract VToken",
|
|
486
|
+
"name": "vToken",
|
|
487
|
+
"type": "address"
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"indexed": false,
|
|
491
|
+
"internalType": "uint256",
|
|
492
|
+
"name": "oldLiquidationThresholdMantissa",
|
|
493
|
+
"type": "uint256"
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"indexed": false,
|
|
497
|
+
"internalType": "uint256",
|
|
498
|
+
"name": "newLiquidationThresholdMantissa",
|
|
499
|
+
"type": "uint256"
|
|
500
|
+
}
|
|
501
|
+
],
|
|
502
|
+
"name": "NewLiquidationThreshold",
|
|
503
|
+
"type": "event"
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
"anonymous": false,
|
|
507
|
+
"inputs": [
|
|
508
|
+
{
|
|
509
|
+
"indexed": false,
|
|
510
|
+
"internalType": "uint256",
|
|
511
|
+
"name": "oldMinLiquidatableCollateral",
|
|
512
|
+
"type": "uint256"
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"indexed": false,
|
|
516
|
+
"internalType": "uint256",
|
|
517
|
+
"name": "newMinLiquidatableCollateral",
|
|
518
|
+
"type": "uint256"
|
|
519
|
+
}
|
|
520
|
+
],
|
|
521
|
+
"name": "NewMinLiquidatableCollateral",
|
|
522
|
+
"type": "event"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"anonymous": false,
|
|
526
|
+
"inputs": [
|
|
527
|
+
{
|
|
528
|
+
"indexed": false,
|
|
529
|
+
"internalType": "contract ResilientOracleInterface",
|
|
530
|
+
"name": "oldPriceOracle",
|
|
531
|
+
"type": "address"
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"indexed": false,
|
|
535
|
+
"internalType": "contract ResilientOracleInterface",
|
|
536
|
+
"name": "newPriceOracle",
|
|
537
|
+
"type": "address"
|
|
538
|
+
}
|
|
539
|
+
],
|
|
540
|
+
"name": "NewPriceOracle",
|
|
541
|
+
"type": "event"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"anonymous": false,
|
|
545
|
+
"inputs": [
|
|
546
|
+
{
|
|
547
|
+
"indexed": true,
|
|
548
|
+
"internalType": "address",
|
|
549
|
+
"name": "rewardsDistributor",
|
|
550
|
+
"type": "address"
|
|
551
|
+
}
|
|
552
|
+
],
|
|
553
|
+
"name": "NewRewardsDistributor",
|
|
554
|
+
"type": "event"
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"anonymous": false,
|
|
558
|
+
"inputs": [
|
|
559
|
+
{
|
|
560
|
+
"indexed": true,
|
|
561
|
+
"internalType": "contract VToken",
|
|
562
|
+
"name": "vToken",
|
|
563
|
+
"type": "address"
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
"indexed": false,
|
|
567
|
+
"internalType": "uint256",
|
|
568
|
+
"name": "newSupplyCap",
|
|
569
|
+
"type": "uint256"
|
|
570
|
+
}
|
|
571
|
+
],
|
|
572
|
+
"name": "NewSupplyCap",
|
|
573
|
+
"type": "event"
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"anonymous": false,
|
|
577
|
+
"inputs": [
|
|
578
|
+
{
|
|
579
|
+
"indexed": true,
|
|
580
|
+
"internalType": "address",
|
|
581
|
+
"name": "previousOwner",
|
|
582
|
+
"type": "address"
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
"indexed": true,
|
|
586
|
+
"internalType": "address",
|
|
587
|
+
"name": "newOwner",
|
|
588
|
+
"type": "address"
|
|
589
|
+
}
|
|
590
|
+
],
|
|
591
|
+
"name": "OwnershipTransferStarted",
|
|
592
|
+
"type": "event"
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"anonymous": false,
|
|
596
|
+
"inputs": [
|
|
597
|
+
{
|
|
598
|
+
"indexed": true,
|
|
599
|
+
"internalType": "address",
|
|
600
|
+
"name": "previousOwner",
|
|
601
|
+
"type": "address"
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"indexed": true,
|
|
605
|
+
"internalType": "address",
|
|
606
|
+
"name": "newOwner",
|
|
607
|
+
"type": "address"
|
|
608
|
+
}
|
|
609
|
+
],
|
|
610
|
+
"name": "OwnershipTransferred",
|
|
611
|
+
"type": "event"
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
"inputs": [],
|
|
615
|
+
"name": "acceptOwnership",
|
|
616
|
+
"outputs": [],
|
|
617
|
+
"stateMutability": "nonpayable",
|
|
618
|
+
"type": "function"
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
"inputs": [],
|
|
622
|
+
"name": "accessControlManager",
|
|
623
|
+
"outputs": [
|
|
624
|
+
{
|
|
625
|
+
"internalType": "contract IAccessControlManagerV8",
|
|
626
|
+
"name": "",
|
|
627
|
+
"type": "address"
|
|
628
|
+
}
|
|
629
|
+
],
|
|
630
|
+
"stateMutability": "view",
|
|
631
|
+
"type": "function"
|
|
632
|
+
},
|
|
633
|
+
{
|
|
634
|
+
"inputs": [
|
|
635
|
+
{
|
|
636
|
+
"internalType": "address",
|
|
637
|
+
"name": "",
|
|
638
|
+
"type": "address"
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
"internalType": "uint256",
|
|
642
|
+
"name": "",
|
|
643
|
+
"type": "uint256"
|
|
644
|
+
}
|
|
645
|
+
],
|
|
646
|
+
"name": "accountAssets",
|
|
647
|
+
"outputs": [
|
|
648
|
+
{
|
|
649
|
+
"internalType": "contract VToken",
|
|
650
|
+
"name": "",
|
|
651
|
+
"type": "address"
|
|
652
|
+
}
|
|
653
|
+
],
|
|
654
|
+
"stateMutability": "view",
|
|
655
|
+
"type": "function"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"inputs": [
|
|
659
|
+
{
|
|
660
|
+
"internalType": "address",
|
|
661
|
+
"name": "market",
|
|
662
|
+
"type": "address"
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
"internalType": "enum ComptrollerStorage.Action",
|
|
666
|
+
"name": "action",
|
|
667
|
+
"type": "uint8"
|
|
668
|
+
}
|
|
669
|
+
],
|
|
670
|
+
"name": "actionPaused",
|
|
671
|
+
"outputs": [
|
|
672
|
+
{
|
|
673
|
+
"internalType": "bool",
|
|
674
|
+
"name": "",
|
|
675
|
+
"type": "bool"
|
|
676
|
+
}
|
|
677
|
+
],
|
|
678
|
+
"stateMutability": "view",
|
|
679
|
+
"type": "function"
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"inputs": [
|
|
683
|
+
{
|
|
684
|
+
"internalType": "contract RewardsDistributor",
|
|
685
|
+
"name": "_rewardsDistributor",
|
|
686
|
+
"type": "address"
|
|
687
|
+
}
|
|
688
|
+
],
|
|
689
|
+
"name": "addRewardsDistributor",
|
|
690
|
+
"outputs": [],
|
|
691
|
+
"stateMutability": "nonpayable",
|
|
692
|
+
"type": "function"
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"inputs": [
|
|
696
|
+
{
|
|
697
|
+
"internalType": "uint256",
|
|
698
|
+
"name": "",
|
|
699
|
+
"type": "uint256"
|
|
700
|
+
}
|
|
701
|
+
],
|
|
702
|
+
"name": "allMarkets",
|
|
703
|
+
"outputs": [
|
|
704
|
+
{
|
|
705
|
+
"internalType": "contract VToken",
|
|
706
|
+
"name": "",
|
|
707
|
+
"type": "address"
|
|
708
|
+
}
|
|
709
|
+
],
|
|
710
|
+
"stateMutability": "view",
|
|
711
|
+
"type": "function"
|
|
712
|
+
},
|
|
713
|
+
{
|
|
714
|
+
"inputs": [],
|
|
715
|
+
"name": "blockNumber",
|
|
716
|
+
"outputs": [
|
|
717
|
+
{
|
|
718
|
+
"internalType": "uint256",
|
|
719
|
+
"name": "",
|
|
720
|
+
"type": "uint256"
|
|
721
|
+
}
|
|
722
|
+
],
|
|
723
|
+
"stateMutability": "view",
|
|
724
|
+
"type": "function"
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
"inputs": [
|
|
728
|
+
{
|
|
729
|
+
"internalType": "address",
|
|
730
|
+
"name": "",
|
|
731
|
+
"type": "address"
|
|
732
|
+
}
|
|
733
|
+
],
|
|
734
|
+
"name": "borrowCaps",
|
|
735
|
+
"outputs": [
|
|
736
|
+
{
|
|
737
|
+
"internalType": "uint256",
|
|
738
|
+
"name": "",
|
|
739
|
+
"type": "uint256"
|
|
740
|
+
}
|
|
741
|
+
],
|
|
742
|
+
"stateMutability": "view",
|
|
743
|
+
"type": "function"
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
"inputs": [
|
|
747
|
+
{
|
|
748
|
+
"internalType": "address",
|
|
749
|
+
"name": "account",
|
|
750
|
+
"type": "address"
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
"internalType": "contract VToken",
|
|
754
|
+
"name": "vToken",
|
|
755
|
+
"type": "address"
|
|
756
|
+
}
|
|
757
|
+
],
|
|
758
|
+
"name": "checkMembership",
|
|
759
|
+
"outputs": [
|
|
760
|
+
{
|
|
761
|
+
"internalType": "bool",
|
|
762
|
+
"name": "",
|
|
763
|
+
"type": "bool"
|
|
764
|
+
}
|
|
765
|
+
],
|
|
766
|
+
"stateMutability": "view",
|
|
767
|
+
"type": "function"
|
|
768
|
+
},
|
|
769
|
+
{
|
|
770
|
+
"inputs": [],
|
|
771
|
+
"name": "closeFactorMantissa",
|
|
772
|
+
"outputs": [
|
|
773
|
+
{
|
|
774
|
+
"internalType": "uint256",
|
|
775
|
+
"name": "",
|
|
776
|
+
"type": "uint256"
|
|
777
|
+
}
|
|
778
|
+
],
|
|
779
|
+
"stateMutability": "view",
|
|
780
|
+
"type": "function"
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"inputs": [
|
|
784
|
+
{
|
|
785
|
+
"internalType": "address[]",
|
|
786
|
+
"name": "vTokens",
|
|
787
|
+
"type": "address[]"
|
|
788
|
+
}
|
|
789
|
+
],
|
|
790
|
+
"name": "enterMarkets",
|
|
791
|
+
"outputs": [
|
|
792
|
+
{
|
|
793
|
+
"internalType": "uint256[]",
|
|
794
|
+
"name": "",
|
|
795
|
+
"type": "uint256[]"
|
|
796
|
+
}
|
|
797
|
+
],
|
|
798
|
+
"stateMutability": "nonpayable",
|
|
799
|
+
"type": "function"
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
"inputs": [
|
|
803
|
+
{
|
|
804
|
+
"internalType": "address",
|
|
805
|
+
"name": "vTokenAddress",
|
|
806
|
+
"type": "address"
|
|
807
|
+
}
|
|
808
|
+
],
|
|
809
|
+
"name": "exitMarket",
|
|
810
|
+
"outputs": [
|
|
811
|
+
{
|
|
812
|
+
"internalType": "uint256",
|
|
813
|
+
"name": "",
|
|
814
|
+
"type": "uint256"
|
|
815
|
+
}
|
|
816
|
+
],
|
|
817
|
+
"stateMutability": "nonpayable",
|
|
818
|
+
"type": "function"
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"inputs": [
|
|
822
|
+
{
|
|
823
|
+
"internalType": "address",
|
|
824
|
+
"name": "account",
|
|
825
|
+
"type": "address"
|
|
826
|
+
}
|
|
827
|
+
],
|
|
828
|
+
"name": "getAccountLiquidity",
|
|
829
|
+
"outputs": [
|
|
830
|
+
{
|
|
831
|
+
"internalType": "uint256",
|
|
832
|
+
"name": "error",
|
|
833
|
+
"type": "uint256"
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
"internalType": "uint256",
|
|
837
|
+
"name": "liquidity",
|
|
838
|
+
"type": "uint256"
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
"internalType": "uint256",
|
|
842
|
+
"name": "shortfall",
|
|
843
|
+
"type": "uint256"
|
|
844
|
+
}
|
|
845
|
+
],
|
|
846
|
+
"stateMutability": "view",
|
|
847
|
+
"type": "function"
|
|
848
|
+
},
|
|
849
|
+
{
|
|
850
|
+
"inputs": [],
|
|
851
|
+
"name": "getAllMarkets",
|
|
852
|
+
"outputs": [
|
|
853
|
+
{
|
|
854
|
+
"internalType": "contract VToken[]",
|
|
855
|
+
"name": "",
|
|
856
|
+
"type": "address[]"
|
|
857
|
+
}
|
|
858
|
+
],
|
|
859
|
+
"stateMutability": "view",
|
|
860
|
+
"type": "function"
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
"inputs": [
|
|
864
|
+
{
|
|
865
|
+
"internalType": "address",
|
|
866
|
+
"name": "account",
|
|
867
|
+
"type": "address"
|
|
868
|
+
}
|
|
869
|
+
],
|
|
870
|
+
"name": "getAssetsIn",
|
|
871
|
+
"outputs": [
|
|
872
|
+
{
|
|
873
|
+
"internalType": "contract VToken[]",
|
|
874
|
+
"name": "",
|
|
875
|
+
"type": "address[]"
|
|
876
|
+
}
|
|
877
|
+
],
|
|
878
|
+
"stateMutability": "view",
|
|
879
|
+
"type": "function"
|
|
880
|
+
},
|
|
881
|
+
{
|
|
882
|
+
"inputs": [
|
|
883
|
+
{
|
|
884
|
+
"internalType": "address",
|
|
885
|
+
"name": "account",
|
|
886
|
+
"type": "address"
|
|
887
|
+
}
|
|
888
|
+
],
|
|
889
|
+
"name": "getBorrowingPower",
|
|
890
|
+
"outputs": [
|
|
891
|
+
{
|
|
892
|
+
"internalType": "uint256",
|
|
893
|
+
"name": "error",
|
|
894
|
+
"type": "uint256"
|
|
895
|
+
},
|
|
896
|
+
{
|
|
897
|
+
"internalType": "uint256",
|
|
898
|
+
"name": "liquidity",
|
|
899
|
+
"type": "uint256"
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
"internalType": "uint256",
|
|
903
|
+
"name": "shortfall",
|
|
904
|
+
"type": "uint256"
|
|
905
|
+
}
|
|
906
|
+
],
|
|
907
|
+
"stateMutability": "view",
|
|
908
|
+
"type": "function"
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
"inputs": [
|
|
912
|
+
{
|
|
913
|
+
"internalType": "address",
|
|
914
|
+
"name": "account",
|
|
915
|
+
"type": "address"
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
"internalType": "address",
|
|
919
|
+
"name": "vTokenModify",
|
|
920
|
+
"type": "address"
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"internalType": "uint256",
|
|
924
|
+
"name": "redeemTokens",
|
|
925
|
+
"type": "uint256"
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
"internalType": "uint256",
|
|
929
|
+
"name": "borrowAmount",
|
|
930
|
+
"type": "uint256"
|
|
931
|
+
}
|
|
932
|
+
],
|
|
933
|
+
"name": "getHypotheticalAccountLiquidity",
|
|
934
|
+
"outputs": [
|
|
935
|
+
{
|
|
936
|
+
"internalType": "uint256",
|
|
937
|
+
"name": "error",
|
|
938
|
+
"type": "uint256"
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
"internalType": "uint256",
|
|
942
|
+
"name": "liquidity",
|
|
943
|
+
"type": "uint256"
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
"internalType": "uint256",
|
|
947
|
+
"name": "shortfall",
|
|
948
|
+
"type": "uint256"
|
|
949
|
+
}
|
|
950
|
+
],
|
|
951
|
+
"stateMutability": "view",
|
|
952
|
+
"type": "function"
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
"inputs": [],
|
|
956
|
+
"name": "getRewardDistributors",
|
|
957
|
+
"outputs": [
|
|
958
|
+
{
|
|
959
|
+
"internalType": "contract RewardsDistributor[]",
|
|
960
|
+
"name": "",
|
|
961
|
+
"type": "address[]"
|
|
962
|
+
}
|
|
963
|
+
],
|
|
964
|
+
"stateMutability": "view",
|
|
965
|
+
"type": "function"
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"inputs": [
|
|
969
|
+
{
|
|
970
|
+
"internalType": "address",
|
|
971
|
+
"name": "vToken",
|
|
972
|
+
"type": "address"
|
|
973
|
+
}
|
|
974
|
+
],
|
|
975
|
+
"name": "getRewardsByMarket",
|
|
976
|
+
"outputs": [
|
|
977
|
+
{
|
|
978
|
+
"components": [
|
|
979
|
+
{
|
|
980
|
+
"internalType": "address",
|
|
981
|
+
"name": "rewardToken",
|
|
982
|
+
"type": "address"
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
"internalType": "uint256",
|
|
986
|
+
"name": "supplySpeed",
|
|
987
|
+
"type": "uint256"
|
|
988
|
+
},
|
|
989
|
+
{
|
|
990
|
+
"internalType": "uint256",
|
|
991
|
+
"name": "borrowSpeed",
|
|
992
|
+
"type": "uint256"
|
|
993
|
+
}
|
|
994
|
+
],
|
|
995
|
+
"internalType": "struct ComptrollerStorage.RewardSpeeds[]",
|
|
996
|
+
"name": "rewardSpeeds",
|
|
997
|
+
"type": "tuple[]"
|
|
998
|
+
}
|
|
999
|
+
],
|
|
1000
|
+
"stateMutability": "view",
|
|
1001
|
+
"type": "function"
|
|
1002
|
+
},
|
|
1003
|
+
{
|
|
1004
|
+
"inputs": [
|
|
1005
|
+
{
|
|
1006
|
+
"internalType": "uint256",
|
|
1007
|
+
"name": "blocks",
|
|
1008
|
+
"type": "uint256"
|
|
1009
|
+
}
|
|
1010
|
+
],
|
|
1011
|
+
"name": "harnessFastForward",
|
|
1012
|
+
"outputs": [
|
|
1013
|
+
{
|
|
1014
|
+
"internalType": "uint256",
|
|
1015
|
+
"name": "",
|
|
1016
|
+
"type": "uint256"
|
|
1017
|
+
}
|
|
1018
|
+
],
|
|
1019
|
+
"stateMutability": "nonpayable",
|
|
1020
|
+
"type": "function"
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
"inputs": [
|
|
1024
|
+
{
|
|
1025
|
+
"internalType": "address",
|
|
1026
|
+
"name": "user",
|
|
1027
|
+
"type": "address"
|
|
1028
|
+
}
|
|
1029
|
+
],
|
|
1030
|
+
"name": "healAccount",
|
|
1031
|
+
"outputs": [],
|
|
1032
|
+
"stateMutability": "nonpayable",
|
|
1033
|
+
"type": "function"
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
"inputs": [
|
|
1037
|
+
{
|
|
1038
|
+
"internalType": "uint256",
|
|
1039
|
+
"name": "loopLimit",
|
|
1040
|
+
"type": "uint256"
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
"internalType": "address",
|
|
1044
|
+
"name": "accessControlManager",
|
|
1045
|
+
"type": "address"
|
|
1046
|
+
}
|
|
1047
|
+
],
|
|
1048
|
+
"name": "initialize",
|
|
1049
|
+
"outputs": [],
|
|
1050
|
+
"stateMutability": "nonpayable",
|
|
1051
|
+
"type": "function"
|
|
1052
|
+
},
|
|
1053
|
+
{
|
|
1054
|
+
"inputs": [],
|
|
1055
|
+
"name": "isComptroller",
|
|
1056
|
+
"outputs": [
|
|
1057
|
+
{
|
|
1058
|
+
"internalType": "bool",
|
|
1059
|
+
"name": "",
|
|
1060
|
+
"type": "bool"
|
|
1061
|
+
}
|
|
1062
|
+
],
|
|
1063
|
+
"stateMutability": "pure",
|
|
1064
|
+
"type": "function"
|
|
1065
|
+
},
|
|
1066
|
+
{
|
|
1067
|
+
"inputs": [
|
|
1068
|
+
{
|
|
1069
|
+
"internalType": "contract VToken",
|
|
1070
|
+
"name": "vToken",
|
|
1071
|
+
"type": "address"
|
|
1072
|
+
}
|
|
1073
|
+
],
|
|
1074
|
+
"name": "isDeprecated",
|
|
1075
|
+
"outputs": [
|
|
1076
|
+
{
|
|
1077
|
+
"internalType": "bool",
|
|
1078
|
+
"name": "",
|
|
1079
|
+
"type": "bool"
|
|
1080
|
+
}
|
|
1081
|
+
],
|
|
1082
|
+
"stateMutability": "view",
|
|
1083
|
+
"type": "function"
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
"inputs": [
|
|
1087
|
+
{
|
|
1088
|
+
"internalType": "contract VToken",
|
|
1089
|
+
"name": "vToken",
|
|
1090
|
+
"type": "address"
|
|
1091
|
+
}
|
|
1092
|
+
],
|
|
1093
|
+
"name": "isMarketListed",
|
|
1094
|
+
"outputs": [
|
|
1095
|
+
{
|
|
1096
|
+
"internalType": "bool",
|
|
1097
|
+
"name": "",
|
|
1098
|
+
"type": "bool"
|
|
1099
|
+
}
|
|
1100
|
+
],
|
|
1101
|
+
"stateMutability": "view",
|
|
1102
|
+
"type": "function"
|
|
1103
|
+
},
|
|
1104
|
+
{
|
|
1105
|
+
"inputs": [
|
|
1106
|
+
{
|
|
1107
|
+
"internalType": "address",
|
|
1108
|
+
"name": "borrower",
|
|
1109
|
+
"type": "address"
|
|
1110
|
+
},
|
|
1111
|
+
{
|
|
1112
|
+
"components": [
|
|
1113
|
+
{
|
|
1114
|
+
"internalType": "contract VToken",
|
|
1115
|
+
"name": "vTokenCollateral",
|
|
1116
|
+
"type": "address"
|
|
1117
|
+
},
|
|
1118
|
+
{
|
|
1119
|
+
"internalType": "contract VToken",
|
|
1120
|
+
"name": "vTokenBorrowed",
|
|
1121
|
+
"type": "address"
|
|
1122
|
+
},
|
|
1123
|
+
{
|
|
1124
|
+
"internalType": "uint256",
|
|
1125
|
+
"name": "repayAmount",
|
|
1126
|
+
"type": "uint256"
|
|
1127
|
+
}
|
|
1128
|
+
],
|
|
1129
|
+
"internalType": "struct ComptrollerStorage.LiquidationOrder[]",
|
|
1130
|
+
"name": "orders",
|
|
1131
|
+
"type": "tuple[]"
|
|
1132
|
+
}
|
|
1133
|
+
],
|
|
1134
|
+
"name": "liquidateAccount",
|
|
1135
|
+
"outputs": [],
|
|
1136
|
+
"stateMutability": "nonpayable",
|
|
1137
|
+
"type": "function"
|
|
1138
|
+
},
|
|
1139
|
+
{
|
|
1140
|
+
"inputs": [
|
|
1141
|
+
{
|
|
1142
|
+
"internalType": "address",
|
|
1143
|
+
"name": "vTokenBorrowed",
|
|
1144
|
+
"type": "address"
|
|
1145
|
+
},
|
|
1146
|
+
{
|
|
1147
|
+
"internalType": "address",
|
|
1148
|
+
"name": "vTokenCollateral",
|
|
1149
|
+
"type": "address"
|
|
1150
|
+
},
|
|
1151
|
+
{
|
|
1152
|
+
"internalType": "uint256",
|
|
1153
|
+
"name": "actualRepayAmount",
|
|
1154
|
+
"type": "uint256"
|
|
1155
|
+
}
|
|
1156
|
+
],
|
|
1157
|
+
"name": "liquidateCalculateSeizeTokens",
|
|
1158
|
+
"outputs": [
|
|
1159
|
+
{
|
|
1160
|
+
"internalType": "uint256",
|
|
1161
|
+
"name": "error",
|
|
1162
|
+
"type": "uint256"
|
|
1163
|
+
},
|
|
1164
|
+
{
|
|
1165
|
+
"internalType": "uint256",
|
|
1166
|
+
"name": "tokensToSeize",
|
|
1167
|
+
"type": "uint256"
|
|
1168
|
+
}
|
|
1169
|
+
],
|
|
1170
|
+
"stateMutability": "view",
|
|
1171
|
+
"type": "function"
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
"inputs": [],
|
|
1175
|
+
"name": "liquidationIncentiveMantissa",
|
|
1176
|
+
"outputs": [
|
|
1177
|
+
{
|
|
1178
|
+
"internalType": "uint256",
|
|
1179
|
+
"name": "",
|
|
1180
|
+
"type": "uint256"
|
|
1181
|
+
}
|
|
1182
|
+
],
|
|
1183
|
+
"stateMutability": "view",
|
|
1184
|
+
"type": "function"
|
|
1185
|
+
},
|
|
1186
|
+
{
|
|
1187
|
+
"inputs": [
|
|
1188
|
+
{
|
|
1189
|
+
"internalType": "address",
|
|
1190
|
+
"name": "",
|
|
1191
|
+
"type": "address"
|
|
1192
|
+
}
|
|
1193
|
+
],
|
|
1194
|
+
"name": "markets",
|
|
1195
|
+
"outputs": [
|
|
1196
|
+
{
|
|
1197
|
+
"internalType": "bool",
|
|
1198
|
+
"name": "isListed",
|
|
1199
|
+
"type": "bool"
|
|
1200
|
+
},
|
|
1201
|
+
{
|
|
1202
|
+
"internalType": "uint256",
|
|
1203
|
+
"name": "collateralFactorMantissa",
|
|
1204
|
+
"type": "uint256"
|
|
1205
|
+
},
|
|
1206
|
+
{
|
|
1207
|
+
"internalType": "uint256",
|
|
1208
|
+
"name": "liquidationThresholdMantissa",
|
|
1209
|
+
"type": "uint256"
|
|
1210
|
+
}
|
|
1211
|
+
],
|
|
1212
|
+
"stateMutability": "view",
|
|
1213
|
+
"type": "function"
|
|
1214
|
+
},
|
|
1215
|
+
{
|
|
1216
|
+
"inputs": [],
|
|
1217
|
+
"name": "maxLoopsLimit",
|
|
1218
|
+
"outputs": [
|
|
1219
|
+
{
|
|
1220
|
+
"internalType": "uint256",
|
|
1221
|
+
"name": "",
|
|
1222
|
+
"type": "uint256"
|
|
1223
|
+
}
|
|
1224
|
+
],
|
|
1225
|
+
"stateMutability": "view",
|
|
1226
|
+
"type": "function"
|
|
1227
|
+
},
|
|
1228
|
+
{
|
|
1229
|
+
"inputs": [],
|
|
1230
|
+
"name": "minLiquidatableCollateral",
|
|
1231
|
+
"outputs": [
|
|
1232
|
+
{
|
|
1233
|
+
"internalType": "uint256",
|
|
1234
|
+
"name": "",
|
|
1235
|
+
"type": "uint256"
|
|
1236
|
+
}
|
|
1237
|
+
],
|
|
1238
|
+
"stateMutability": "view",
|
|
1239
|
+
"type": "function"
|
|
1240
|
+
},
|
|
1241
|
+
{
|
|
1242
|
+
"inputs": [],
|
|
1243
|
+
"name": "oracle",
|
|
1244
|
+
"outputs": [
|
|
1245
|
+
{
|
|
1246
|
+
"internalType": "contract ResilientOracleInterface",
|
|
1247
|
+
"name": "",
|
|
1248
|
+
"type": "address"
|
|
1249
|
+
}
|
|
1250
|
+
],
|
|
1251
|
+
"stateMutability": "view",
|
|
1252
|
+
"type": "function"
|
|
1253
|
+
},
|
|
1254
|
+
{
|
|
1255
|
+
"inputs": [],
|
|
1256
|
+
"name": "owner",
|
|
1257
|
+
"outputs": [
|
|
1258
|
+
{
|
|
1259
|
+
"internalType": "address",
|
|
1260
|
+
"name": "",
|
|
1261
|
+
"type": "address"
|
|
1262
|
+
}
|
|
1263
|
+
],
|
|
1264
|
+
"stateMutability": "view",
|
|
1265
|
+
"type": "function"
|
|
1266
|
+
},
|
|
1267
|
+
{
|
|
1268
|
+
"inputs": [],
|
|
1269
|
+
"name": "pendingOwner",
|
|
1270
|
+
"outputs": [
|
|
1271
|
+
{
|
|
1272
|
+
"internalType": "address",
|
|
1273
|
+
"name": "",
|
|
1274
|
+
"type": "address"
|
|
1275
|
+
}
|
|
1276
|
+
],
|
|
1277
|
+
"stateMutability": "view",
|
|
1278
|
+
"type": "function"
|
|
1279
|
+
},
|
|
1280
|
+
{
|
|
1281
|
+
"inputs": [],
|
|
1282
|
+
"name": "poolRegistry",
|
|
1283
|
+
"outputs": [
|
|
1284
|
+
{
|
|
1285
|
+
"internalType": "address",
|
|
1286
|
+
"name": "",
|
|
1287
|
+
"type": "address"
|
|
1288
|
+
}
|
|
1289
|
+
],
|
|
1290
|
+
"stateMutability": "view",
|
|
1291
|
+
"type": "function"
|
|
1292
|
+
},
|
|
1293
|
+
{
|
|
1294
|
+
"inputs": [
|
|
1295
|
+
{
|
|
1296
|
+
"internalType": "address",
|
|
1297
|
+
"name": "vToken",
|
|
1298
|
+
"type": "address"
|
|
1299
|
+
},
|
|
1300
|
+
{
|
|
1301
|
+
"internalType": "address",
|
|
1302
|
+
"name": "borrower",
|
|
1303
|
+
"type": "address"
|
|
1304
|
+
},
|
|
1305
|
+
{
|
|
1306
|
+
"internalType": "uint256",
|
|
1307
|
+
"name": "borrowAmount",
|
|
1308
|
+
"type": "uint256"
|
|
1309
|
+
}
|
|
1310
|
+
],
|
|
1311
|
+
"name": "preBorrowHook",
|
|
1312
|
+
"outputs": [],
|
|
1313
|
+
"stateMutability": "nonpayable",
|
|
1314
|
+
"type": "function"
|
|
1315
|
+
},
|
|
1316
|
+
{
|
|
1317
|
+
"inputs": [
|
|
1318
|
+
{
|
|
1319
|
+
"internalType": "address",
|
|
1320
|
+
"name": "vTokenBorrowed",
|
|
1321
|
+
"type": "address"
|
|
1322
|
+
},
|
|
1323
|
+
{
|
|
1324
|
+
"internalType": "address",
|
|
1325
|
+
"name": "vTokenCollateral",
|
|
1326
|
+
"type": "address"
|
|
1327
|
+
},
|
|
1328
|
+
{
|
|
1329
|
+
"internalType": "address",
|
|
1330
|
+
"name": "borrower",
|
|
1331
|
+
"type": "address"
|
|
1332
|
+
},
|
|
1333
|
+
{
|
|
1334
|
+
"internalType": "uint256",
|
|
1335
|
+
"name": "repayAmount",
|
|
1336
|
+
"type": "uint256"
|
|
1337
|
+
},
|
|
1338
|
+
{
|
|
1339
|
+
"internalType": "bool",
|
|
1340
|
+
"name": "skipLiquidityCheck",
|
|
1341
|
+
"type": "bool"
|
|
1342
|
+
}
|
|
1343
|
+
],
|
|
1344
|
+
"name": "preLiquidateHook",
|
|
1345
|
+
"outputs": [],
|
|
1346
|
+
"stateMutability": "nonpayable",
|
|
1347
|
+
"type": "function"
|
|
1348
|
+
},
|
|
1349
|
+
{
|
|
1350
|
+
"inputs": [
|
|
1351
|
+
{
|
|
1352
|
+
"internalType": "address",
|
|
1353
|
+
"name": "vToken",
|
|
1354
|
+
"type": "address"
|
|
1355
|
+
},
|
|
1356
|
+
{
|
|
1357
|
+
"internalType": "address",
|
|
1358
|
+
"name": "minter",
|
|
1359
|
+
"type": "address"
|
|
1360
|
+
},
|
|
1361
|
+
{
|
|
1362
|
+
"internalType": "uint256",
|
|
1363
|
+
"name": "mintAmount",
|
|
1364
|
+
"type": "uint256"
|
|
1365
|
+
}
|
|
1366
|
+
],
|
|
1367
|
+
"name": "preMintHook",
|
|
1368
|
+
"outputs": [],
|
|
1369
|
+
"stateMutability": "nonpayable",
|
|
1370
|
+
"type": "function"
|
|
1371
|
+
},
|
|
1372
|
+
{
|
|
1373
|
+
"inputs": [
|
|
1374
|
+
{
|
|
1375
|
+
"internalType": "address",
|
|
1376
|
+
"name": "vToken",
|
|
1377
|
+
"type": "address"
|
|
1378
|
+
},
|
|
1379
|
+
{
|
|
1380
|
+
"internalType": "address",
|
|
1381
|
+
"name": "redeemer",
|
|
1382
|
+
"type": "address"
|
|
1383
|
+
},
|
|
1384
|
+
{
|
|
1385
|
+
"internalType": "uint256",
|
|
1386
|
+
"name": "redeemTokens",
|
|
1387
|
+
"type": "uint256"
|
|
1388
|
+
}
|
|
1389
|
+
],
|
|
1390
|
+
"name": "preRedeemHook",
|
|
1391
|
+
"outputs": [],
|
|
1392
|
+
"stateMutability": "nonpayable",
|
|
1393
|
+
"type": "function"
|
|
1394
|
+
},
|
|
1395
|
+
{
|
|
1396
|
+
"inputs": [
|
|
1397
|
+
{
|
|
1398
|
+
"internalType": "address",
|
|
1399
|
+
"name": "vToken",
|
|
1400
|
+
"type": "address"
|
|
1401
|
+
},
|
|
1402
|
+
{
|
|
1403
|
+
"internalType": "address",
|
|
1404
|
+
"name": "borrower",
|
|
1405
|
+
"type": "address"
|
|
1406
|
+
}
|
|
1407
|
+
],
|
|
1408
|
+
"name": "preRepayHook",
|
|
1409
|
+
"outputs": [],
|
|
1410
|
+
"stateMutability": "nonpayable",
|
|
1411
|
+
"type": "function"
|
|
1412
|
+
},
|
|
1413
|
+
{
|
|
1414
|
+
"inputs": [
|
|
1415
|
+
{
|
|
1416
|
+
"internalType": "address",
|
|
1417
|
+
"name": "vTokenCollateral",
|
|
1418
|
+
"type": "address"
|
|
1419
|
+
},
|
|
1420
|
+
{
|
|
1421
|
+
"internalType": "address",
|
|
1422
|
+
"name": "seizerContract",
|
|
1423
|
+
"type": "address"
|
|
1424
|
+
},
|
|
1425
|
+
{
|
|
1426
|
+
"internalType": "address",
|
|
1427
|
+
"name": "liquidator",
|
|
1428
|
+
"type": "address"
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
"internalType": "address",
|
|
1432
|
+
"name": "borrower",
|
|
1433
|
+
"type": "address"
|
|
1434
|
+
}
|
|
1435
|
+
],
|
|
1436
|
+
"name": "preSeizeHook",
|
|
1437
|
+
"outputs": [],
|
|
1438
|
+
"stateMutability": "nonpayable",
|
|
1439
|
+
"type": "function"
|
|
1440
|
+
},
|
|
1441
|
+
{
|
|
1442
|
+
"inputs": [
|
|
1443
|
+
{
|
|
1444
|
+
"internalType": "address",
|
|
1445
|
+
"name": "vToken",
|
|
1446
|
+
"type": "address"
|
|
1447
|
+
},
|
|
1448
|
+
{
|
|
1449
|
+
"internalType": "address",
|
|
1450
|
+
"name": "src",
|
|
1451
|
+
"type": "address"
|
|
1452
|
+
},
|
|
1453
|
+
{
|
|
1454
|
+
"internalType": "address",
|
|
1455
|
+
"name": "dst",
|
|
1456
|
+
"type": "address"
|
|
1457
|
+
},
|
|
1458
|
+
{
|
|
1459
|
+
"internalType": "uint256",
|
|
1460
|
+
"name": "transferTokens",
|
|
1461
|
+
"type": "uint256"
|
|
1462
|
+
}
|
|
1463
|
+
],
|
|
1464
|
+
"name": "preTransferHook",
|
|
1465
|
+
"outputs": [],
|
|
1466
|
+
"stateMutability": "nonpayable",
|
|
1467
|
+
"type": "function"
|
|
1468
|
+
},
|
|
1469
|
+
{
|
|
1470
|
+
"inputs": [],
|
|
1471
|
+
"name": "renounceOwnership",
|
|
1472
|
+
"outputs": [],
|
|
1473
|
+
"stateMutability": "nonpayable",
|
|
1474
|
+
"type": "function"
|
|
1475
|
+
},
|
|
1476
|
+
{
|
|
1477
|
+
"inputs": [
|
|
1478
|
+
{
|
|
1479
|
+
"internalType": "address",
|
|
1480
|
+
"name": "accessControlManager_",
|
|
1481
|
+
"type": "address"
|
|
1482
|
+
}
|
|
1483
|
+
],
|
|
1484
|
+
"name": "setAccessControlManager",
|
|
1485
|
+
"outputs": [],
|
|
1486
|
+
"stateMutability": "nonpayable",
|
|
1487
|
+
"type": "function"
|
|
1488
|
+
},
|
|
1489
|
+
{
|
|
1490
|
+
"inputs": [
|
|
1491
|
+
{
|
|
1492
|
+
"internalType": "contract VToken[]",
|
|
1493
|
+
"name": "marketsList",
|
|
1494
|
+
"type": "address[]"
|
|
1495
|
+
},
|
|
1496
|
+
{
|
|
1497
|
+
"internalType": "enum ComptrollerStorage.Action[]",
|
|
1498
|
+
"name": "actionsList",
|
|
1499
|
+
"type": "uint8[]"
|
|
1500
|
+
},
|
|
1501
|
+
{
|
|
1502
|
+
"internalType": "bool",
|
|
1503
|
+
"name": "paused",
|
|
1504
|
+
"type": "bool"
|
|
1505
|
+
}
|
|
1506
|
+
],
|
|
1507
|
+
"name": "setActionsPaused",
|
|
1508
|
+
"outputs": [],
|
|
1509
|
+
"stateMutability": "nonpayable",
|
|
1510
|
+
"type": "function"
|
|
1511
|
+
},
|
|
1512
|
+
{
|
|
1513
|
+
"inputs": [
|
|
1514
|
+
{
|
|
1515
|
+
"internalType": "uint256",
|
|
1516
|
+
"name": "number",
|
|
1517
|
+
"type": "uint256"
|
|
1518
|
+
}
|
|
1519
|
+
],
|
|
1520
|
+
"name": "setBlockNumber",
|
|
1521
|
+
"outputs": [],
|
|
1522
|
+
"stateMutability": "nonpayable",
|
|
1523
|
+
"type": "function"
|
|
1524
|
+
},
|
|
1525
|
+
{
|
|
1526
|
+
"inputs": [
|
|
1527
|
+
{
|
|
1528
|
+
"internalType": "uint256",
|
|
1529
|
+
"name": "newCloseFactorMantissa",
|
|
1530
|
+
"type": "uint256"
|
|
1531
|
+
}
|
|
1532
|
+
],
|
|
1533
|
+
"name": "setCloseFactor",
|
|
1534
|
+
"outputs": [],
|
|
1535
|
+
"stateMutability": "nonpayable",
|
|
1536
|
+
"type": "function"
|
|
1537
|
+
},
|
|
1538
|
+
{
|
|
1539
|
+
"inputs": [
|
|
1540
|
+
{
|
|
1541
|
+
"internalType": "contract VToken",
|
|
1542
|
+
"name": "vToken",
|
|
1543
|
+
"type": "address"
|
|
1544
|
+
},
|
|
1545
|
+
{
|
|
1546
|
+
"internalType": "uint256",
|
|
1547
|
+
"name": "newCollateralFactorMantissa",
|
|
1548
|
+
"type": "uint256"
|
|
1549
|
+
},
|
|
1550
|
+
{
|
|
1551
|
+
"internalType": "uint256",
|
|
1552
|
+
"name": "newLiquidationThresholdMantissa",
|
|
1553
|
+
"type": "uint256"
|
|
1554
|
+
}
|
|
1555
|
+
],
|
|
1556
|
+
"name": "setCollateralFactor",
|
|
1557
|
+
"outputs": [],
|
|
1558
|
+
"stateMutability": "nonpayable",
|
|
1559
|
+
"type": "function"
|
|
1560
|
+
},
|
|
1561
|
+
{
|
|
1562
|
+
"inputs": [
|
|
1563
|
+
{
|
|
1564
|
+
"internalType": "uint256",
|
|
1565
|
+
"name": "newLiquidationIncentiveMantissa",
|
|
1566
|
+
"type": "uint256"
|
|
1567
|
+
}
|
|
1568
|
+
],
|
|
1569
|
+
"name": "setLiquidationIncentive",
|
|
1570
|
+
"outputs": [],
|
|
1571
|
+
"stateMutability": "nonpayable",
|
|
1572
|
+
"type": "function"
|
|
1573
|
+
},
|
|
1574
|
+
{
|
|
1575
|
+
"inputs": [
|
|
1576
|
+
{
|
|
1577
|
+
"internalType": "contract VToken[]",
|
|
1578
|
+
"name": "vTokens",
|
|
1579
|
+
"type": "address[]"
|
|
1580
|
+
},
|
|
1581
|
+
{
|
|
1582
|
+
"internalType": "uint256[]",
|
|
1583
|
+
"name": "newBorrowCaps",
|
|
1584
|
+
"type": "uint256[]"
|
|
1585
|
+
}
|
|
1586
|
+
],
|
|
1587
|
+
"name": "setMarketBorrowCaps",
|
|
1588
|
+
"outputs": [],
|
|
1589
|
+
"stateMutability": "nonpayable",
|
|
1590
|
+
"type": "function"
|
|
1591
|
+
},
|
|
1592
|
+
{
|
|
1593
|
+
"inputs": [
|
|
1594
|
+
{
|
|
1595
|
+
"internalType": "contract VToken[]",
|
|
1596
|
+
"name": "vTokens",
|
|
1597
|
+
"type": "address[]"
|
|
1598
|
+
},
|
|
1599
|
+
{
|
|
1600
|
+
"internalType": "uint256[]",
|
|
1601
|
+
"name": "newSupplyCaps",
|
|
1602
|
+
"type": "uint256[]"
|
|
1603
|
+
}
|
|
1604
|
+
],
|
|
1605
|
+
"name": "setMarketSupplyCaps",
|
|
1606
|
+
"outputs": [],
|
|
1607
|
+
"stateMutability": "nonpayable",
|
|
1608
|
+
"type": "function"
|
|
1609
|
+
},
|
|
1610
|
+
{
|
|
1611
|
+
"inputs": [
|
|
1612
|
+
{
|
|
1613
|
+
"internalType": "uint256",
|
|
1614
|
+
"name": "limit",
|
|
1615
|
+
"type": "uint256"
|
|
1616
|
+
}
|
|
1617
|
+
],
|
|
1618
|
+
"name": "setMaxLoopsLimit",
|
|
1619
|
+
"outputs": [],
|
|
1620
|
+
"stateMutability": "nonpayable",
|
|
1621
|
+
"type": "function"
|
|
1622
|
+
},
|
|
1623
|
+
{
|
|
1624
|
+
"inputs": [
|
|
1625
|
+
{
|
|
1626
|
+
"internalType": "uint256",
|
|
1627
|
+
"name": "newMinLiquidatableCollateral",
|
|
1628
|
+
"type": "uint256"
|
|
1629
|
+
}
|
|
1630
|
+
],
|
|
1631
|
+
"name": "setMinLiquidatableCollateral",
|
|
1632
|
+
"outputs": [],
|
|
1633
|
+
"stateMutability": "nonpayable",
|
|
1634
|
+
"type": "function"
|
|
1635
|
+
},
|
|
1636
|
+
{
|
|
1637
|
+
"inputs": [
|
|
1638
|
+
{
|
|
1639
|
+
"internalType": "contract ResilientOracleInterface",
|
|
1640
|
+
"name": "newOracle",
|
|
1641
|
+
"type": "address"
|
|
1642
|
+
}
|
|
1643
|
+
],
|
|
1644
|
+
"name": "setPriceOracle",
|
|
1645
|
+
"outputs": [],
|
|
1646
|
+
"stateMutability": "nonpayable",
|
|
1647
|
+
"type": "function"
|
|
1648
|
+
},
|
|
1649
|
+
{
|
|
1650
|
+
"inputs": [
|
|
1651
|
+
{
|
|
1652
|
+
"internalType": "address",
|
|
1653
|
+
"name": "",
|
|
1654
|
+
"type": "address"
|
|
1655
|
+
}
|
|
1656
|
+
],
|
|
1657
|
+
"name": "supplyCaps",
|
|
1658
|
+
"outputs": [
|
|
1659
|
+
{
|
|
1660
|
+
"internalType": "uint256",
|
|
1661
|
+
"name": "",
|
|
1662
|
+
"type": "uint256"
|
|
1663
|
+
}
|
|
1664
|
+
],
|
|
1665
|
+
"stateMutability": "view",
|
|
1666
|
+
"type": "function"
|
|
1667
|
+
},
|
|
1668
|
+
{
|
|
1669
|
+
"inputs": [
|
|
1670
|
+
{
|
|
1671
|
+
"internalType": "contract VToken",
|
|
1672
|
+
"name": "vToken",
|
|
1673
|
+
"type": "address"
|
|
1674
|
+
}
|
|
1675
|
+
],
|
|
1676
|
+
"name": "supportMarket",
|
|
1677
|
+
"outputs": [],
|
|
1678
|
+
"stateMutability": "nonpayable",
|
|
1679
|
+
"type": "function"
|
|
1680
|
+
},
|
|
1681
|
+
{
|
|
1682
|
+
"inputs": [
|
|
1683
|
+
{
|
|
1684
|
+
"internalType": "address",
|
|
1685
|
+
"name": "newOwner",
|
|
1686
|
+
"type": "address"
|
|
1687
|
+
}
|
|
1688
|
+
],
|
|
1689
|
+
"name": "transferOwnership",
|
|
1690
|
+
"outputs": [],
|
|
1691
|
+
"stateMutability": "nonpayable",
|
|
1692
|
+
"type": "function"
|
|
1693
|
+
},
|
|
1694
|
+
{
|
|
1695
|
+
"inputs": [
|
|
1696
|
+
{
|
|
1697
|
+
"internalType": "address",
|
|
1698
|
+
"name": "account",
|
|
1699
|
+
"type": "address"
|
|
1700
|
+
}
|
|
1701
|
+
],
|
|
1702
|
+
"name": "updatePrices",
|
|
1703
|
+
"outputs": [],
|
|
1704
|
+
"stateMutability": "nonpayable",
|
|
1705
|
+
"type": "function"
|
|
1706
|
+
}
|
|
1707
|
+
],
|
|
1708
|
+
"bytecode": "0x60a06040523480156200001157600080fd5b5060405162005aed38038062005aed83398101604081905262000034916200014e565b8062000040816200005f565b6001600160a01b038116608052620000576200008a565b5050620001d7565b6001600160a01b03811662000087576040516342bcdf7f60e11b815260040160405180910390fd5b50565b600054610100900460ff1615620000be5760405162461bcd60e51b8152600401620000b5906200017b565b60405180910390fd5b60005460ff9081161462000115576000805460ff191660ff9081179091556040517f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498916200010c91620001c7565b60405180910390a15b565b60006001600160a01b0382165b92915050565b620001358162000117565b81146200008757600080fd5b805162000124816200012a565b600060208284031215620001655762000165600080fd5b600062000173848462000141565b949350505050565b602080825281016200012481602781527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469602082015266616c697a696e6760c81b604082015260600190565b60ff821681526020810162000124565b6080516158f3620001fa600039600081816106d70152612a3001526158f36000f3fe608060405234801561001057600080fd5b506004361061038d5760003560e01c80638e6470ea116101de578063c29982381161010f578063df71403b116100ad578063e89d51ad1161007c578063e89d51ad14610825578063eade3eed14610838578063ede4edd01461084b578063f2fde38b1461085e57600080fd5b8063df71403b146107e5578063e30c3978146107f8578063e85a296014610809578063e87554461461081c57600080fd5b8063d136af44116100e9578063d136af44146107a3578063da35a26f146107b6578063db5c65de146107c9578063dce15449146107d257600080fd5b8063c29982381461074f578063c488847b1461076f578063cab4f84c1461079057600080fd5b8063abfceffc1161017c578063b2068e8411610156578063b2068e8414610701578063b4a0bdf314610721578063be26317e14610732578063c0891ba91461073c57600080fd5b8063abfceffc146106b2578063afcff50f146106d2578063b0772d0b146106f957600080fd5b8063929fe9a1116101b8578063929fe9a11461066557806394543c1514610678578063a84310811461068b578063a8c3c8501461069e57600080fd5b80638e6470ea146105fd5780638e8f294b14610610578063921363951461065257600080fd5b8063528a174c116102c35780635ec88c791161026157806379ba50971161023057806379ba5097146105b55780637dc0d1d0146105bd57806380d45a2d146105d05780638da5cb5b146105e357600080fd5b80635ec88c791461057257806361252fd1146105855780636d0be88d1461059a578063715018a6146105ad57600080fd5b806356aaee2d1161029d57806356aaee2d1461052f57806357e871e7146105425780635c21b6c51461054c5780635cc4fdeb1461055f57600080fd5b8063528a174c146104e957806352d84d1e146104fc578063530e784f1461051c57600080fd5b806324aaa220116103305780634a5844321161030a5780634a5844321461048b5780634ada90af146104ab5780634e79238f146104b4578063520b6c74146104d657600080fd5b806324aaa220146104395780632bce219c1461044c5780633d98a1e51461045f57600080fd5b806312348e961161036c57806312348e96146103ed578063186db48f146104005780631bc41f2814610413578063246acab11461042657600080fd5b80627e3dd21461039257806302c3bcbb146103ab5780630e32cb86146103d8575b600080fd5b60015b6040516103a29190614537565b60405180910390f35b6103cb6103b9366004614575565b60d16020526000908152604090205481565b6040516103a2919061459c565b6103eb6103e6366004614575565b610871565b005b6103eb6103fb3660046145bb565b610885565b6103eb61040e36600461462e565b610961565b6103eb6104213660046146a7565b610ab8565b6103cb6104343660046145bb565b610e78565b6103eb61044736600461471e565b610e9c565b6103eb61045a3660046147f8565b610f69565b61039561046d366004614873565b6001600160a01b0316600090815260cd602052604090205460ff1690565b6103cb610499366004614575565b60cf6020526000908152604090205481565b6103cb60cb5481565b6104c76104c2366004614894565b6112d0565b6040516103a2939291906148ec565b6103eb6104e43660046145bb565b611301565b6104c76104f7366004614575565b61135b565b61050f61050a3660046145bb565b611386565b6040516103a29190614928565b6103eb61052a366004614873565b6113b0565b6103eb61053d366004614873565b611414565b6103cb6101395481565b6103eb61055a366004614575565b6116e8565b6103eb61056d366004614936565b611805565b6104c7610580366004614575565b611a17565b61058d611a29565b6040516103a291906149e3565b6103eb6105a83660046149f4565b611a8b565b6103eb611c04565b6103eb611c18565b60c95461050f906001600160a01b031681565b6103eb6105de3660046145bb565b611c4d565b6033546001600160a01b03165b6040516103a29190614a44565b6103eb61060b366004614a52565b611c5e565b61064361061e366004614575565b60cd6020526000908152604090208054600182015460029092015460ff909116919083565b6040516103a293929190614a87565b6103eb610660366004614575565b611d77565b610395610673366004614a95565b612130565b610395610686366004614873565b612164565b6103eb6106993660046145bb565b61220c565b6103eb6106ac3660046145bb565b61013955565b6106c56106c0366004614575565b6122ac565b6040516103a29190614b10565b6105f07f000000000000000000000000000000000000000000000000000000000000000081565b6106c5612322565b61071461070f366004614575565b612382565b6040516103a29190614baa565b6097546001600160a01b031661050f565b6103cb6101075481565b6103eb61074a366004614a52565b6125cd565b61076261075d366004614cc2565b612849565b6040516103a29190614d47565b61078261077d366004614a52565b612900565b6040516103a2929190614d58565b6103eb61079e366004614873565b612a2b565b6103eb6107b136600461462e565b612c23565b6103eb6107c4366004614d73565b612d86565b6103cb60d05481565b61050f6107e0366004614da6565b612e60565b6103eb6107f3366004614a52565b612e98565b6065546001600160a01b03166105f0565b610395610817366004614df1565b61322e565b6103cb60ca5481565b6103eb610833366004614e24565b613285565b6103eb610846366004614e8f565b61345e565b6103cb610859366004614575565b613688565b6103eb61086c366004614575565b6138fa565b61087961396b565b61088281613995565b50565b6108c36040518060400160405280601781526020017f736574436c6f7365466163746f722875696e7432353629000000000000000000815250613a0e565b80670c7d713b49da000010156108f45760405162461bcd60e51b81526004016108eb90614eff565b60405180910390fd5b8066b1a2bc2ec50000111561091b5760405162461bcd60e51b81526004016108eb90614f5a565b60ca8054908290556040517f3b9670cf975d26958e754b57098eaa2ac914d8d2a31b83257997b9f346110fd9906109559083908590614d58565b60405180910390a15050565b6109826040518060600160405280602881526020016157f360289139613a0e565b8281811580159061099257508082145b6109ae5760405162461bcd60e51b81526004016108eb90614f91565b6109b782613aac565b60005b82811015610aaf578484828181106109d4576109d4614fa1565b9050602002013560cf60008989858181106109f1576109f1614fa1565b9050602002016020810190610a069190614873565b6001600160a01b03168152602081019190915260400160002055868682818110610a3257610a32614fa1565b9050602002016020810190610a479190614873565b6001600160a01b03167f6f1951b2aad10f3fc81b86d91105b413a5b3f847a34bbc5ce1904201b14438f6868684818110610a8357610a83614fa1565b90506020020135604051610a97919061459c565b60405180910390a2610aa881614fcd565b90506109ba565b50505050505050565b610ac3846004613ad7565b6001600160a01b038416600090815260cd60205260409020805460ff16610aff5784604051635a9a1eb960e11b81526004016108eb9190614a44565b306001600160a01b03851603610ba757306001600160a01b0316856001600160a01b0316635fe3b5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7b9190614ff2565b6001600160a01b031614610ba257604051630c73eb0560e01b815260040160405180910390fd5b610cd6565b6001600160a01b038416600090815260cd602052604090205460ff16610be25783604051635a9a1eb960e11b81526004016108eb9190614a44565b836001600160a01b0316635fe3b5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c449190614ff2565b6001600160a01b0316856001600160a01b0316635fe3b5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610caf9190614ff2565b6001600160a01b031614610cd657604051630c73eb0560e01b815260040160405180910390fd5b6001600160a01b038216600090815260038201602052604090205460ff16610d15578482604051630cdfb2db60e31b81526004016108eb929190615013565b60d35460005b81811015610aaf57600060d38281548110610d3857610d38614fa1565b60009182526020909120015460405163051d1d4f60e11b81526001600160a01b0390911691508190630a3a3a9e90610d74908b90600401614a44565b600060405180830381600087803b158015610d8e57600080fd5b505af1158015610da2573d6000803e3d6000fd5b505060405163db7954fd60e01b81526001600160a01b038416925063db7954fd9150610dd4908b908990600401615013565b600060405180830381600087803b158015610dee57600080fd5b505af1158015610e02573d6000803e3d6000fd5b505060405163db7954fd60e01b81526001600160a01b038416925063db7954fd9150610e34908b908a90600401615013565b600060405180830381600087803b158015610e4e57600080fd5b505af1158015610e62573d6000803e3d6000fd5b505050505080610e7190614fcd565b9050610d1b565b6000816101396000828254610e8d919061502e565b90915550506101395492915050565b610ebd6040518060600160405280602a815260200161586c602a9139613a0e565b8382610ed1610ecc8284615046565b613aac565b60005b82811015610f5f5760005b82811015610f4e57610f3e898984818110610efc57610efc614fa1565b9050602002016020810190610f119190614873565b888884818110610f2357610f23614fa1565b9050602002016020810190610f389190615065565b87613b03565b610f4781614fcd565b9050610edf565b50610f5881614fcd565b9050610ed4565b5050505050505050565b6000610f7784613bd0613c04565b905060d05481600001511115610fa75760d0548151604051631a451c0f60e21b81526108eb929190600401614d58565b6000610fc7604051806020016040528060cb548152508360400151613c53565b82519091508110610fef578151604051632c1f8ef160e21b81526108eb918391600401614d58565b8160a001516000036110145760405163095bf33360e01b815260040160405180910390fd5b82611023610ecc60028361509c565b60005b818110156111ec5760cd600087878481811061104457611044614fa1565b905060600201602001602081019061105c9190614873565b6001600160a01b0316815260208101919091526040016000205460ff166110c15785858281811061108f5761108f614fa1565b90506060020160200160208101906110a79190614873565b604051635a9a1eb960e11b81526004016108eb9190614a44565b60cd60008787848181106110d7576110d7614fa1565b6110ed9260206060909202019081019150614873565b6001600160a01b0316815260208101919091526040016000205460ff166111365785858281811061112057611120614fa1565b6110a79260206060909202019081019150614873565b3686868381811061114957611149614fa1565b90506060020190508060200160208101906111649190614873565b6001600160a01b0316638bbdb6db338a60408501356111866020870187614873565b60016040518663ffffffff1660e01b81526004016111a89594939291906150b0565b600060405180830381600087803b1580156111c257600080fd5b505af11580156111d6573d6000803e3d6000fd5b5050505050806111e590614fcd565b9050611026565b506001600160a01b038616600090815260cc602090815260408083208054825181850281018501909352808352919290919083018282801561125757602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611239575b505083519394506000925050505b818110156112c557600061129284838151811061128457611284614fa1565b60200260200101518b613c73565b5091505080156112b45760405162461bcd60e51b81526004016108eb90615141565b506112be81614fcd565b9050611265565b505050505050505050565b6000806000806112e588888888613d1a613d4e565b608081015160a09091015160009a919950975095505050505050565b61132260405180606001604052806025815260200161581b60259139613a0e565b60d08054908290556040517eb4f4f153ad7f1397564a8830fef092481e8cf6a2cd3ff04f96d10ba51200a5906109559083908590614d58565b60008060008061136d85613d1a613c04565b608081015160a090910151600097919650945092505050565b60ce818154811061139657600080fd5b6000918252602090912001546001600160a01b0316905081565b6113b861396b565b6113c181613f83565b60c980546001600160a01b038381166001600160a01b03198316179092556040519116907fd52b2b9b7e9ee655fcb95d2e5b9e0c9f69e7ef2b8e9d2d0ea78402d576d22e22906109559083908590615151565b61141c61396b565b6001600160a01b038116600090815260d4602052604090205460ff16156114555760405162461bcd60e51b81526004016108eb90615191565b60d35460005b8181101561158f57600060d3828154811061147857611478614fa1565b600091825260209182902001546040805163f7c618c160e01b815290516001600160a01b039092169263f7c618c1926004808401938290030181865afa1580156114c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ea9190614ff2565b9050836001600160a01b031663f7c618c16040518163ffffffff1660e01b8152600401602060405180830381865afa15801561152a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154e9190614ff2565b6001600160a01b0316816001600160a01b03160361157e5760405162461bcd60e51b81526004016108eb906151e9565b5061158881614fcd565b905061145b565b5060d3546115a1610ecc82600161502e565b60d3805460018082019092557f915c3eb987b20e1af620c1403197bf687fb7f18513b3a73fde6e78c7072c41a60180546001600160a01b0319166001600160a01b038616908117909155600090815260d460205260408120805460ff191690921790915560ce54905b818110156116ad57846001600160a01b0316632a869a4d60ce838154811061163457611634614fa1565b6000918252602090912001546040516001600160e01b031960e084901b16815261166a916001600160a01b031690600401614a44565b600060405180830381600087803b15801561168457600080fd5b505af1158015611698573d6000803e3d6000fd5b50505050806116a690614fcd565b905061160a565b506040516001600160a01b038516907f058fa9577dc29aece41d41c2d3bff2ed4e8d5085762198e8f7faab35039555da90600090a250505050565b6001600160a01b038116600090815260cc602090815260408083208054825181850281018501909352808352919290919083018282801561175257602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611734575b5050835160c954949550936001600160a01b0316925060009150505b828110156117fe57816001600160a01b03166396e85ced85838151811061179757611797614fa1565b60200260200101516040518263ffffffff1660e01b81526004016117bb9190614a44565b600060405180830381600087803b1580156117d557600080fd5b505af11580156117e9573d6000803e3d6000fd5b50505050806117f790614fcd565b905061176e565b5050505050565b6118266040518060600160405280602c8152602001615840602c9139613a0e565b6001600160a01b038316600090815260cd60205260409020805460ff166118625783604051635a9a1eb960e11b81526004016108eb9190614a44565b670c7d713b49da000083111561188b576040516302f22cad60e61b815260040160405180910390fd5b670de0b6b3a76400008211156118b35760405162f9474b60e61b815260040160405180910390fd5b828210156118d35760405162f9474b60e61b815260040160405180910390fd5b8215801590611950575060c95460405163fc57d4df60e01b81526001600160a01b039091169063fc57d4df9061190d908790600401614a44565b602060405180830381865afa15801561192a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061194e9190615204565b155b1561196f578360405162e52a7d60e41b81526004016108eb9190614a44565b60018101548381146119bf57600182018490556040517f70483e6592cd5182d45ac970e05bc62cdcc90e9d8ef2c2dbe686cf383bcd7fc5906119b690879084908890615225565b60405180910390a15b6002820154838114611a0f57600283018490556040517f9e92c7d5fef69846094f3ddcadcb9402c6ba469c461368714f1cabd8ef48b59190611a0690889084908890615225565b60405180910390a15b505050505050565b60008060008061136d85613bd0613c04565b606060d3805480602002602001604051908101604052809291908181526020018280548015611a8157602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611a63575b5050505050905090565b611a96846006613ad7565b611aa1848483613faa565b60d35460005b81811015611a0f57600060d38281548110611ac457611ac4614fa1565b60009182526020909120015460405163051d1d4f60e11b81526001600160a01b0390911691508190630a3a3a9e90611b00908a90600401614a44565b600060405180830381600087803b158015611b1a57600080fd5b505af1158015611b2e573d6000803e3d6000fd5b505060405163db7954fd60e01b81526001600160a01b038416925063db7954fd9150611b60908a908a90600401615013565b600060405180830381600087803b158015611b7a57600080fd5b505af1158015611b8e573d6000803e3d6000fd5b505060405163db7954fd60e01b81526001600160a01b038416925063db7954fd9150611bc0908a908990600401615013565b600060405180830381600087803b158015611bda57600080fd5b505af1158015611bee573d6000803e3d6000fd5b505050505080611bfd90614fcd565b9050611aa7565b611c0c61396b565b611c16600061404f565b565b60655433906001600160a01b03168114611c445760405162461bcd60e51b81526004016108eb90615279565b6108828161404f565b611c5561396b565b61088281614068565b611c69836001613ad7565b611c74838383613faa565b60d35460005b818110156117fe57600060d38281548110611c9757611c97614fa1565b60009182526020909120015460405163051d1d4f60e11b81526001600160a01b0390911691508190630a3a3a9e90611cd3908990600401614a44565b600060405180830381600087803b158015611ced57600080fd5b505af1158015611d01573d6000803e3d6000fd5b505060405163db7954fd60e01b81526001600160a01b038416925063db7954fd9150611d339089908990600401615013565b600060405180830381600087803b158015611d4d57600080fd5b505af1158015611d61573d6000803e3d6000fd5b505050505080611d7090614fcd565b9050611c7a565b6001600160a01b038116600090815260cc6020908152604080832080548251818502810185019093528083529192909190830182828015611de157602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611dc3575b5050835160c954949550933393506001600160a01b03169150600090505b83811015611f0d57848181518110611e1957611e19614fa1565b60200260200101516001600160a01b031663a6afed956040518163ffffffff1660e01b81526004016020604051808303816000875af1158015611e60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e849190615204565b50816001600160a01b03166396e85ced868381518110611ea657611ea6614fa1565b60200260200101516040518263ffffffff1660e01b8152600401611eca9190614a44565b600060405180830381600087803b158015611ee457600080fd5b505af1158015611ef8573d6000803e3d6000fd5b5050505080611f0690614fcd565b9050611dff565b50506000611f1d85613bd0613c04565b905060d05481600001511115611f4d5760d0548151604051631a451c0f60e21b81526108eb929190600401614d58565b8060a00151600003611f725760405163095bf33360e01b815260040160405180910390fd5b60408051602080820183528351825282518082018452848401518152835191820190935260cb5481529091600091611faa91906140c5565b90506000611fb8838361410d565b9050611fdc6040518060200160405280670de0b6b3a7640000815250825190511090565b156120005781518351604051631a451c0f60e21b81526108eb929190600401614d58565b60005b868110156112c557600088828151811061201f5761201f614fa1565b60200260200101519050600080612036838d613c73565b509150915060006120478683613c53565b905082156120b257836001600160a01b031663b2a02ff18b8f866040518463ffffffff1660e01b815260040161207f93929190615289565b600060405180830381600087803b15801561209957600080fd5b505af11580156120ad573d6000803e3d6000fd5b505050505b811561211b57836001600160a01b03166344fe6ffe8b8f846040518463ffffffff1660e01b81526004016120e893929190615289565b600060405180830381600087803b15801561210257600080fd5b505af1158015612116573d6000803e3d6000fd5b505050505b505050508061212990614fcd565b9050612003565b6001600160a01b03808216600090815260cd60209081526040808320938616835260039093019052205460ff165b92915050565b6001600160a01b038116600090815260cd6020526040812060010154158015612193575061219382600261322e565b801561215e5750670de0b6b3a7640000826001600160a01b031663173b99046040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122059190615204565b1492915050565b670de0b6b3a76400008110156122345760405162461bcd60e51b81526004016108eb906152f2565b6122726040518060400160405280602081526020017f7365744c69717569646174696f6e496e63656e746976652875696e7432353629815250613a0e565b60cb8054908290556040517faeba5a6c40a8ac138134bff1aaa65debf25971188a58804bad717f82f0ec1316906109559083908590614d58565b6001600160a01b038116600090815260cc6020908152604080832080548251818502810185019093528083526060949383018282801561231557602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116122f7575b5093979650505050505050565b606060ce805480602002602001604051908101604052809291908181526020018280548015611a81576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311611a63575050505050905090565b60d3546060908067ffffffffffffffff8111156123a1576123a1614bbb565b6040519080825280602002602001820160405280156123ff57816020015b6123ec604051806060016040528060006001600160a01b0316815260200160008152602001600081525090565b8152602001906001900390816123bf5790505b50915060005b818110156125c657600060d3828154811061242257612422614fa1565b60009182526020808320909101546040805163f7c618c160e01b815290516001600160a01b039092169450849263f7c618c1926004808401938290030181865afa158015612474573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124989190614ff2565b90506040518060600160405280826001600160a01b03168152602001836001600160a01b03166374c4c1cc896040518263ffffffff1660e01b81526004016124e09190614a44565b602060405180830381865afa1580156124fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125219190615204565b8152602001836001600160a01b0316637c05a7c5896040518263ffffffff1660e01b81526004016125529190614a44565b602060405180830381865afa15801561256f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125939190615204565b8152508584815181106125a8576125a8614fa1565b60200260200101819052505050806125bf90614fcd565b9050612405565b5050919050565b6125d8836000613ad7565b6001600160a01b038316600090815260cd602052604090205460ff166126135782604051635a9a1eb960e11b81526004016108eb9190614a44565b6001600160a01b038316600090815260d160205260409020546000198114612746576000846001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612675573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126999190615204565b905060006040518060200160405280876001600160a01b031663182df0f56040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061270a9190615204565b90529050600061271b828487614147565b90508381111561274257868460405163db33be3d60e01b81526004016108eb929190615302565b5050505b60d35460005b81811015611a0f57600060d3828154811061276957612769614fa1565b60009182526020909120015460405163051d1d4f60e11b81526001600160a01b0390911691508190630a3a3a9e906127a5908a90600401614a44565b600060405180830381600087803b1580156127bf57600080fd5b505af11580156127d3573d6000803e3d6000fd5b505060405163db7954fd60e01b81526001600160a01b038416925063db7954fd9150612805908a908a90600401615013565b600060405180830381600087803b15801561281f57600080fd5b505af1158015612833573d6000803e3d6000fd5b50505050508061284290614fcd565b905061274c565b805160609060008167ffffffffffffffff81111561286957612869614bbb565b604051908082528060200260200182016040528015612892578160200160208202803683370190505b50905060005b828110156128f85760008582815181106128b4576128b4614fa1565b602002602001015190506128c88133614171565b60008383815181106128dc576128dc614fa1565b6020908102919091010152506128f181614fcd565b9050612898565b509392505050565b600080600061290e86614264565b9050600061291b86614264565b90506000866001600160a01b031663182df0f56040518163ffffffff1660e01b8152600401602060405180830381865afa15801561295d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129819190615204565b9050600061299b6040518060200160405280600081525090565b60408051602080820183526000808352835180830185529081528351808301855260cb548152845192830190945288825291926129d7916140c5565b92506129ff6040518060200160405280888152506040518060200160405280888152506140c5565b9150612a0b838361410d565b9050612a17818b613c53565b60009d909c509a5050505050505050505050565b612a547f00000000000000000000000000000000000000000000000000000000000000006142fe565b6001600160a01b038116600090815260cd602052604090205460ff1615612a90578060405163d005ce4760e01b81526004016108eb9190614a44565b806001600160a01b0316633d9ea3a16040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ace573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612af2919061531b565b612b0e5760405162461bcd60e51b81526004016108eb90615370565b6001600160a01b038116600090815260cd60205260408120805460ff19166001908117825581018290556002810191909155612b498261432b565b60d35460005b81811015612be65760d38181548110612b6a57612b6a614fa1565b600091825260209091200154604051632a869a4d60e01b81526001600160a01b0390911690632a869a4d90612ba3908790600401614a44565b600060405180830381600087803b158015612bbd57600080fd5b505af1158015612bd1573d6000803e3d6000fd5b5050505080612bdf90614fcd565b9050612b4f565b507faf16ad15f9e29d5140e8e81a30a92a755aa8edff3d301053c84392b70c0d09a383604051612c169190614928565b60405180910390a1505050565b612c4460405180606001604052806028815260200161589660289139613a0e565b826000819003612c665760405162461bcd60e51b81526004016108eb906153b4565b808214612c855760405162461bcd60e51b81526004016108eb906153b4565b612c8e81613aac565b60005b81811015611a0f57838382818110612cab57612cab614fa1565b9050602002013560d16000888885818110612cc857612cc8614fa1565b9050602002016020810190612cdd9190614873565b6001600160a01b03168152602081019190915260400160002055858582818110612d0957612d09614fa1565b9050602002016020810190612d1e9190614873565b6001600160a01b03167f9e0ad9cee10bdf36b7fbd38910c0bdff0f275ace679b45b922381c2723d676f8858584818110612d5a57612d5a614fa1565b90506020020135604051612d6e919061459c565b60405180910390a2612d7f81614fcd565b9050612c91565b600054610100900460ff1615808015612da65750600054600160ff909116105b80612dc05750303b158015612dc0575060005460ff166001145b612ddc5760405162461bcd60e51b81526004016108eb9061540f565b6000805460ff191660011790558015612dff576000805461ff0019166101001790555b612e076143f1565b612e1082614420565b612e1983614068565b8015612e5b576000805461ff00191690556040517f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249890612c1690600190615433565b505050565b60cc6020528160005260406000208181548110612e7c57600080fd5b6000918252602090912001546001600160a01b03169150829050565b612ea3836002613ad7565b6001600160a01b038316600090815260cd602052604090205460ff16612ede5782604051635a9a1eb960e11b81526004016108eb9190614a44565b6001600160a01b03808416600090815260cd60209081526040808320938616835260039093019052205460ff16612f2257612f18836142fe565b612f223383614171565b612f2b826116e8565b60c95460405163fc57d4df60e01b81526001600160a01b039091169063fc57d4df90612f5b908690600401614a44565b602060405180830381865afa158015612f78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f9c9190615204565b600003612fbd578260405162e52a7d60e41b81526004016108eb9190614a44565b6001600160a01b038316600090815260cf6020526040902054600019811461307b576000846001600160a01b03166347bd37186040518163ffffffff1660e01b8152600401602060405180830381865afa15801561301f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130439190615204565b90506000613051848361502e565b905082811115613078578583604051632e649eed60e01b81526004016108eb929190615302565b50505b600061308d8486600086613d1a613d4e565b60a0810151909150156130b35760405163bb55fd2760e01b815260040160405180910390fd5b60006040518060200160405280876001600160a01b031663aa5af0fd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156130fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131229190615204565b905260d35490915060005b81811015610f5f57600060d3828154811061314a5761314a614fa1565b600091825260209091200154604051632352607960e01b81526001600160a01b0390911691508190632352607990613188908c908890600401615452565b600060405180830381600087803b1580156131a257600080fd5b505af11580156131b6573d6000803e3d6000fd5b5050604051636a95ddef60e01b81526001600160a01b0384169250636a95ddef91506131ea908c908c90899060040161546d565b600060405180830381600087803b15801561320457600080fd5b505af1158015613218573d6000803e3d6000fd5b50505050508061322790614fcd565b905061312d565b6001600160a01b038216600090815260d2602052604081208183600881111561325957613259615495565b600881111561326a5761326a615495565b815260208101919091526040016000205460ff169392505050565b613290856005613ad7565b613299836116e8565b6001600160a01b038516600090815260cd602052604090205460ff166132d45784604051635a9a1eb960e11b81526004016108eb9190614a44565b6001600160a01b038416600090815260cd602052604090205460ff1661330f5783604051635a9a1eb960e11b81526004016108eb9190614a44565b6040516395dd919360e01b81526000906001600160a01b038716906395dd91939061333e908790600401614a44565b602060405180830381865afa15801561335b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061337f9190615204565b90508180613391575061339186612164565b156133bd57808311156133b75760405163e46c155960e01b815260040160405180910390fd5b506117fe565b60006133cb85613bd0613c04565b905060d0548160000151116133fa5760d0548151604051636e61bb0560e11b81526108eb929190600401614d58565b8060a0015160000361341f5760405163095bf33360e01b815260040160405180910390fd5b600061343b604051806020016040528060ca5481525084613c53565b905080851115610f5f5760405163e46c155960e01b815260040160405180910390fd5b613469826003613ad7565b60c9546040516396e85ced60e01b81526001600160a01b03909116906396e85ced90613499908590600401614a44565b600060405180830381600087803b1580156134b357600080fd5b505af11580156134c7573d6000803e3d6000fd5b505050506001600160a01b038216600090815260cd602052604090205460ff166135065781604051635a9a1eb960e11b81526004016108eb9190614a44565b60d35460005b818110156136825760006040518060200160405280866001600160a01b031663aa5af0fd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561355f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135839190615204565b8152509050600060d3838154811061359d5761359d614fa1565b600091825260209091200154604051632352607960e01b81526001600160a01b03909116915081906323526079906135db9089908690600401615452565b600060405180830381600087803b1580156135f557600080fd5b505af1158015613609573d6000803e3d6000fd5b5050604051636a95ddef60e01b81526001600160a01b0384169250636a95ddef915061363d9089908990879060040161546d565b600060405180830381600087803b15801561365757600080fd5b505af115801561366b573d6000803e3d6000fd5b5050505050508061367b90614fcd565b905061350c565b50505050565b6000613695826008613ad7565b816000806136a38333613c73565b5091509150806000146136c95760405163f8a5d66d60e01b815260040160405180910390fd5b6136d4853384613faa565b6001600160a01b038316600090815260cd60209081526040808320338452600381019092529091205460ff166137105750600095945050505050565b3360009081526003820160209081526040808320805460ff1916905560cc82528083208054825181850281018501909352808352919290919083018282801561378257602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311613764575b5050835193945083925060009150505b828110156137e457876001600160a01b03168482815181106137b6576137b6614fa1565b60200260200101516001600160a01b0316036137d4578091506137e4565b6137dd81614fcd565b9050613792565b508181106137f4576137f46154ab565b33600090815260cc6020526040902080548190613813906001906154c1565b8154811061382357613823614fa1565b9060005260206000200160009054906101000a90046001600160a01b031681838154811061385357613853614fa1565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080805480613891576138916154d8565b600082815260208120820160001990810180546001600160a01b031916905590910190915560405133916001600160a01b038b16917fe699a64c18b07ac5b7301aa273f36a2287239eb9501d81950672794afba29a0d9190a35060009998505050505050505050565b61390261396b565b606580546001600160a01b0383166001600160a01b031990911681179091556139336033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6033546001600160a01b03163314611c165760405162461bcd60e51b81526004016108eb90615520565b6001600160a01b0381166139bb5760405162461bcd60e51b81526004016108eb90615572565b609780546001600160a01b038381166001600160a01b03198316179092556040519116907f66fd58e82f7b31a2a5c30e0888f3093efe4e111b00cd2b0c31fe014601293aa0906109559083908590615013565b6097546040516318c5e8ab60e01b81526000916001600160a01b0316906318c5e8ab90613a4190339086906004016155e0565b602060405180830381865afa158015613a5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a82919061531b565b905080613aa857333083604051634a3fa29360e01b81526004016108eb93929190615600565b5050565b6101075481111561088257610107548160405163792bfb1b60e11b81526004016108eb929190614d58565b613ae1828261322e565b15613aa85781816040516313b3ccb160e31b81526004016108eb92919061565b565b6001600160a01b038316600090815260cd602052604090205460ff16613b3b5760405162461bcd60e51b81526004016108eb906156bb565b6001600160a01b038316600090815260d2602052604081208291846008811115613b6757613b67615495565b6008811115613b7857613b78615495565b815260200190815260200160002060006101000a81548160ff0219169083151502179055507f35007a986bcd36d2f73fc7f1b73762e12eadb4406dd163194950fd3b5a6a827d838383604051612c16939291906156cb565b6040805160208082018352600091829052825180820184526001600160a01b0394909416825260cd90522060020154815290565b613c3d6040518060c001604052806000815260200160008152602001600081526020016000815260200160008152602001600081525090565b613c4c83600080600086613d4e565b9392505050565b600080613c608484614447565b9050613c6b8161446f565b949350505050565b600080600080856001600160a01b031663c37f68e2866040518263ffffffff1660e01b8152600401613ca59190614a44565b608060405180830381865afa158015613cc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ce691906156f3565b9196509450925090508015613d1257858560405163015e34d960e61b81526004016108eb929190615013565b509250925092565b6040805160208082018352600091829052825180820184526001600160a01b0394909416825260cd90522060010154815290565b613d876040518060c001604052806000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6001600160a01b038616600090815260cc6020908152604080832080548251818502810185019093528083529192909190830182828015613df157602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311613dd3575b505083519394506000925050505b81811015613f25576000838281518110613e1b57613e1b614fa1565b602002602001015190506000806000613e34848e613c73565b92509250925060006040518060200160405280613e5087614264565b81525090506000613e6f604051806020016040528085815250836140c5565b90506000613e89613e83888e63ffffffff16565b836140c5565b9050613e9a81878d60200151614147565b60208c01528a51613eae9083908890614147565b8b5260408b0151613ec29084908790614147565b8b60400181815250508e6001600160a01b0316876001600160a01b031603613f0d57613ef3818f8d60600151614147565b60608c01819052613f079084908f90614147565b60608c01525b5050505050505080613f1e90614fcd565b9050613dff565b50600083606001518460400151613f3c919061502e565b90508084602001511115613f635760208401518190036080850152600060a0850152613f77565b600060808501526020840151810360a08501525b50505095945050505050565b6001600160a01b038116610882576040516342bcdf7f60e11b815260040160405180910390fd5b6001600160a01b038316600090815260cd60205260409020805460ff16613fe65783604051635a9a1eb960e11b81526004016108eb9190614a44565b6001600160a01b038316600090815260038201602052604090205460ff1661400e5750505050565b614017836116e8565b60006140298486856000613d1a613d4e565b60a0810151909150156117fe5760405163bb55fd2760e01b815260040160405180910390fd5b606580546001600160a01b031916905561088281614487565b61010754811161408a5760405162461bcd60e51b81526004016108eb9061578a565b6101078054908290556040517fc2d09fef144f7c8a86f71ea459f8fc17f675768eb1ae369cbd77fb31d467aafa906109559083908590614d58565b6040805160208101909152600081526040518060200160405280670de0b6b3a76400006140fa866000015186600001516144d9565b614104919061509c565b90529392505050565b60408051602081019091526000815260405180602001604052806141046141408660000151670de0b6b3a76400006144d9565b85516144e5565b6000806141548585614447565b90506141686141628261446f565b846144f1565b95945050505050565b61417c826007613ad7565b6001600160a01b038216600090815260cd60205260409020805460ff166141b85782604051635a9a1eb960e11b81526004016108eb9190614a44565b6001600160a01b038216600090815260038201602052604090205460ff16156141e057505050565b6001600160a01b0380831660008181526003840160209081526040808320805460ff1916600190811790915560cc835281842080549182018155845291832090910180549488166001600160a01b031990951685179055519192917f3ab23ab0d51cccc0c3085aec51f99228625aa1a922b3a8ca89a26b0f2027a1a59190a3505050565b60c95460405163fc57d4df60e01b815260009182916001600160a01b039091169063fc57d4df90614299908690600401614a44565b602060405180830381865afa1580156142b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142da9190615204565b90508060000361215e578260405162e52a7d60e41b81526004016108eb9190614a44565b336001600160a01b03821614610882578033604051634e9383fb60e11b81526004016108eb929190615013565b60ce5460005b8181101561439b57826001600160a01b031660ce828154811061435657614356614fa1565b6000918252602090912001546001600160a01b03160361438b578260405163d005ce4760e01b81526004016108eb9190614a44565b61439481614fcd565b9050614331565b505060ce805460018101825560008290527fd36cd1c74ef8d7326d8021b776c18fb5a5724b7f7bc93c2f42e43e10ef27d12a0180546001600160a01b0319166001600160a01b03841617905554613aa881613aac565b600054610100900460ff166144185760405162461bcd60e51b81526004016108eb906157e2565b611c166144fd565b600054610100900460ff166108795760405162461bcd60e51b81526004016108eb906157e2565b60408051602081019091526000815260405180602001604052806141048560000151856144d9565b805160009061215e90670de0b6b3a76400009061509c565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000613c4c8284615046565b6000613c4c828461509c565b6000613c4c828461502e565b600054610100900460ff166145245760405162461bcd60e51b81526004016108eb906157e2565b611c163361404f565b8015155b82525050565b6020810161215e828461452d565b60006001600160a01b03821661215e565b61455f81614545565b811461088257600080fd5b803561215e81614556565b60006020828403121561458a5761458a600080fd5b6000613c6b848461456a565b80614531565b6020810161215e8284614596565b8061455f565b803561215e816145aa565b6000602082840312156145d0576145d0600080fd5b6000613c6b84846145b0565b60008083601f8401126145f1576145f1600080fd5b50813567ffffffffffffffff81111561460c5761460c600080fd5b60208301915083602082028301111561462757614627600080fd5b9250929050565b6000806000806040858703121561464757614647600080fd5b843567ffffffffffffffff81111561466157614661600080fd5b61466d878288016145dc565b9450945050602085013567ffffffffffffffff81111561468f5761468f600080fd5b61469b878288016145dc565b95989497509550505050565b600080600080608085870312156146c0576146c0600080fd5b60006146cc878761456a565b94505060206146dd8782880161456a565b93505060406146ee8782880161456a565b92505060606146ff8782880161456a565b91505092959194509250565b80151561455f565b803561215e8161470b565b60008060008060006060868803121561473957614739600080fd5b853567ffffffffffffffff81111561475357614753600080fd5b61475f888289016145dc565b9550955050602086013567ffffffffffffffff81111561478157614781600080fd5b61478d888289016145dc565b935093505060406147a088828901614713565b9150509295509295909350565b60008083601f8401126147c2576147c2600080fd5b50813567ffffffffffffffff8111156147dd576147dd600080fd5b60208301915083606082028301111561462757614627600080fd5b60008060006040848603121561481057614810600080fd5b600061481c868661456a565b935050602084013567ffffffffffffffff81111561483c5761483c600080fd5b614848868287016147ad565b92509250509250925092565b600061215e82614545565b61455f81614854565b803561215e8161485f565b60006020828403121561488857614888600080fd5b6000613c6b8484614868565b600080600080608085870312156148ad576148ad600080fd5b60006148b9878761456a565b94505060206148ca8782880161456a565b93505060406148db878288016145b0565b92505060606146ff878288016145b0565b606081016148fa8286614596565b6149076020830185614596565b613c6b6040830184614596565b600061215e82614854565b61453181614914565b6020810161215e828461491f565b60008060006060848603121561494e5761494e600080fd5b600061495a8686614868565b935050602061496b868287016145b0565b925050604061497c868287016145b0565b9150509250925092565b6000614992838361491f565b505060200190565b60006149a4825190565b80845260209384019383018060005b838110156149d85781516149c78882614986565b9750602083019250506001016149b3565b509495945050505050565b60208082528101613c4c818461499a565b60008060008060808587031215614a0d57614a0d600080fd5b6000614a19878761456a565b9450506020614a2a8782880161456a565b93505060406148db8782880161456a565b61453181614545565b6020810161215e8284614a3b565b600080600060608486031215614a6a57614a6a600080fd5b6000614a76868661456a565b935050602061496b8682870161456a565b606081016148fa828661452d565b60008060408385031215614aab57614aab600080fd5b6000614ab7858561456a565b9250506020614ac885828601614868565b9150509250929050565b6000614adc825190565b80845260209384019383018060005b838110156149d8578151614aff8882614986565b975060208301925050600101614aeb565b60208082528101613c4c8184614ad2565b80516060830190614b328482614a3b565b506020820151614b456020850182614596565b5060408201516136826040850182614596565b6000614b648383614b21565b505060600190565b6000614b76825190565b80845260209384019383018060005b838110156149d8578151614b998882614b58565b975060208301925050600101614b85565b60208082528101613c4c8184614b6c565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff82111715614bf757614bf7614bbb565b6040525050565b6000614c0960405190565b9050614c158282614bd1565b919050565b600067ffffffffffffffff821115614c3457614c34614bbb565b5060209081020190565b6000614c51614c4c84614c1a565b614bfe565b83815290506020808201908402830185811115614c7057614c70600080fd5b835b81811015614c945780614c85888261456a565b84525060209283019201614c72565b5050509392505050565b600082601f830112614cb257614cb2600080fd5b8135613c6b848260208601614c3e565b600060208284031215614cd757614cd7600080fd5b813567ffffffffffffffff811115614cf157614cf1600080fd5b613c6b84828501614c9e565b60006149928383614596565b6000614d13825190565b80845260209384019383018060005b838110156149d8578151614d368882614cfd565b975060208301925050600101614d22565b60208082528101613c4c8184614d09565b60408101614d668285614596565b613c4c6020830184614596565b60008060408385031215614d8957614d89600080fd5b6000614d9585856145b0565b9250506020614ac88582860161456a565b60008060408385031215614dbc57614dbc600080fd5b6000614dc8858561456a565b9250506020614ac8858286016145b0565b6009811061088257600080fd5b803561215e81614dd9565b60008060408385031215614e0757614e07600080fd5b6000614e13858561456a565b9250506020614ac885828601614de6565b600080600080600060a08688031215614e3f57614e3f600080fd5b6000614e4b888861456a565b9550506020614e5c8882890161456a565b9450506040614e6d8882890161456a565b9350506060614e7e888289016145b0565b92505060806147a088828901614713565b60008060408385031215614ea557614ea5600080fd5b6000614d95858561456a565b602e81526000602082017f436c6f736520666163746f722067726561746572207468616e206d6178696d7581526d369031b637b9b2903330b1ba37b960911b602082015291505b5060400190565b6020808252810161215e81614eb1565b602e81526000602082017f436c6f736520666163746f7220736d616c6c6572207468616e206d696e696d7581526d369031b637b9b2903330b1ba37b960911b60208201529150614ef8565b6020808252810161215e81614f0f565b600d81526000602082016c1a5b9d985b1a59081a5b9c1d5d609a1b815291505b5060200190565b6020808252810161215e81614f6a565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198203614fe057614fe0614fb7565b5060010190565b805161215e8161485f565b60006020828403121561500757615007600080fd5b6000613c6b8484614fe7565b604081016150218285614a3b565b613c4c6020830184614a3b565b6000821982111561504157615041614fb7565b500190565b600081600019048311821515161561506057615060614fb7565b500290565b60006020828403121561507a5761507a600080fd5b6000613c6b8484614de6565b634e487b7160e01b600052601260045260246000fd5b6000826150ab576150ab615086565b500490565b60a081016150be8288614a3b565b6150cb6020830187614a3b565b6150d86040830186614596565b6150e5606083018561491f565b6150f2608083018461452d565b9695505050505050565b602881526000602082017f4e6f6e7a65726f20626f72726f772062616c616e6365206166746572206c69718152673ab4b230ba34b7b760c11b60208201529150614ef8565b6020808252810161215e816150fc565b6040810161515f828561491f565b613c4c602083018461491f565b600e81526000602082016d616c72656164792065786973747360901b81529150614f8a565b6020808252810161215e8161516c565b602b81526000602082017f6469737472696275746f7220616c72656164792065786973747320776974682081526a1d1a1a5cc81c995dd85c9960aa1b60208201529150614ef8565b6020808252810161215e816151a1565b805161215e816145aa565b60006020828403121561521957615219600080fd5b6000613c6b84846151f9565b606081016148fa828661491f565b602981526000602082017f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865208152683732bb9037bbb732b960b91b60208201529150614ef8565b6020808252810161215e81615233565b606081016152978286614a3b565b6149076020830185614a3b565b603181526000602082017f6c69717569646174696f6e20696e63656e746976652073686f756c64206265208152700cee4cac2e8cae440e8d0c2dc4062ca627607b1b60208201529150614ef8565b6020808252810161215e816152a4565b60408101614d668285614a3b565b805161215e8161470b565b60006020828403121561533057615330600080fd5b6000613c6b8484615310565b601b81526000602082017f436f6d7074726f6c6c65723a20496e76616c69642076546f6b656e000000000081529150614f8a565b6020808252810161215e8161533c565b601981526000602082017f696e76616c6964206e756d626572206f66206d61726b6574730000000000000081529150614f8a565b6020808252810161215e81615380565b602e81526000602082017f496e697469616c697a61626c653a20636f6e747261637420697320616c72656181526d191e481a5b9a5d1a585b1a5e995960921b60208201529150614ef8565b6020808252810161215e816153c4565b600060ff821661215e565b6145318161541f565b6020810161215e828461542a565b805160208301906136828482614596565b604081016154608285614a3b565b613c4c6020830184615441565b6060810161547b8286614a3b565b6154886020830185614a3b565b613c6b6040830184615441565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052600160045260246000fd5b6000828210156154d3576154d3614fb7565b500390565b634e487b7160e01b600052603160045260246000fd5b60208082527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657291019081526000614f8a565b6020808252810161215e816154ee565b602581526000602082017f696e76616c696420616365737320636f6e74726f6c206d616e61676572206164815264647265737360d81b60208201529150614ef8565b6020808252810161215e81615530565b60005b8381101561559d578181015183820152602001615585565b838111156136825750506000910152565b60006155b8825190565b8084526020840193506155cf818560208601615582565b601f01601f19169290920192915050565b604081016155ee8285614a3b565b8181036020830152613c6b81846155ae565b6060810161560e8286614a3b565b61561b6020830185614a3b565b818103604083015261416881846155ae565b6009811061088257610882615495565b80614c158161562d565b600061215e8261563d565b61453181615647565b604081016156698285614a3b565b613c4c6020830184615652565b602881526000602082017f63616e6e6f742070617573652061206d61726b65742074686174206973206e6f8152671d081b1a5cdd195960c21b60208201529150614ef8565b6020808252810161215e81615676565b606081016156d9828661491f565b6156e66020830185615652565b613c6b604083018461452d565b6000806000806080858703121561570c5761570c600080fd5b600061571887876151f9565b9450506020615729878288016151f9565b935050604061573a878288016151f9565b92505060606146ff878288016151f9565b602281526000602082017f436f6d7074726f6c6c65723a20496e76616c6964206d61784c6f6f70734c696d8152611a5d60f21b60208201529150614ef8565b6020808252810161215e8161574b565b602b81526000602082017f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206981526a6e697469616c697a696e6760a81b60208201529150614ef8565b6020808252810161215e8161579a56fe7365744d61726b6574426f72726f774361707328616464726573735b5d2c75696e743235365b5d297365744d696e4c6971756964617461626c65436f6c6c61746572616c2875696e7432353629736574436f6c6c61746572616c466163746f7228616464726573732c75696e743235362c75696e7432353629736574416374696f6e7350617573656428616464726573735b5d2c75696e743235365b5d2c626f6f6c297365744d61726b6574537570706c794361707328616464726573735b5d2c75696e743235365b5d29a2646970667358221220845aadaa3d56ab556d9bcc41172398736230617ca10efa26386e87e9ac74326b64736f6c634300080d0033",
|
|
1709
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b506004361061038d5760003560e01c80638e6470ea116101de578063c29982381161010f578063df71403b116100ad578063e89d51ad1161007c578063e89d51ad14610825578063eade3eed14610838578063ede4edd01461084b578063f2fde38b1461085e57600080fd5b8063df71403b146107e5578063e30c3978146107f8578063e85a296014610809578063e87554461461081c57600080fd5b8063d136af44116100e9578063d136af44146107a3578063da35a26f146107b6578063db5c65de146107c9578063dce15449146107d257600080fd5b8063c29982381461074f578063c488847b1461076f578063cab4f84c1461079057600080fd5b8063abfceffc1161017c578063b2068e8411610156578063b2068e8414610701578063b4a0bdf314610721578063be26317e14610732578063c0891ba91461073c57600080fd5b8063abfceffc146106b2578063afcff50f146106d2578063b0772d0b146106f957600080fd5b8063929fe9a1116101b8578063929fe9a11461066557806394543c1514610678578063a84310811461068b578063a8c3c8501461069e57600080fd5b80638e6470ea146105fd5780638e8f294b14610610578063921363951461065257600080fd5b8063528a174c116102c35780635ec88c791161026157806379ba50971161023057806379ba5097146105b55780637dc0d1d0146105bd57806380d45a2d146105d05780638da5cb5b146105e357600080fd5b80635ec88c791461057257806361252fd1146105855780636d0be88d1461059a578063715018a6146105ad57600080fd5b806356aaee2d1161029d57806356aaee2d1461052f57806357e871e7146105425780635c21b6c51461054c5780635cc4fdeb1461055f57600080fd5b8063528a174c146104e957806352d84d1e146104fc578063530e784f1461051c57600080fd5b806324aaa220116103305780634a5844321161030a5780634a5844321461048b5780634ada90af146104ab5780634e79238f146104b4578063520b6c74146104d657600080fd5b806324aaa220146104395780632bce219c1461044c5780633d98a1e51461045f57600080fd5b806312348e961161036c57806312348e96146103ed578063186db48f146104005780631bc41f2814610413578063246acab11461042657600080fd5b80627e3dd21461039257806302c3bcbb146103ab5780630e32cb86146103d8575b600080fd5b60015b6040516103a29190614537565b60405180910390f35b6103cb6103b9366004614575565b60d16020526000908152604090205481565b6040516103a2919061459c565b6103eb6103e6366004614575565b610871565b005b6103eb6103fb3660046145bb565b610885565b6103eb61040e36600461462e565b610961565b6103eb6104213660046146a7565b610ab8565b6103cb6104343660046145bb565b610e78565b6103eb61044736600461471e565b610e9c565b6103eb61045a3660046147f8565b610f69565b61039561046d366004614873565b6001600160a01b0316600090815260cd602052604090205460ff1690565b6103cb610499366004614575565b60cf6020526000908152604090205481565b6103cb60cb5481565b6104c76104c2366004614894565b6112d0565b6040516103a2939291906148ec565b6103eb6104e43660046145bb565b611301565b6104c76104f7366004614575565b61135b565b61050f61050a3660046145bb565b611386565b6040516103a29190614928565b6103eb61052a366004614873565b6113b0565b6103eb61053d366004614873565b611414565b6103cb6101395481565b6103eb61055a366004614575565b6116e8565b6103eb61056d366004614936565b611805565b6104c7610580366004614575565b611a17565b61058d611a29565b6040516103a291906149e3565b6103eb6105a83660046149f4565b611a8b565b6103eb611c04565b6103eb611c18565b60c95461050f906001600160a01b031681565b6103eb6105de3660046145bb565b611c4d565b6033546001600160a01b03165b6040516103a29190614a44565b6103eb61060b366004614a52565b611c5e565b61064361061e366004614575565b60cd6020526000908152604090208054600182015460029092015460ff909116919083565b6040516103a293929190614a87565b6103eb610660366004614575565b611d77565b610395610673366004614a95565b612130565b610395610686366004614873565b612164565b6103eb6106993660046145bb565b61220c565b6103eb6106ac3660046145bb565b61013955565b6106c56106c0366004614575565b6122ac565b6040516103a29190614b10565b6105f07f000000000000000000000000000000000000000000000000000000000000000081565b6106c5612322565b61071461070f366004614575565b612382565b6040516103a29190614baa565b6097546001600160a01b031661050f565b6103cb6101075481565b6103eb61074a366004614a52565b6125cd565b61076261075d366004614cc2565b612849565b6040516103a29190614d47565b61078261077d366004614a52565b612900565b6040516103a2929190614d58565b6103eb61079e366004614873565b612a2b565b6103eb6107b136600461462e565b612c23565b6103eb6107c4366004614d73565b612d86565b6103cb60d05481565b61050f6107e0366004614da6565b612e60565b6103eb6107f3366004614a52565b612e98565b6065546001600160a01b03166105f0565b610395610817366004614df1565b61322e565b6103cb60ca5481565b6103eb610833366004614e24565b613285565b6103eb610846366004614e8f565b61345e565b6103cb610859366004614575565b613688565b6103eb61086c366004614575565b6138fa565b61087961396b565b61088281613995565b50565b6108c36040518060400160405280601781526020017f736574436c6f7365466163746f722875696e7432353629000000000000000000815250613a0e565b80670c7d713b49da000010156108f45760405162461bcd60e51b81526004016108eb90614eff565b60405180910390fd5b8066b1a2bc2ec50000111561091b5760405162461bcd60e51b81526004016108eb90614f5a565b60ca8054908290556040517f3b9670cf975d26958e754b57098eaa2ac914d8d2a31b83257997b9f346110fd9906109559083908590614d58565b60405180910390a15050565b6109826040518060600160405280602881526020016157f360289139613a0e565b8281811580159061099257508082145b6109ae5760405162461bcd60e51b81526004016108eb90614f91565b6109b782613aac565b60005b82811015610aaf578484828181106109d4576109d4614fa1565b9050602002013560cf60008989858181106109f1576109f1614fa1565b9050602002016020810190610a069190614873565b6001600160a01b03168152602081019190915260400160002055868682818110610a3257610a32614fa1565b9050602002016020810190610a479190614873565b6001600160a01b03167f6f1951b2aad10f3fc81b86d91105b413a5b3f847a34bbc5ce1904201b14438f6868684818110610a8357610a83614fa1565b90506020020135604051610a97919061459c565b60405180910390a2610aa881614fcd565b90506109ba565b50505050505050565b610ac3846004613ad7565b6001600160a01b038416600090815260cd60205260409020805460ff16610aff5784604051635a9a1eb960e11b81526004016108eb9190614a44565b306001600160a01b03851603610ba757306001600160a01b0316856001600160a01b0316635fe3b5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7b9190614ff2565b6001600160a01b031614610ba257604051630c73eb0560e01b815260040160405180910390fd5b610cd6565b6001600160a01b038416600090815260cd602052604090205460ff16610be25783604051635a9a1eb960e11b81526004016108eb9190614a44565b836001600160a01b0316635fe3b5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c449190614ff2565b6001600160a01b0316856001600160a01b0316635fe3b5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610caf9190614ff2565b6001600160a01b031614610cd657604051630c73eb0560e01b815260040160405180910390fd5b6001600160a01b038216600090815260038201602052604090205460ff16610d15578482604051630cdfb2db60e31b81526004016108eb929190615013565b60d35460005b81811015610aaf57600060d38281548110610d3857610d38614fa1565b60009182526020909120015460405163051d1d4f60e11b81526001600160a01b0390911691508190630a3a3a9e90610d74908b90600401614a44565b600060405180830381600087803b158015610d8e57600080fd5b505af1158015610da2573d6000803e3d6000fd5b505060405163db7954fd60e01b81526001600160a01b038416925063db7954fd9150610dd4908b908990600401615013565b600060405180830381600087803b158015610dee57600080fd5b505af1158015610e02573d6000803e3d6000fd5b505060405163db7954fd60e01b81526001600160a01b038416925063db7954fd9150610e34908b908a90600401615013565b600060405180830381600087803b158015610e4e57600080fd5b505af1158015610e62573d6000803e3d6000fd5b505050505080610e7190614fcd565b9050610d1b565b6000816101396000828254610e8d919061502e565b90915550506101395492915050565b610ebd6040518060600160405280602a815260200161586c602a9139613a0e565b8382610ed1610ecc8284615046565b613aac565b60005b82811015610f5f5760005b82811015610f4e57610f3e898984818110610efc57610efc614fa1565b9050602002016020810190610f119190614873565b888884818110610f2357610f23614fa1565b9050602002016020810190610f389190615065565b87613b03565b610f4781614fcd565b9050610edf565b50610f5881614fcd565b9050610ed4565b5050505050505050565b6000610f7784613bd0613c04565b905060d05481600001511115610fa75760d0548151604051631a451c0f60e21b81526108eb929190600401614d58565b6000610fc7604051806020016040528060cb548152508360400151613c53565b82519091508110610fef578151604051632c1f8ef160e21b81526108eb918391600401614d58565b8160a001516000036110145760405163095bf33360e01b815260040160405180910390fd5b82611023610ecc60028361509c565b60005b818110156111ec5760cd600087878481811061104457611044614fa1565b905060600201602001602081019061105c9190614873565b6001600160a01b0316815260208101919091526040016000205460ff166110c15785858281811061108f5761108f614fa1565b90506060020160200160208101906110a79190614873565b604051635a9a1eb960e11b81526004016108eb9190614a44565b60cd60008787848181106110d7576110d7614fa1565b6110ed9260206060909202019081019150614873565b6001600160a01b0316815260208101919091526040016000205460ff166111365785858281811061112057611120614fa1565b6110a79260206060909202019081019150614873565b3686868381811061114957611149614fa1565b90506060020190508060200160208101906111649190614873565b6001600160a01b0316638bbdb6db338a60408501356111866020870187614873565b60016040518663ffffffff1660e01b81526004016111a89594939291906150b0565b600060405180830381600087803b1580156111c257600080fd5b505af11580156111d6573d6000803e3d6000fd5b5050505050806111e590614fcd565b9050611026565b506001600160a01b038616600090815260cc602090815260408083208054825181850281018501909352808352919290919083018282801561125757602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611239575b505083519394506000925050505b818110156112c557600061129284838151811061128457611284614fa1565b60200260200101518b613c73565b5091505080156112b45760405162461bcd60e51b81526004016108eb90615141565b506112be81614fcd565b9050611265565b505050505050505050565b6000806000806112e588888888613d1a613d4e565b608081015160a09091015160009a919950975095505050505050565b61132260405180606001604052806025815260200161581b60259139613a0e565b60d08054908290556040517eb4f4f153ad7f1397564a8830fef092481e8cf6a2cd3ff04f96d10ba51200a5906109559083908590614d58565b60008060008061136d85613d1a613c04565b608081015160a090910151600097919650945092505050565b60ce818154811061139657600080fd5b6000918252602090912001546001600160a01b0316905081565b6113b861396b565b6113c181613f83565b60c980546001600160a01b038381166001600160a01b03198316179092556040519116907fd52b2b9b7e9ee655fcb95d2e5b9e0c9f69e7ef2b8e9d2d0ea78402d576d22e22906109559083908590615151565b61141c61396b565b6001600160a01b038116600090815260d4602052604090205460ff16156114555760405162461bcd60e51b81526004016108eb90615191565b60d35460005b8181101561158f57600060d3828154811061147857611478614fa1565b600091825260209182902001546040805163f7c618c160e01b815290516001600160a01b039092169263f7c618c1926004808401938290030181865afa1580156114c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ea9190614ff2565b9050836001600160a01b031663f7c618c16040518163ffffffff1660e01b8152600401602060405180830381865afa15801561152a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154e9190614ff2565b6001600160a01b0316816001600160a01b03160361157e5760405162461bcd60e51b81526004016108eb906151e9565b5061158881614fcd565b905061145b565b5060d3546115a1610ecc82600161502e565b60d3805460018082019092557f915c3eb987b20e1af620c1403197bf687fb7f18513b3a73fde6e78c7072c41a60180546001600160a01b0319166001600160a01b038616908117909155600090815260d460205260408120805460ff191690921790915560ce54905b818110156116ad57846001600160a01b0316632a869a4d60ce838154811061163457611634614fa1565b6000918252602090912001546040516001600160e01b031960e084901b16815261166a916001600160a01b031690600401614a44565b600060405180830381600087803b15801561168457600080fd5b505af1158015611698573d6000803e3d6000fd5b50505050806116a690614fcd565b905061160a565b506040516001600160a01b038516907f058fa9577dc29aece41d41c2d3bff2ed4e8d5085762198e8f7faab35039555da90600090a250505050565b6001600160a01b038116600090815260cc602090815260408083208054825181850281018501909352808352919290919083018282801561175257602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611734575b5050835160c954949550936001600160a01b0316925060009150505b828110156117fe57816001600160a01b03166396e85ced85838151811061179757611797614fa1565b60200260200101516040518263ffffffff1660e01b81526004016117bb9190614a44565b600060405180830381600087803b1580156117d557600080fd5b505af11580156117e9573d6000803e3d6000fd5b50505050806117f790614fcd565b905061176e565b5050505050565b6118266040518060600160405280602c8152602001615840602c9139613a0e565b6001600160a01b038316600090815260cd60205260409020805460ff166118625783604051635a9a1eb960e11b81526004016108eb9190614a44565b670c7d713b49da000083111561188b576040516302f22cad60e61b815260040160405180910390fd5b670de0b6b3a76400008211156118b35760405162f9474b60e61b815260040160405180910390fd5b828210156118d35760405162f9474b60e61b815260040160405180910390fd5b8215801590611950575060c95460405163fc57d4df60e01b81526001600160a01b039091169063fc57d4df9061190d908790600401614a44565b602060405180830381865afa15801561192a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061194e9190615204565b155b1561196f578360405162e52a7d60e41b81526004016108eb9190614a44565b60018101548381146119bf57600182018490556040517f70483e6592cd5182d45ac970e05bc62cdcc90e9d8ef2c2dbe686cf383bcd7fc5906119b690879084908890615225565b60405180910390a15b6002820154838114611a0f57600283018490556040517f9e92c7d5fef69846094f3ddcadcb9402c6ba469c461368714f1cabd8ef48b59190611a0690889084908890615225565b60405180910390a15b505050505050565b60008060008061136d85613bd0613c04565b606060d3805480602002602001604051908101604052809291908181526020018280548015611a8157602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611a63575b5050505050905090565b611a96846006613ad7565b611aa1848483613faa565b60d35460005b81811015611a0f57600060d38281548110611ac457611ac4614fa1565b60009182526020909120015460405163051d1d4f60e11b81526001600160a01b0390911691508190630a3a3a9e90611b00908a90600401614a44565b600060405180830381600087803b158015611b1a57600080fd5b505af1158015611b2e573d6000803e3d6000fd5b505060405163db7954fd60e01b81526001600160a01b038416925063db7954fd9150611b60908a908a90600401615013565b600060405180830381600087803b158015611b7a57600080fd5b505af1158015611b8e573d6000803e3d6000fd5b505060405163db7954fd60e01b81526001600160a01b038416925063db7954fd9150611bc0908a908990600401615013565b600060405180830381600087803b158015611bda57600080fd5b505af1158015611bee573d6000803e3d6000fd5b505050505080611bfd90614fcd565b9050611aa7565b611c0c61396b565b611c16600061404f565b565b60655433906001600160a01b03168114611c445760405162461bcd60e51b81526004016108eb90615279565b6108828161404f565b611c5561396b565b61088281614068565b611c69836001613ad7565b611c74838383613faa565b60d35460005b818110156117fe57600060d38281548110611c9757611c97614fa1565b60009182526020909120015460405163051d1d4f60e11b81526001600160a01b0390911691508190630a3a3a9e90611cd3908990600401614a44565b600060405180830381600087803b158015611ced57600080fd5b505af1158015611d01573d6000803e3d6000fd5b505060405163db7954fd60e01b81526001600160a01b038416925063db7954fd9150611d339089908990600401615013565b600060405180830381600087803b158015611d4d57600080fd5b505af1158015611d61573d6000803e3d6000fd5b505050505080611d7090614fcd565b9050611c7a565b6001600160a01b038116600090815260cc6020908152604080832080548251818502810185019093528083529192909190830182828015611de157602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611dc3575b5050835160c954949550933393506001600160a01b03169150600090505b83811015611f0d57848181518110611e1957611e19614fa1565b60200260200101516001600160a01b031663a6afed956040518163ffffffff1660e01b81526004016020604051808303816000875af1158015611e60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e849190615204565b50816001600160a01b03166396e85ced868381518110611ea657611ea6614fa1565b60200260200101516040518263ffffffff1660e01b8152600401611eca9190614a44565b600060405180830381600087803b158015611ee457600080fd5b505af1158015611ef8573d6000803e3d6000fd5b5050505080611f0690614fcd565b9050611dff565b50506000611f1d85613bd0613c04565b905060d05481600001511115611f4d5760d0548151604051631a451c0f60e21b81526108eb929190600401614d58565b8060a00151600003611f725760405163095bf33360e01b815260040160405180910390fd5b60408051602080820183528351825282518082018452848401518152835191820190935260cb5481529091600091611faa91906140c5565b90506000611fb8838361410d565b9050611fdc6040518060200160405280670de0b6b3a7640000815250825190511090565b156120005781518351604051631a451c0f60e21b81526108eb929190600401614d58565b60005b868110156112c557600088828151811061201f5761201f614fa1565b60200260200101519050600080612036838d613c73565b509150915060006120478683613c53565b905082156120b257836001600160a01b031663b2a02ff18b8f866040518463ffffffff1660e01b815260040161207f93929190615289565b600060405180830381600087803b15801561209957600080fd5b505af11580156120ad573d6000803e3d6000fd5b505050505b811561211b57836001600160a01b03166344fe6ffe8b8f846040518463ffffffff1660e01b81526004016120e893929190615289565b600060405180830381600087803b15801561210257600080fd5b505af1158015612116573d6000803e3d6000fd5b505050505b505050508061212990614fcd565b9050612003565b6001600160a01b03808216600090815260cd60209081526040808320938616835260039093019052205460ff165b92915050565b6001600160a01b038116600090815260cd6020526040812060010154158015612193575061219382600261322e565b801561215e5750670de0b6b3a7640000826001600160a01b031663173b99046040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122059190615204565b1492915050565b670de0b6b3a76400008110156122345760405162461bcd60e51b81526004016108eb906152f2565b6122726040518060400160405280602081526020017f7365744c69717569646174696f6e496e63656e746976652875696e7432353629815250613a0e565b60cb8054908290556040517faeba5a6c40a8ac138134bff1aaa65debf25971188a58804bad717f82f0ec1316906109559083908590614d58565b6001600160a01b038116600090815260cc6020908152604080832080548251818502810185019093528083526060949383018282801561231557602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116122f7575b5093979650505050505050565b606060ce805480602002602001604051908101604052809291908181526020018280548015611a81576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311611a63575050505050905090565b60d3546060908067ffffffffffffffff8111156123a1576123a1614bbb565b6040519080825280602002602001820160405280156123ff57816020015b6123ec604051806060016040528060006001600160a01b0316815260200160008152602001600081525090565b8152602001906001900390816123bf5790505b50915060005b818110156125c657600060d3828154811061242257612422614fa1565b60009182526020808320909101546040805163f7c618c160e01b815290516001600160a01b039092169450849263f7c618c1926004808401938290030181865afa158015612474573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124989190614ff2565b90506040518060600160405280826001600160a01b03168152602001836001600160a01b03166374c4c1cc896040518263ffffffff1660e01b81526004016124e09190614a44565b602060405180830381865afa1580156124fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125219190615204565b8152602001836001600160a01b0316637c05a7c5896040518263ffffffff1660e01b81526004016125529190614a44565b602060405180830381865afa15801561256f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125939190615204565b8152508584815181106125a8576125a8614fa1565b60200260200101819052505050806125bf90614fcd565b9050612405565b5050919050565b6125d8836000613ad7565b6001600160a01b038316600090815260cd602052604090205460ff166126135782604051635a9a1eb960e11b81526004016108eb9190614a44565b6001600160a01b038316600090815260d160205260409020546000198114612746576000846001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612675573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126999190615204565b905060006040518060200160405280876001600160a01b031663182df0f56040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061270a9190615204565b90529050600061271b828487614147565b90508381111561274257868460405163db33be3d60e01b81526004016108eb929190615302565b5050505b60d35460005b81811015611a0f57600060d3828154811061276957612769614fa1565b60009182526020909120015460405163051d1d4f60e11b81526001600160a01b0390911691508190630a3a3a9e906127a5908a90600401614a44565b600060405180830381600087803b1580156127bf57600080fd5b505af11580156127d3573d6000803e3d6000fd5b505060405163db7954fd60e01b81526001600160a01b038416925063db7954fd9150612805908a908a90600401615013565b600060405180830381600087803b15801561281f57600080fd5b505af1158015612833573d6000803e3d6000fd5b50505050508061284290614fcd565b905061274c565b805160609060008167ffffffffffffffff81111561286957612869614bbb565b604051908082528060200260200182016040528015612892578160200160208202803683370190505b50905060005b828110156128f85760008582815181106128b4576128b4614fa1565b602002602001015190506128c88133614171565b60008383815181106128dc576128dc614fa1565b6020908102919091010152506128f181614fcd565b9050612898565b509392505050565b600080600061290e86614264565b9050600061291b86614264565b90506000866001600160a01b031663182df0f56040518163ffffffff1660e01b8152600401602060405180830381865afa15801561295d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129819190615204565b9050600061299b6040518060200160405280600081525090565b60408051602080820183526000808352835180830185529081528351808301855260cb548152845192830190945288825291926129d7916140c5565b92506129ff6040518060200160405280888152506040518060200160405280888152506140c5565b9150612a0b838361410d565b9050612a17818b613c53565b60009d909c509a5050505050505050505050565b612a547f00000000000000000000000000000000000000000000000000000000000000006142fe565b6001600160a01b038116600090815260cd602052604090205460ff1615612a90578060405163d005ce4760e01b81526004016108eb9190614a44565b806001600160a01b0316633d9ea3a16040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ace573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612af2919061531b565b612b0e5760405162461bcd60e51b81526004016108eb90615370565b6001600160a01b038116600090815260cd60205260408120805460ff19166001908117825581018290556002810191909155612b498261432b565b60d35460005b81811015612be65760d38181548110612b6a57612b6a614fa1565b600091825260209091200154604051632a869a4d60e01b81526001600160a01b0390911690632a869a4d90612ba3908790600401614a44565b600060405180830381600087803b158015612bbd57600080fd5b505af1158015612bd1573d6000803e3d6000fd5b5050505080612bdf90614fcd565b9050612b4f565b507faf16ad15f9e29d5140e8e81a30a92a755aa8edff3d301053c84392b70c0d09a383604051612c169190614928565b60405180910390a1505050565b612c4460405180606001604052806028815260200161589660289139613a0e565b826000819003612c665760405162461bcd60e51b81526004016108eb906153b4565b808214612c855760405162461bcd60e51b81526004016108eb906153b4565b612c8e81613aac565b60005b81811015611a0f57838382818110612cab57612cab614fa1565b9050602002013560d16000888885818110612cc857612cc8614fa1565b9050602002016020810190612cdd9190614873565b6001600160a01b03168152602081019190915260400160002055858582818110612d0957612d09614fa1565b9050602002016020810190612d1e9190614873565b6001600160a01b03167f9e0ad9cee10bdf36b7fbd38910c0bdff0f275ace679b45b922381c2723d676f8858584818110612d5a57612d5a614fa1565b90506020020135604051612d6e919061459c565b60405180910390a2612d7f81614fcd565b9050612c91565b600054610100900460ff1615808015612da65750600054600160ff909116105b80612dc05750303b158015612dc0575060005460ff166001145b612ddc5760405162461bcd60e51b81526004016108eb9061540f565b6000805460ff191660011790558015612dff576000805461ff0019166101001790555b612e076143f1565b612e1082614420565b612e1983614068565b8015612e5b576000805461ff00191690556040517f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249890612c1690600190615433565b505050565b60cc6020528160005260406000208181548110612e7c57600080fd5b6000918252602090912001546001600160a01b03169150829050565b612ea3836002613ad7565b6001600160a01b038316600090815260cd602052604090205460ff16612ede5782604051635a9a1eb960e11b81526004016108eb9190614a44565b6001600160a01b03808416600090815260cd60209081526040808320938616835260039093019052205460ff16612f2257612f18836142fe565b612f223383614171565b612f2b826116e8565b60c95460405163fc57d4df60e01b81526001600160a01b039091169063fc57d4df90612f5b908690600401614a44565b602060405180830381865afa158015612f78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f9c9190615204565b600003612fbd578260405162e52a7d60e41b81526004016108eb9190614a44565b6001600160a01b038316600090815260cf6020526040902054600019811461307b576000846001600160a01b03166347bd37186040518163ffffffff1660e01b8152600401602060405180830381865afa15801561301f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130439190615204565b90506000613051848361502e565b905082811115613078578583604051632e649eed60e01b81526004016108eb929190615302565b50505b600061308d8486600086613d1a613d4e565b60a0810151909150156130b35760405163bb55fd2760e01b815260040160405180910390fd5b60006040518060200160405280876001600160a01b031663aa5af0fd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156130fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131229190615204565b905260d35490915060005b81811015610f5f57600060d3828154811061314a5761314a614fa1565b600091825260209091200154604051632352607960e01b81526001600160a01b0390911691508190632352607990613188908c908890600401615452565b600060405180830381600087803b1580156131a257600080fd5b505af11580156131b6573d6000803e3d6000fd5b5050604051636a95ddef60e01b81526001600160a01b0384169250636a95ddef91506131ea908c908c90899060040161546d565b600060405180830381600087803b15801561320457600080fd5b505af1158015613218573d6000803e3d6000fd5b50505050508061322790614fcd565b905061312d565b6001600160a01b038216600090815260d2602052604081208183600881111561325957613259615495565b600881111561326a5761326a615495565b815260208101919091526040016000205460ff169392505050565b613290856005613ad7565b613299836116e8565b6001600160a01b038516600090815260cd602052604090205460ff166132d45784604051635a9a1eb960e11b81526004016108eb9190614a44565b6001600160a01b038416600090815260cd602052604090205460ff1661330f5783604051635a9a1eb960e11b81526004016108eb9190614a44565b6040516395dd919360e01b81526000906001600160a01b038716906395dd91939061333e908790600401614a44565b602060405180830381865afa15801561335b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061337f9190615204565b90508180613391575061339186612164565b156133bd57808311156133b75760405163e46c155960e01b815260040160405180910390fd5b506117fe565b60006133cb85613bd0613c04565b905060d0548160000151116133fa5760d0548151604051636e61bb0560e11b81526108eb929190600401614d58565b8060a0015160000361341f5760405163095bf33360e01b815260040160405180910390fd5b600061343b604051806020016040528060ca5481525084613c53565b905080851115610f5f5760405163e46c155960e01b815260040160405180910390fd5b613469826003613ad7565b60c9546040516396e85ced60e01b81526001600160a01b03909116906396e85ced90613499908590600401614a44565b600060405180830381600087803b1580156134b357600080fd5b505af11580156134c7573d6000803e3d6000fd5b505050506001600160a01b038216600090815260cd602052604090205460ff166135065781604051635a9a1eb960e11b81526004016108eb9190614a44565b60d35460005b818110156136825760006040518060200160405280866001600160a01b031663aa5af0fd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561355f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135839190615204565b8152509050600060d3838154811061359d5761359d614fa1565b600091825260209091200154604051632352607960e01b81526001600160a01b03909116915081906323526079906135db9089908690600401615452565b600060405180830381600087803b1580156135f557600080fd5b505af1158015613609573d6000803e3d6000fd5b5050604051636a95ddef60e01b81526001600160a01b0384169250636a95ddef915061363d9089908990879060040161546d565b600060405180830381600087803b15801561365757600080fd5b505af115801561366b573d6000803e3d6000fd5b5050505050508061367b90614fcd565b905061350c565b50505050565b6000613695826008613ad7565b816000806136a38333613c73565b5091509150806000146136c95760405163f8a5d66d60e01b815260040160405180910390fd5b6136d4853384613faa565b6001600160a01b038316600090815260cd60209081526040808320338452600381019092529091205460ff166137105750600095945050505050565b3360009081526003820160209081526040808320805460ff1916905560cc82528083208054825181850281018501909352808352919290919083018282801561378257602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311613764575b5050835193945083925060009150505b828110156137e457876001600160a01b03168482815181106137b6576137b6614fa1565b60200260200101516001600160a01b0316036137d4578091506137e4565b6137dd81614fcd565b9050613792565b508181106137f4576137f46154ab565b33600090815260cc6020526040902080548190613813906001906154c1565b8154811061382357613823614fa1565b9060005260206000200160009054906101000a90046001600160a01b031681838154811061385357613853614fa1565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080805480613891576138916154d8565b600082815260208120820160001990810180546001600160a01b031916905590910190915560405133916001600160a01b038b16917fe699a64c18b07ac5b7301aa273f36a2287239eb9501d81950672794afba29a0d9190a35060009998505050505050505050565b61390261396b565b606580546001600160a01b0383166001600160a01b031990911681179091556139336033546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6033546001600160a01b03163314611c165760405162461bcd60e51b81526004016108eb90615520565b6001600160a01b0381166139bb5760405162461bcd60e51b81526004016108eb90615572565b609780546001600160a01b038381166001600160a01b03198316179092556040519116907f66fd58e82f7b31a2a5c30e0888f3093efe4e111b00cd2b0c31fe014601293aa0906109559083908590615013565b6097546040516318c5e8ab60e01b81526000916001600160a01b0316906318c5e8ab90613a4190339086906004016155e0565b602060405180830381865afa158015613a5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a82919061531b565b905080613aa857333083604051634a3fa29360e01b81526004016108eb93929190615600565b5050565b6101075481111561088257610107548160405163792bfb1b60e11b81526004016108eb929190614d58565b613ae1828261322e565b15613aa85781816040516313b3ccb160e31b81526004016108eb92919061565b565b6001600160a01b038316600090815260cd602052604090205460ff16613b3b5760405162461bcd60e51b81526004016108eb906156bb565b6001600160a01b038316600090815260d2602052604081208291846008811115613b6757613b67615495565b6008811115613b7857613b78615495565b815260200190815260200160002060006101000a81548160ff0219169083151502179055507f35007a986bcd36d2f73fc7f1b73762e12eadb4406dd163194950fd3b5a6a827d838383604051612c16939291906156cb565b6040805160208082018352600091829052825180820184526001600160a01b0394909416825260cd90522060020154815290565b613c3d6040518060c001604052806000815260200160008152602001600081526020016000815260200160008152602001600081525090565b613c4c83600080600086613d4e565b9392505050565b600080613c608484614447565b9050613c6b8161446f565b949350505050565b600080600080856001600160a01b031663c37f68e2866040518263ffffffff1660e01b8152600401613ca59190614a44565b608060405180830381865afa158015613cc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ce691906156f3565b9196509450925090508015613d1257858560405163015e34d960e61b81526004016108eb929190615013565b509250925092565b6040805160208082018352600091829052825180820184526001600160a01b0394909416825260cd90522060010154815290565b613d876040518060c001604052806000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6001600160a01b038616600090815260cc6020908152604080832080548251818502810185019093528083529192909190830182828015613df157602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311613dd3575b505083519394506000925050505b81811015613f25576000838281518110613e1b57613e1b614fa1565b602002602001015190506000806000613e34848e613c73565b92509250925060006040518060200160405280613e5087614264565b81525090506000613e6f604051806020016040528085815250836140c5565b90506000613e89613e83888e63ffffffff16565b836140c5565b9050613e9a81878d60200151614147565b60208c01528a51613eae9083908890614147565b8b5260408b0151613ec29084908790614147565b8b60400181815250508e6001600160a01b0316876001600160a01b031603613f0d57613ef3818f8d60600151614147565b60608c01819052613f079084908f90614147565b60608c01525b5050505050505080613f1e90614fcd565b9050613dff565b50600083606001518460400151613f3c919061502e565b90508084602001511115613f635760208401518190036080850152600060a0850152613f77565b600060808501526020840151810360a08501525b50505095945050505050565b6001600160a01b038116610882576040516342bcdf7f60e11b815260040160405180910390fd5b6001600160a01b038316600090815260cd60205260409020805460ff16613fe65783604051635a9a1eb960e11b81526004016108eb9190614a44565b6001600160a01b038316600090815260038201602052604090205460ff1661400e5750505050565b614017836116e8565b60006140298486856000613d1a613d4e565b60a0810151909150156117fe5760405163bb55fd2760e01b815260040160405180910390fd5b606580546001600160a01b031916905561088281614487565b61010754811161408a5760405162461bcd60e51b81526004016108eb9061578a565b6101078054908290556040517fc2d09fef144f7c8a86f71ea459f8fc17f675768eb1ae369cbd77fb31d467aafa906109559083908590614d58565b6040805160208101909152600081526040518060200160405280670de0b6b3a76400006140fa866000015186600001516144d9565b614104919061509c565b90529392505050565b60408051602081019091526000815260405180602001604052806141046141408660000151670de0b6b3a76400006144d9565b85516144e5565b6000806141548585614447565b90506141686141628261446f565b846144f1565b95945050505050565b61417c826007613ad7565b6001600160a01b038216600090815260cd60205260409020805460ff166141b85782604051635a9a1eb960e11b81526004016108eb9190614a44565b6001600160a01b038216600090815260038201602052604090205460ff16156141e057505050565b6001600160a01b0380831660008181526003840160209081526040808320805460ff1916600190811790915560cc835281842080549182018155845291832090910180549488166001600160a01b031990951685179055519192917f3ab23ab0d51cccc0c3085aec51f99228625aa1a922b3a8ca89a26b0f2027a1a59190a3505050565b60c95460405163fc57d4df60e01b815260009182916001600160a01b039091169063fc57d4df90614299908690600401614a44565b602060405180830381865afa1580156142b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142da9190615204565b90508060000361215e578260405162e52a7d60e41b81526004016108eb9190614a44565b336001600160a01b03821614610882578033604051634e9383fb60e11b81526004016108eb929190615013565b60ce5460005b8181101561439b57826001600160a01b031660ce828154811061435657614356614fa1565b6000918252602090912001546001600160a01b03160361438b578260405163d005ce4760e01b81526004016108eb9190614a44565b61439481614fcd565b9050614331565b505060ce805460018101825560008290527fd36cd1c74ef8d7326d8021b776c18fb5a5724b7f7bc93c2f42e43e10ef27d12a0180546001600160a01b0319166001600160a01b03841617905554613aa881613aac565b600054610100900460ff166144185760405162461bcd60e51b81526004016108eb906157e2565b611c166144fd565b600054610100900460ff166108795760405162461bcd60e51b81526004016108eb906157e2565b60408051602081019091526000815260405180602001604052806141048560000151856144d9565b805160009061215e90670de0b6b3a76400009061509c565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000613c4c8284615046565b6000613c4c828461509c565b6000613c4c828461502e565b600054610100900460ff166145245760405162461bcd60e51b81526004016108eb906157e2565b611c163361404f565b8015155b82525050565b6020810161215e828461452d565b60006001600160a01b03821661215e565b61455f81614545565b811461088257600080fd5b803561215e81614556565b60006020828403121561458a5761458a600080fd5b6000613c6b848461456a565b80614531565b6020810161215e8284614596565b8061455f565b803561215e816145aa565b6000602082840312156145d0576145d0600080fd5b6000613c6b84846145b0565b60008083601f8401126145f1576145f1600080fd5b50813567ffffffffffffffff81111561460c5761460c600080fd5b60208301915083602082028301111561462757614627600080fd5b9250929050565b6000806000806040858703121561464757614647600080fd5b843567ffffffffffffffff81111561466157614661600080fd5b61466d878288016145dc565b9450945050602085013567ffffffffffffffff81111561468f5761468f600080fd5b61469b878288016145dc565b95989497509550505050565b600080600080608085870312156146c0576146c0600080fd5b60006146cc878761456a565b94505060206146dd8782880161456a565b93505060406146ee8782880161456a565b92505060606146ff8782880161456a565b91505092959194509250565b80151561455f565b803561215e8161470b565b60008060008060006060868803121561473957614739600080fd5b853567ffffffffffffffff81111561475357614753600080fd5b61475f888289016145dc565b9550955050602086013567ffffffffffffffff81111561478157614781600080fd5b61478d888289016145dc565b935093505060406147a088828901614713565b9150509295509295909350565b60008083601f8401126147c2576147c2600080fd5b50813567ffffffffffffffff8111156147dd576147dd600080fd5b60208301915083606082028301111561462757614627600080fd5b60008060006040848603121561481057614810600080fd5b600061481c868661456a565b935050602084013567ffffffffffffffff81111561483c5761483c600080fd5b614848868287016147ad565b92509250509250925092565b600061215e82614545565b61455f81614854565b803561215e8161485f565b60006020828403121561488857614888600080fd5b6000613c6b8484614868565b600080600080608085870312156148ad576148ad600080fd5b60006148b9878761456a565b94505060206148ca8782880161456a565b93505060406148db878288016145b0565b92505060606146ff878288016145b0565b606081016148fa8286614596565b6149076020830185614596565b613c6b6040830184614596565b600061215e82614854565b61453181614914565b6020810161215e828461491f565b60008060006060848603121561494e5761494e600080fd5b600061495a8686614868565b935050602061496b868287016145b0565b925050604061497c868287016145b0565b9150509250925092565b6000614992838361491f565b505060200190565b60006149a4825190565b80845260209384019383018060005b838110156149d85781516149c78882614986565b9750602083019250506001016149b3565b509495945050505050565b60208082528101613c4c818461499a565b60008060008060808587031215614a0d57614a0d600080fd5b6000614a19878761456a565b9450506020614a2a8782880161456a565b93505060406148db8782880161456a565b61453181614545565b6020810161215e8284614a3b565b600080600060608486031215614a6a57614a6a600080fd5b6000614a76868661456a565b935050602061496b8682870161456a565b606081016148fa828661452d565b60008060408385031215614aab57614aab600080fd5b6000614ab7858561456a565b9250506020614ac885828601614868565b9150509250929050565b6000614adc825190565b80845260209384019383018060005b838110156149d8578151614aff8882614986565b975060208301925050600101614aeb565b60208082528101613c4c8184614ad2565b80516060830190614b328482614a3b565b506020820151614b456020850182614596565b5060408201516136826040850182614596565b6000614b648383614b21565b505060600190565b6000614b76825190565b80845260209384019383018060005b838110156149d8578151614b998882614b58565b975060208301925050600101614b85565b60208082528101613c4c8184614b6c565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff82111715614bf757614bf7614bbb565b6040525050565b6000614c0960405190565b9050614c158282614bd1565b919050565b600067ffffffffffffffff821115614c3457614c34614bbb565b5060209081020190565b6000614c51614c4c84614c1a565b614bfe565b83815290506020808201908402830185811115614c7057614c70600080fd5b835b81811015614c945780614c85888261456a565b84525060209283019201614c72565b5050509392505050565b600082601f830112614cb257614cb2600080fd5b8135613c6b848260208601614c3e565b600060208284031215614cd757614cd7600080fd5b813567ffffffffffffffff811115614cf157614cf1600080fd5b613c6b84828501614c9e565b60006149928383614596565b6000614d13825190565b80845260209384019383018060005b838110156149d8578151614d368882614cfd565b975060208301925050600101614d22565b60208082528101613c4c8184614d09565b60408101614d668285614596565b613c4c6020830184614596565b60008060408385031215614d8957614d89600080fd5b6000614d9585856145b0565b9250506020614ac88582860161456a565b60008060408385031215614dbc57614dbc600080fd5b6000614dc8858561456a565b9250506020614ac8858286016145b0565b6009811061088257600080fd5b803561215e81614dd9565b60008060408385031215614e0757614e07600080fd5b6000614e13858561456a565b9250506020614ac885828601614de6565b600080600080600060a08688031215614e3f57614e3f600080fd5b6000614e4b888861456a565b9550506020614e5c8882890161456a565b9450506040614e6d8882890161456a565b9350506060614e7e888289016145b0565b92505060806147a088828901614713565b60008060408385031215614ea557614ea5600080fd5b6000614d95858561456a565b602e81526000602082017f436c6f736520666163746f722067726561746572207468616e206d6178696d7581526d369031b637b9b2903330b1ba37b960911b602082015291505b5060400190565b6020808252810161215e81614eb1565b602e81526000602082017f436c6f736520666163746f7220736d616c6c6572207468616e206d696e696d7581526d369031b637b9b2903330b1ba37b960911b60208201529150614ef8565b6020808252810161215e81614f0f565b600d81526000602082016c1a5b9d985b1a59081a5b9c1d5d609a1b815291505b5060200190565b6020808252810161215e81614f6a565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198203614fe057614fe0614fb7565b5060010190565b805161215e8161485f565b60006020828403121561500757615007600080fd5b6000613c6b8484614fe7565b604081016150218285614a3b565b613c4c6020830184614a3b565b6000821982111561504157615041614fb7565b500190565b600081600019048311821515161561506057615060614fb7565b500290565b60006020828403121561507a5761507a600080fd5b6000613c6b8484614de6565b634e487b7160e01b600052601260045260246000fd5b6000826150ab576150ab615086565b500490565b60a081016150be8288614a3b565b6150cb6020830187614a3b565b6150d86040830186614596565b6150e5606083018561491f565b6150f2608083018461452d565b9695505050505050565b602881526000602082017f4e6f6e7a65726f20626f72726f772062616c616e6365206166746572206c69718152673ab4b230ba34b7b760c11b60208201529150614ef8565b6020808252810161215e816150fc565b6040810161515f828561491f565b613c4c602083018461491f565b600e81526000602082016d616c72656164792065786973747360901b81529150614f8a565b6020808252810161215e8161516c565b602b81526000602082017f6469737472696275746f7220616c72656164792065786973747320776974682081526a1d1a1a5cc81c995dd85c9960aa1b60208201529150614ef8565b6020808252810161215e816151a1565b805161215e816145aa565b60006020828403121561521957615219600080fd5b6000613c6b84846151f9565b606081016148fa828661491f565b602981526000602082017f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865208152683732bb9037bbb732b960b91b60208201529150614ef8565b6020808252810161215e81615233565b606081016152978286614a3b565b6149076020830185614a3b565b603181526000602082017f6c69717569646174696f6e20696e63656e746976652073686f756c64206265208152700cee4cac2e8cae440e8d0c2dc4062ca627607b1b60208201529150614ef8565b6020808252810161215e816152a4565b60408101614d668285614a3b565b805161215e8161470b565b60006020828403121561533057615330600080fd5b6000613c6b8484615310565b601b81526000602082017f436f6d7074726f6c6c65723a20496e76616c69642076546f6b656e000000000081529150614f8a565b6020808252810161215e8161533c565b601981526000602082017f696e76616c6964206e756d626572206f66206d61726b6574730000000000000081529150614f8a565b6020808252810161215e81615380565b602e81526000602082017f496e697469616c697a61626c653a20636f6e747261637420697320616c72656181526d191e481a5b9a5d1a585b1a5e995960921b60208201529150614ef8565b6020808252810161215e816153c4565b600060ff821661215e565b6145318161541f565b6020810161215e828461542a565b805160208301906136828482614596565b604081016154608285614a3b565b613c4c6020830184615441565b6060810161547b8286614a3b565b6154886020830185614a3b565b613c6b6040830184615441565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052600160045260246000fd5b6000828210156154d3576154d3614fb7565b500390565b634e487b7160e01b600052603160045260246000fd5b60208082527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657291019081526000614f8a565b6020808252810161215e816154ee565b602581526000602082017f696e76616c696420616365737320636f6e74726f6c206d616e61676572206164815264647265737360d81b60208201529150614ef8565b6020808252810161215e81615530565b60005b8381101561559d578181015183820152602001615585565b838111156136825750506000910152565b60006155b8825190565b8084526020840193506155cf818560208601615582565b601f01601f19169290920192915050565b604081016155ee8285614a3b565b8181036020830152613c6b81846155ae565b6060810161560e8286614a3b565b61561b6020830185614a3b565b818103604083015261416881846155ae565b6009811061088257610882615495565b80614c158161562d565b600061215e8261563d565b61453181615647565b604081016156698285614a3b565b613c4c6020830184615652565b602881526000602082017f63616e6e6f742070617573652061206d61726b65742074686174206973206e6f8152671d081b1a5cdd195960c21b60208201529150614ef8565b6020808252810161215e81615676565b606081016156d9828661491f565b6156e66020830185615652565b613c6b604083018461452d565b6000806000806080858703121561570c5761570c600080fd5b600061571887876151f9565b9450506020615729878288016151f9565b935050604061573a878288016151f9565b92505060606146ff878288016151f9565b602281526000602082017f436f6d7074726f6c6c65723a20496e76616c6964206d61784c6f6f70734c696d8152611a5d60f21b60208201529150614ef8565b6020808252810161215e8161574b565b602b81526000602082017f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206981526a6e697469616c697a696e6760a81b60208201529150614ef8565b6020808252810161215e8161579a56fe7365744d61726b6574426f72726f774361707328616464726573735b5d2c75696e743235365b5d297365744d696e4c6971756964617461626c65436f6c6c61746572616c2875696e7432353629736574436f6c6c61746572616c466163746f7228616464726573732c75696e743235362c75696e7432353629736574416374696f6e7350617573656428616464726573735b5d2c75696e743235365b5d2c626f6f6c297365744d61726b6574537570706c794361707328616464726573735b5d2c75696e743235365b5d29a2646970667358221220845aadaa3d56ab556d9bcc41172398736230617ca10efa26386e87e9ac74326b64736f6c634300080d0033",
|
|
1710
|
+
"linkReferences": {},
|
|
1711
|
+
"deployedLinkReferences": {}
|
|
1712
|
+
}
|