Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 418 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Trigger Change A... | 15465124 | 846 days ago | IN | 0 ETH | 0.0007573 | ||||
Execute Proposal | 15275610 | 876 days ago | IN | 0 ETH | 0.00116 | ||||
Execute Proposal | 14745835 | 963 days ago | IN | 0 ETH | 0.01141513 | ||||
Trigger Change A... | 14733170 | 965 days ago | IN | 0 ETH | 0.00408942 | ||||
Execute Proposal | 14626275 | 982 days ago | IN | 0 ETH | 0.01380862 | ||||
Trigger Change A... | 14584040 | 988 days ago | IN | 0 ETH | 0.00939052 | ||||
Execute Proposal | 14582970 | 989 days ago | IN | 0 ETH | 0.00625991 | ||||
Execute Proposal | 14542196 | 995 days ago | IN | 0 ETH | 0.01160004 | ||||
Execute Proposal | 14498351 | 1002 days ago | IN | 0 ETH | 0.00718048 | ||||
Execute Proposal | 14391645 | 1018 days ago | IN | 0 ETH | 0.01276004 | ||||
Execute Proposal | 14183727 | 1051 days ago | IN | 0 ETH | 0.00883752 | ||||
Trigger Change A... | 14066172 | 1069 days ago | IN | 0 ETH | 0.015146 | ||||
Trigger Change A... | 14001170 | 1079 days ago | IN | 0 ETH | 0.02908032 | ||||
Execute Proposal | 13872176 | 1099 days ago | IN | 0 ETH | 0.02184674 | ||||
Execute Proposal | 13807276 | 1109 days ago | IN | 0 ETH | 0.01527338 | ||||
Execute Proposal | 13682789 | 1129 days ago | IN | 0 ETH | 0.02061953 | ||||
Execute Proposal | 13466538 | 1163 days ago | IN | 0 ETH | 0.01139936 | ||||
Execute Proposal | 13419730 | 1170 days ago | IN | 0 ETH | 0.02154145 | ||||
Execute Proposal | 13317719 | 1186 days ago | IN | 0 ETH | 0.00994221 | ||||
Trigger Change A... | 13257014 | 1195 days ago | IN | 0 ETH | 0.01181388 | ||||
Execute Proposal | 13236046 | 1199 days ago | IN | 0 ETH | 0.01086501 | ||||
Execute Proposal | 13236046 | 1199 days ago | IN | 0 ETH | 0.01123101 | ||||
Execute Proposal | 13106455 | 1219 days ago | IN | 0 ETH | 0.00801517 | ||||
Execute Proposal | 13062984 | 1225 days ago | IN | 0 ETH | 0.0114067 | ||||
Trigger Change A... | 12975313 | 1239 days ago | IN | 0 ETH | 0.00560402 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
ProposalLogic
Compiler Version
v0.5.4+commit.9549d8ff
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-08-25 */ pragma solidity ^0.5.4; contract Account { // The implementation of the proxy address public implementation; // Logic manager address public manager; // The enabled static calls mapping (bytes4 => address) public enabled; event EnabledStaticCall(address indexed module, bytes4 indexed method); event Invoked(address indexed module, address indexed target, uint indexed value, bytes data); event Received(uint indexed value, address indexed sender, bytes data); event AccountInit(address indexed account); event ManagerChanged(address indexed mgr); modifier allowAuthorizedLogicContractsCallsOnly { require(LogicManager(manager).isAuthorized(msg.sender), "not an authorized logic"); _; } /** * @dev better to create and init account through AccountCreator.createAccount, which avoids race condition on Account.init */ function init(address _manager, address _accountStorage, address[] calldata _logics, address[] calldata _keys, address[] calldata _backups) external { require(manager == address(0), "Account: account already initialized"); require(_manager != address(0) && _accountStorage != address(0), "Account: address is null"); manager = _manager; for (uint i = 0; i < _logics.length; i++) { address logic = _logics[i]; require(LogicManager(manager).isAuthorized(logic), "must be authorized logic"); BaseLogic(logic).initAccount(this); } AccountStorage(_accountStorage).initAccount(this, _keys, _backups); emit AccountInit(address(this)); } /** * @dev Account calls an external target contract. * @param _target The target contract address. * @param _value ETH value of the call. * @param _data data of the call. */ function invoke(address _target, uint _value, bytes calldata _data) external allowAuthorizedLogicContractsCallsOnly returns (bytes memory _res) { bool success; // solium-disable-next-line security/no-call-value (success, _res) = _target.call.value(_value)(_data); require(success, "call to target failed"); emit Invoked(msg.sender, _target, _value, _data); } /** * @dev Enables a static method by specifying the target module to which the call must be delegated. * @param _module The target module. * @param _method The static method signature. */ function enableStaticCall(address _module, bytes4 _method) external allowAuthorizedLogicContractsCallsOnly { enabled[_method] = _module; emit EnabledStaticCall(_module, _method); } /** * @dev Reserved method to change account's manager. Normally it's unused. * Calling this method requires adding a new authorized logic. * @param _newMgr New logic manager. */ function changeManager(address _newMgr) external allowAuthorizedLogicContractsCallsOnly { require(_newMgr != address(0), "address cannot be null"); require(_newMgr != manager, "already changed"); manager = _newMgr; emit ManagerChanged(_newMgr); } /** * @dev This method makes it possible for the wallet to comply to interfaces expecting the wallet to * implement specific static methods. It delegates the static call to a target contract if the data corresponds * to an enabled method, or logs the call otherwise. */ function() external payable { if(msg.data.length > 0) { address logic = enabled[msg.sig]; if(logic == address(0)) { emit Received(msg.value, msg.sender, msg.data); } else { require(LogicManager(manager).isAuthorized(logic), "must be an authorized logic for static call"); // solium-disable-next-line security/no-inline-assembly assembly { calldatacopy(0, 0, calldatasize()) let result := staticcall(gas, logic, 0, calldatasize(), 0, 0) returndatacopy(0, 0, returndatasize()) switch result case 0 {revert(0, returndatasize())} default {return (0, returndatasize())} } } } } } contract Owned { // The owner address public owner; event OwnerChanged(address indexed _newOwner); /** * @dev Throws if the sender is not the owner. */ modifier onlyOwner { require(msg.sender == owner, "Must be owner"); _; } constructor() public { owner = msg.sender; } /** * @dev Lets the owner transfer ownership of the contract to a new owner. * @param _newOwner The new owner. */ function changeOwner(address _newOwner) external onlyOwner { require(_newOwner != address(0), "Address must not be null"); owner = _newOwner; emit OwnerChanged(_newOwner); } } contract LogicManager is Owned { event UpdateLogicSubmitted(address indexed logic, bool value); event UpdateLogicCancelled(address indexed logic); event UpdateLogicDone(address indexed logic, bool value); struct pending { bool value; //True: enable a new logic; False: disable an old logic. uint dueTime; //due time of a pending logic } // The authorized logic modules mapping (address => bool) public authorized; /* array index 0: AccountLogic address 1: TransferLogic address 2: DualsigsLogic address 3: DappLogic address 4: ... */ address[] public authorizedLogics; // updated logics and their due time of becoming effective mapping (address => pending) public pendingLogics; struct pendingTime { uint curPendingTime; //current pending time uint nextPendingTime; //new pending time uint dueTime; //due time of new pending time } pendingTime public pt; // how many authorized logics uint public logicCount; constructor(address[] memory _initialLogics, uint256 _pendingTime) public { for (uint i = 0; i < _initialLogics.length; i++) { address logic = _initialLogics[i]; authorized[logic] = true; logicCount += 1; } authorizedLogics = _initialLogics; pt.curPendingTime = _pendingTime; pt.nextPendingTime = _pendingTime; pt.dueTime = now; } /** * @dev Submit a new pending time. Called only by owner. * @param _pendingTime The new pending time. */ function submitUpdatePendingTime(uint _pendingTime) external onlyOwner { pt.nextPendingTime = _pendingTime; pt.dueTime = pt.curPendingTime + now; } /** * @dev Trigger updating pending time. */ function triggerUpdatePendingTime() external { require(pt.dueTime <= now, "too early to trigger updatePendingTime"); pt.curPendingTime = pt.nextPendingTime; } /** * @dev check if a logic contract is authorized. */ function isAuthorized(address _logic) external view returns (bool) { return authorized[_logic]; } /** * @dev get the authorized logic array. */ function getAuthorizedLogics() external view returns (address[] memory) { return authorizedLogics; } /** * @dev Submit a new logic. Called only by owner. * @param _logic The new logic contract address. * @param _value True: enable a new logic; False: disable an old logic. */ function submitUpdate(address _logic, bool _value) external onlyOwner { pending storage p = pendingLogics[_logic]; p.value = _value; p.dueTime = now + pt.curPendingTime; emit UpdateLogicSubmitted(_logic, _value); } /** * @dev Cancel a logic update. Called only by owner. */ function cancelUpdate(address _logic) external onlyOwner { delete pendingLogics[_logic]; emit UpdateLogicCancelled(_logic); } /** * @dev Trigger updating a new logic. * @param _logic The logic contract address. */ function triggerUpdateLogic(address _logic) external { pending memory p = pendingLogics[_logic]; require(p.dueTime > 0, "pending logic not found"); require(p.dueTime <= now, "too early to trigger updateLogic"); updateLogic(_logic, p.value); delete pendingLogics[_logic]; } /** * @dev To update an existing logic, for example authorizedLogics[1], * first a new logic is added to the array end, then copied to authorizedLogics[1], * then the last logic is dropped, done. */ function updateLogic(address _logic, bool _value) internal { if (authorized[_logic] != _value) { if(_value) { logicCount += 1; authorized[_logic] = true; authorizedLogics.push(_logic); } else { logicCount -= 1; require(logicCount > 0, "must have at least one logic module"); delete authorized[_logic]; removeLogic(_logic); } emit UpdateLogicDone(_logic, _value); } } function removeLogic(address _logic) internal { uint len = authorizedLogics.length; address lastLogic = authorizedLogics[len - 1]; if (_logic != lastLogic) { for (uint i = 0; i < len; i++) { if (_logic == authorizedLogics[i]) { authorizedLogics[i] = lastLogic; break; } } } authorizedLogics.length--; } } contract AccountStorage { modifier allowAccountCallsOnly(Account _account) { require(msg.sender == address(_account), "caller must be account"); _; } modifier allowAuthorizedLogicContractsCallsOnly(address payable _account) { require(LogicManager(Account(_account).manager()).isAuthorized(msg.sender), "not an authorized logic"); _; } struct KeyItem { address pubKey; uint256 status; } struct BackupAccount { address backup; uint256 effectiveDate;//means not effective until this timestamp uint256 expiryDate;//means effective until this timestamp } struct DelayItem { bytes32 hash; uint256 dueTime; } struct Proposal { bytes32 hash; address[] approval; } // account => quantity of operation keys (index >= 1) mapping (address => uint256) operationKeyCount; // account => index => KeyItem mapping (address => mapping(uint256 => KeyItem)) keyData; // account => index => backup account mapping (address => mapping(uint256 => BackupAccount)) backupData; /* account => actionId => DelayItem delayData applies to these 4 actions: changeAdminKey, changeAllOperationKeys, unfreeze, changeAdminKeyByBackup */ mapping (address => mapping(bytes4 => DelayItem)) delayData; // client account => proposer account => proposed actionId => Proposal mapping (address => mapping(address => mapping(bytes4 => Proposal))) proposalData; // *************** keyCount ********************** // function getOperationKeyCount(address _account) external view returns(uint256) { return operationKeyCount[_account]; } function increaseKeyCount(address payable _account) external allowAuthorizedLogicContractsCallsOnly(_account) { operationKeyCount[_account] = operationKeyCount[_account] + 1; } // *************** keyData ********************** // function getKeyData(address _account, uint256 _index) public view returns(address) { KeyItem memory item = keyData[_account][_index]; return item.pubKey; } function setKeyData(address payable _account, uint256 _index, address _key) external allowAuthorizedLogicContractsCallsOnly(_account) { require(_key != address(0), "invalid _key value"); KeyItem storage item = keyData[_account][_index]; item.pubKey = _key; } // *************** keyStatus ********************** // function getKeyStatus(address _account, uint256 _index) external view returns(uint256) { KeyItem memory item = keyData[_account][_index]; return item.status; } function setKeyStatus(address payable _account, uint256 _index, uint256 _status) external allowAuthorizedLogicContractsCallsOnly(_account) { KeyItem storage item = keyData[_account][_index]; item.status = _status; } // *************** backupData ********************** // function getBackupAddress(address _account, uint256 _index) external view returns(address) { BackupAccount memory b = backupData[_account][_index]; return b.backup; } function getBackupEffectiveDate(address _account, uint256 _index) external view returns(uint256) { BackupAccount memory b = backupData[_account][_index]; return b.effectiveDate; } function getBackupExpiryDate(address _account, uint256 _index) external view returns(uint256) { BackupAccount memory b = backupData[_account][_index]; return b.expiryDate; } function setBackup(address payable _account, uint256 _index, address _backup, uint256 _effective, uint256 _expiry) external allowAuthorizedLogicContractsCallsOnly(_account) { BackupAccount storage b = backupData[_account][_index]; b.backup = _backup; b.effectiveDate = _effective; b.expiryDate = _expiry; } function setBackupExpiryDate(address payable _account, uint256 _index, uint256 _expiry) external allowAuthorizedLogicContractsCallsOnly(_account) { BackupAccount storage b = backupData[_account][_index]; b.expiryDate = _expiry; } function clearBackupData(address payable _account, uint256 _index) external allowAuthorizedLogicContractsCallsOnly(_account) { delete backupData[_account][_index]; } // *************** delayData ********************** // function getDelayDataHash(address payable _account, bytes4 _actionId) external view returns(bytes32) { DelayItem memory item = delayData[_account][_actionId]; return item.hash; } function getDelayDataDueTime(address payable _account, bytes4 _actionId) external view returns(uint256) { DelayItem memory item = delayData[_account][_actionId]; return item.dueTime; } function setDelayData(address payable _account, bytes4 _actionId, bytes32 _hash, uint256 _dueTime) external allowAuthorizedLogicContractsCallsOnly(_account) { DelayItem storage item = delayData[_account][_actionId]; item.hash = _hash; item.dueTime = _dueTime; } function clearDelayData(address payable _account, bytes4 _actionId) external allowAuthorizedLogicContractsCallsOnly(_account) { delete delayData[_account][_actionId]; } // *************** proposalData ********************** // function getProposalDataHash(address _client, address _proposer, bytes4 _actionId) external view returns(bytes32) { Proposal memory p = proposalData[_client][_proposer][_actionId]; return p.hash; } function getProposalDataApproval(address _client, address _proposer, bytes4 _actionId) external view returns(address[] memory) { Proposal memory p = proposalData[_client][_proposer][_actionId]; return p.approval; } function setProposalData(address payable _client, address _proposer, bytes4 _actionId, bytes32 _hash, address _approvedBackup) external allowAuthorizedLogicContractsCallsOnly(_client) { Proposal storage p = proposalData[_client][_proposer][_actionId]; if (p.hash > 0) { if (p.hash == _hash) { for (uint256 i = 0; i < p.approval.length; i++) { require(p.approval[i] != _approvedBackup, "backup already exists"); } p.approval.push(_approvedBackup); } else { p.hash = _hash; p.approval.length = 0; } } else { p.hash = _hash; p.approval.push(_approvedBackup); } } function clearProposalData(address payable _client, address _proposer, bytes4 _actionId) external allowAuthorizedLogicContractsCallsOnly(_client) { delete proposalData[_client][_proposer][_actionId]; } // *************** init ********************** // /** * @dev Write account data into storage. * @param _account The Account. * @param _keys The initial keys. * @param _backups The initial backups. */ function initAccount(Account _account, address[] calldata _keys, address[] calldata _backups) external allowAccountCallsOnly(_account) { require(getKeyData(address(_account), 0) == address(0), "AccountStorage: account already initialized!"); require(_keys.length > 0, "empty keys array"); operationKeyCount[address(_account)] = _keys.length - 1; for (uint256 index = 0; index < _keys.length; index++) { address _key = _keys[index]; require(_key != address(0), "_key cannot be 0x0"); KeyItem storage item = keyData[address(_account)][index]; item.pubKey = _key; item.status = 0; } // avoid backup duplication if _backups.length > 1 // normally won't check duplication, in most cases only one initial backup when initialization if (_backups.length > 1) { address[] memory bkps = _backups; for (uint256 i = 0; i < _backups.length; i++) { for (uint256 j = 0; j < i; j++) { require(bkps[j] != _backups[i], "duplicate backup"); } } } for (uint256 index = 0; index < _backups.length; index++) { address _backup = _backups[index]; require(_backup != address(0), "backup cannot be 0x0"); require(_backup != address(_account), "cannot be backup of oneself"); backupData[address(_account)][index] = BackupAccount(_backup, now, uint256(-1)); } } } /* The MIT License (MIT) Copyright (c) 2016 Smart Contract Solutions, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, reverts on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } /** * @dev Integer division of two numbers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0); // Solidity only automatically asserts when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Subtracts two numbers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; } /** * @dev Adds two numbers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } /** * @dev Divides two numbers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0); return a % b; } /** * @dev Returns ceil(a / b). */ function ceil(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a / b; if(a % b == 0) { return c; } else { return c + 1; } } } contract BaseLogic { bytes constant internal SIGN_HASH_PREFIX = "\x19Ethereum Signed Message:\n32"; mapping (address => uint256) keyNonce; AccountStorage public accountStorage; modifier allowSelfCallsOnly() { require (msg.sender == address(this), "only internal call is allowed"); _; } modifier allowAccountCallsOnly(Account _account) { require(msg.sender == address(_account), "caller must be account"); _; } // *************** Constructor ********************** // constructor(AccountStorage _accountStorage) public { accountStorage = _accountStorage; } // *************** Initialization ********************* // function initAccount(Account _account) external allowAccountCallsOnly(_account){ } // *************** Getter ********************** // function getKeyNonce(address _key) external view returns(uint256) { return keyNonce[_key]; } // *************** Signature ********************** // function getSignHash(bytes memory _data, uint256 _nonce) internal view returns(bytes32) { // use EIP 191 // 0x1900 + this logic address + data + nonce of signing key bytes32 msgHash = keccak256(abi.encodePacked(byte(0x19), byte(0), address(this), _data, _nonce)); bytes32 prefixedHash = keccak256(abi.encodePacked(SIGN_HASH_PREFIX, msgHash)); return prefixedHash; } function verifySig(address _signingKey, bytes memory _signature, bytes32 _signHash) internal pure { require(_signingKey != address(0), "invalid signing key"); address recoveredAddr = recover(_signHash, _signature); require(recoveredAddr == _signingKey, "signature verification failed"); } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * NOTE: This call _does not revert_ if the signature is invalid, or * if the signer is otherwise unable to be retrieved. In those scenarios, * the zero address is returned. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise) * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { // Check the signature length if (signature.length != 65) { return (address(0)); } // Divide the signature in r, s and v variables bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. // solhint-disable-next-line no-inline-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return address(0); } if (v != 27 && v != 28) { return address(0); } // If the signature is valid (and not malleable), return the signer address return ecrecover(hash, v, r, s); } /* get signer address from data * @dev Gets an address encoded as the first argument in transaction data * @param b The byte array that should have an address as first argument * @returns a The address retrieved from the array */ function getSignerAddress(bytes memory _b) internal pure returns (address _a) { require(_b.length >= 36, "invalid bytes"); // solium-disable-next-line security/no-inline-assembly assembly { let mask := 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF _a := and(mask, mload(add(_b, 36))) // b = {length:32}{method sig:4}{address:32}{...} // 36 is the offset of the first parameter of the data, if encoded properly. // 32 bytes for the length of the bytes array, and the first 4 bytes for the function signature. // 32 bytes is the length of the bytes array!!!! } } // get method id, first 4 bytes of data function getMethodId(bytes memory _b) internal pure returns (bytes4 _a) { require(_b.length >= 4, "invalid data"); // solium-disable-next-line security/no-inline-assembly assembly { // 32 bytes is the length of the bytes array _a := mload(add(_b, 32)) } } function checkKeyStatus(address _account, uint256 _index) internal view { // check operation key status if (_index > 0) { require(accountStorage.getKeyStatus(_account, _index) != 1, "frozen key"); } } // _nonce is timestamp in microsecond(1/1000000 second) function checkAndUpdateNonce(address _key, uint256 _nonce) internal { require(_nonce > keyNonce[_key], "nonce too small"); require(SafeMath.div(_nonce, 1000000) <= now + 86400, "nonce too big"); // 86400=24*3600 seconds keyNonce[_key] = _nonce; } } contract AccountBaseLogic is BaseLogic { uint256 constant internal DELAY_CHANGE_ADMIN_KEY = 21 days; uint256 constant internal DELAY_CHANGE_OPERATION_KEY = 7 days; uint256 constant internal DELAY_UNFREEZE_KEY = 7 days; uint256 constant internal DELAY_CHANGE_BACKUP = 21 days; uint256 constant internal DELAY_CHANGE_ADMIN_KEY_BY_BACKUP = 30 days; uint256 constant internal MAX_DEFINED_BACKUP_INDEX = 5; // Equals to bytes4(keccak256("changeAdminKey(address,address)")) bytes4 internal constant CHANGE_ADMIN_KEY = 0xd595d935; // Equals to bytes4(keccak256("changeAdminKeyByBackup(address,address)")) bytes4 internal constant CHANGE_ADMIN_KEY_BY_BACKUP = 0xfdd54ba1; // Equals to bytes4(keccak256("changeAdminKeyWithoutDelay(address,address)")) bytes4 internal constant CHANGE_ADMIN_KEY_WITHOUT_DELAY = 0x441d2e50; // Equals to bytes4(keccak256("changeAllOperationKeysWithoutDelay(address,address[])")) bytes4 internal constant CHANGE_ALL_OPERATION_KEYS_WITHOUT_DELAY = 0x02064abc; // Equals to bytes4(keccak256("unfreezeWithoutDelay(address)")) bytes4 internal constant UNFREEZE_WITHOUT_DELAY = 0x69521650; // Equals to bytes4(keccak256("changeAllOperationKeys(address,address[])")) bytes4 internal constant CHANGE_ALL_OPERATION_KEYS = 0xd3b9d4d6; // Equals to bytes4(keccak256("unfreeze(address)")) bytes4 internal constant UNFREEZE = 0x45c8b1a6; // *************** Constructor ********************** // constructor(AccountStorage _accountStorage) BaseLogic(_accountStorage) public { } // *************** Functions ********************** // /** * @dev Check if a certain account is another's backup. */ function checkRelation(address _client, address _backup) internal view { require(_backup != address(0), "backup cannot be 0x0"); require(_client != address(0), "client cannot be 0x0"); bool isBackup; for (uint256 i = 0; i <= MAX_DEFINED_BACKUP_INDEX; i++) { address backup = accountStorage.getBackupAddress(_client, i); uint256 effectiveDate = accountStorage.getBackupEffectiveDate(_client, i); uint256 expiryDate = accountStorage.getBackupExpiryDate(_client, i); // backup match and effective and not expired if (_backup == backup && isEffectiveBackup(effectiveDate, expiryDate)) { isBackup = true; break; } } require(isBackup, "backup does not exist in list"); } function isEffectiveBackup(uint256 _effectiveDate, uint256 _expiryDate) internal view returns(bool) { return (_effectiveDate <= now) && (_expiryDate > now); } function clearRelatedProposalAfterAdminKeyChanged(address payable _client) internal { //clear any existing proposal proposed by both, proposer is _client accountStorage.clearProposalData(_client, _client, CHANGE_ADMIN_KEY_WITHOUT_DELAY); accountStorage.clearProposalData(_client, _client, CHANGE_ALL_OPERATION_KEYS_WITHOUT_DELAY); accountStorage.clearProposalData(_client, _client, UNFREEZE_WITHOUT_DELAY); //clear any existing proposal proposed by backup, proposer is one of the backups for (uint256 i = 0; i <= MAX_DEFINED_BACKUP_INDEX; i++) { address backup = accountStorage.getBackupAddress(_client, i); if (backup != address(0)) { accountStorage.clearProposalData(_client, backup, CHANGE_ADMIN_KEY_BY_BACKUP); } } } } contract ProposalLogic is AccountBaseLogic { event ProposalExecuted(address indexed client, address indexed proposer, bytes functionData); event ChangeAdminKeyByBackup(address indexed account, address indexed pkNew); event ChangeAdminKeyByBackupTriggered(address indexed account, address pkNew); event ChangeAdminKeyWithoutDelay(address indexed account, address pkNew); event ChangeAllOperationKeysWithoutDelay(address indexed account, address[] pks); event UnfreezeWithoutDelay(address indexed account); // *************** Constructor ********************** // constructor(AccountStorage _accountStorage) public AccountBaseLogic(_accountStorage) { } // *************** Proposal ********************** // /** * @dev Execute a proposal. No sig check is required. * There are 4 proposed actions called from 'executeProposal': AccountLogic: changeAdminKeyByBackup DualsigsLogic: changeAdminKeyWithoutDelay, changeAllOperationKeysWithoutDelay, unfreezeWithoutDelay * @param _client client address * @param _proposer If 'proposeAsBackup', proposer is backup; if 'proposeByBoth', proposer is client. * @param _functionData The proposed action data. */ function executeProposal(address payable _client, address _proposer, bytes calldata _functionData) external { //make sure the proposed action data is client's require(getSignerAddress(_functionData) == _client, "invalid _client"); bytes4 proposedActionId = getMethodId(_functionData); checkProposedAction(proposedActionId); bytes32 functionHash = keccak256(_functionData); checkApproval(_client, _proposer, proposedActionId, functionHash); // call functions with/without delay // solium-disable-next-line security/no-low-level-calls (bool success,) = address(this).call(_functionData); require(success, "executeProposal failed"); accountStorage.clearProposalData(_client, _proposer, proposedActionId); emit ProposalExecuted(_client, _proposer, _functionData); } function checkProposedAction(bytes4 actionId) internal pure { require(actionId == CHANGE_ADMIN_KEY_BY_BACKUP || actionId == CHANGE_ADMIN_KEY_WITHOUT_DELAY || actionId == CHANGE_ALL_OPERATION_KEYS_WITHOUT_DELAY || actionId == UNFREEZE_WITHOUT_DELAY, "invalid proposed action"); } /** * @dev Check if a proposal is approved by majority. * @param _client client address * @param _proposer If 'proposeAsBackup', proposer is backup; if 'proposeByBoth', proposer is client. * @param _proposedActionId The Proposed action method id. * @param _functionHash The proposed action data. */ function checkApproval(address _client, address _proposer, bytes4 _proposedActionId, bytes32 _functionHash) internal view { if (_proposer != _client) { checkRelation(_client, _proposer); } bytes32 hash = accountStorage.getProposalDataHash(_client, _proposer, _proposedActionId); require(hash == _functionHash, "proposal hash unmatch"); uint256 backupCount; uint256 approvedCount; address[] memory approved = accountStorage.getProposalDataApproval(_client, _proposer, _proposedActionId); require(approved.length > 0, "no approval"); // iterate backup list for (uint256 i = 0; i <= MAX_DEFINED_BACKUP_INDEX; i++) { address backup = accountStorage.getBackupAddress(_client, i); uint256 effectiveDate = accountStorage.getBackupEffectiveDate(_client, i); uint256 expiryDate = accountStorage.getBackupExpiryDate(_client, i); if (backup != address(0) && isEffectiveBackup(effectiveDate, expiryDate)) { // count how many backups in backup list backupCount += 1; // iterate approved array for (uint256 k = 0; k < approved.length; k++) { if (backup == approved[k]) { // count how many approved backups still exist in backup list approvedCount += 1; } } } } require(backupCount > 0, "no backup in list"); uint256 threshold = SafeMath.ceil(backupCount*6, 10); require(approvedCount >= threshold, "must have 60% approval at least"); } // *************** change admin key by backup ********************** // // called from 'executeProposal' // changing admin key by backup's proposal requires 30 days delay function changeAdminKeyByBackup(address payable _account, address _pkNew) external allowSelfCallsOnly { require(_pkNew != address(0), "0x0 is invalid"); address pk = accountStorage.getKeyData(_account, 0); require(pk != _pkNew, "identical admin key exists"); require(accountStorage.getDelayDataHash(_account, CHANGE_ADMIN_KEY_BY_BACKUP) == 0, "delay data already exists"); bytes32 hash = keccak256(abi.encodePacked('changeAdminKeyByBackup', _account, _pkNew)); accountStorage.setDelayData(_account, CHANGE_ADMIN_KEY_BY_BACKUP, hash, now + DELAY_CHANGE_ADMIN_KEY_BY_BACKUP); emit ChangeAdminKeyByBackup(_account, _pkNew); } // called from external function triggerChangeAdminKeyByBackup(address payable _account, address _pkNew) external { bytes32 hash = keccak256(abi.encodePacked('changeAdminKeyByBackup', _account, _pkNew)); require(hash == accountStorage.getDelayDataHash(_account, CHANGE_ADMIN_KEY_BY_BACKUP), "delay hash unmatch"); uint256 due = accountStorage.getDelayDataDueTime(_account, CHANGE_ADMIN_KEY_BY_BACKUP); require(due > 0, "delay data not found"); require(due <= now, "too early to trigger changeAdminKeyByBackup"); accountStorage.setKeyData(_account, 0, _pkNew); //clear any existing related delay data and proposal accountStorage.clearDelayData(_account, CHANGE_ADMIN_KEY_BY_BACKUP); accountStorage.clearDelayData(_account, CHANGE_ADMIN_KEY); clearRelatedProposalAfterAdminKeyChanged(_account); emit ChangeAdminKeyByBackupTriggered(_account, _pkNew); } // *************** change admin key immediately ********************** // // called from 'executeProposal' function changeAdminKeyWithoutDelay(address payable _account, address _pkNew) external allowSelfCallsOnly { address pk = accountStorage.getKeyData(_account, 0); require(pk != _pkNew, "identical admin key already exists"); require(_pkNew != address(0), "0x0 is invalid"); accountStorage.setKeyData(_account, 0, _pkNew); //clear any existing related delay data and proposal accountStorage.clearDelayData(_account, CHANGE_ADMIN_KEY); accountStorage.clearDelayData(_account, CHANGE_ADMIN_KEY_BY_BACKUP); accountStorage.clearDelayData(_account, CHANGE_ALL_OPERATION_KEYS); accountStorage.clearDelayData(_account, UNFREEZE); clearRelatedProposalAfterAdminKeyChanged(_account); emit ChangeAdminKeyWithoutDelay(_account, _pkNew); } // *************** change all operation keys immediately ********************** // // called from 'executeProposal' function changeAllOperationKeysWithoutDelay(address payable _account, address[] calldata _pks) external allowSelfCallsOnly { uint256 keyCount = accountStorage.getOperationKeyCount(_account); require(_pks.length == keyCount, "invalid number of keys"); for (uint256 i = 0; i < keyCount; i++) { address pk = _pks[i]; require(pk != address(0), "0x0 is invalid"); accountStorage.setKeyData(_account, i+1, pk); accountStorage.setKeyStatus(_account, i+1, 0); } emit ChangeAllOperationKeysWithoutDelay(_account, _pks); } // *************** unfreeze all operation keys immediately ********************** // // called from 'executeProposal' function unfreezeWithoutDelay(address payable _account) external allowSelfCallsOnly { for (uint256 i = 0; i < accountStorage.getOperationKeyCount(_account); i++) { if (accountStorage.getKeyStatus(_account, i+1) == 1) { accountStorage.setKeyStatus(_account, i+1, 0); } } emit UnfreezeWithoutDelay(_account); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[{"name":"_account","type":"address"},{"name":"_pks","type":"address[]"}],"name":"changeAllOperationKeysWithoutDelay","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_key","type":"address"}],"name":"getKeyNonce","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"},{"name":"_pkNew","type":"address"}],"name":"changeAdminKeyWithoutDelay","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"initAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"unfreezeWithoutDelay","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"},{"name":"_pkNew","type":"address"}],"name":"triggerChangeAdminKeyByBackup","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"accountStorage","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_client","type":"address"},{"name":"_proposer","type":"address"},{"name":"_functionData","type":"bytes"}],"name":"executeProposal","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"},{"name":"_pkNew","type":"address"}],"name":"changeAdminKeyByBackup","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_accountStorage","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"client","type":"address"},{"indexed":true,"name":"proposer","type":"address"},{"indexed":false,"name":"functionData","type":"bytes"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"},{"indexed":true,"name":"pkNew","type":"address"}],"name":"ChangeAdminKeyByBackup","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"},{"indexed":false,"name":"pkNew","type":"address"}],"name":"ChangeAdminKeyByBackupTriggered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"},{"indexed":false,"name":"pkNew","type":"address"}],"name":"ChangeAdminKeyWithoutDelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"},{"indexed":false,"name":"pks","type":"address[]"}],"name":"ChangeAllOperationKeysWithoutDelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"UnfreezeWithoutDelay","type":"event"}]
Contract Creation Code
608060405234801561001057600080fd5b5060405160208061284b8339810180604052602081101561003057600080fd5b505160018054600160a060020a031916600160a060020a039092169190911790556127eb806100606000396000f3fe608060405234801561001057600080fd5b50600436106100b0576000357c010000000000000000000000000000000000000000000000000000000090048063695216501161008357806369521650146101c3578063c23c1e18146101e9578063c281fb7214610217578063cc5b28731461023b578063fdd54ba1146102c4576100b0565b806302064abc146100b55780630978ec6714610137578063441d2e501461016f5780635a6c41581461019d575b600080fd5b610135600480360360408110156100cb57600080fd5b600160a060020a0382351691908101906040810160208201356401000000008111156100f657600080fd5b82018360208201111561010857600080fd5b8035906020019184602083028401116401000000008311171561012a57600080fd5b5090925090506102f2565b005b61015d6004803603602081101561014d57600080fd5b5035600160a060020a031661065e565b60408051918252519081900360200190f35b6101356004803603604081101561018557600080fd5b50600160a060020a0381358116916020013516610679565b610135600480360360208110156101b357600080fd5b5035600160a060020a0316610b0a565b610135600480360360208110156101d957600080fd5b5035600160a060020a0316610b6f565b610135600480360360408110156101ff57600080fd5b50600160a060020a0381358116916020013516610dc3565b61021f611246565b60408051600160a060020a039092168252519081900360200190f35b6101356004803603606081101561025157600080fd5b600160a060020a03823581169260208101359091169181019060608101604082013564010000000081111561028557600080fd5b82018360208201111561029757600080fd5b803590602001918460018302840111640100000000831117156102b957600080fd5b509092509050611255565b610135600480360360408110156102da57600080fd5b50600160a060020a0381358116916020013516611533565b333014610337576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020612753833981519152604482015290519081900360640190fd5b600154604080517fd01e547f000000000000000000000000000000000000000000000000000000008152600160a060020a0386811660048301529151600093929092169163d01e547f91602480820192602092909190829003018186803b1580156103a157600080fd5b505afa1580156103b5573d6000803e3d6000fd5b505050506040513d60208110156103cb57600080fd5b50519050818114610426576040805160e560020a62461bcd02815260206004820152601660248201527f696e76616c6964206e756d626572206f66206b65797300000000000000000000604482015290519081900360640190fd5b60005b818110156105ea57600084848381811061043f57fe5b90506020020135600160a060020a031690506000600160a060020a031681600160a060020a0316141515156104be576040805160e560020a62461bcd02815260206004820152600e60248201527f30783020697320696e76616c6964000000000000000000000000000000000000604482015290519081900360640190fd5b60018054604080517f52d43b46000000000000000000000000000000000000000000000000000000008152600160a060020a038a8116600483015293860160248201528484166044820152905192909116916352d43b469160648082019260009290919082900301818387803b15801561053757600080fd5b505af115801561054b573d6000803e3d6000fd5b505060018054604080517fe4d1ba07000000000000000000000000000000000000000000000000000000008152600160a060020a038c811660048301529388016024820152600060448201819052915193909216945063e4d1ba079350606480830193919282900301818387803b1580156105c557600080fd5b505af11580156105d9573d6000803e3d6000fd5b505060019093019250610429915050565b5083600160a060020a03167f5cd26c2761465bf0456c21828f162f4f0608a3519071a33f8b1af24a800df3ff848460405180806020018281038252848482818152602001925060200280828437600083820152604051601f909101601f19169092018290039550909350505050a250505050565b600160a060020a031660009081526020819052604090205490565b3330146106be576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020612753833981519152604482015290519081900360640190fd5b600154604080517f8d431198000000000000000000000000000000000000000000000000000000008152600160a060020a038581166004830152600060248301819052925192931691638d43119891604480820192602092909190829003018186803b15801561072d57600080fd5b505afa158015610741573d6000803e3d6000fd5b505050506040513d602081101561075757600080fd5b50519050600160a060020a0380821690831614156107a95760405160e560020a62461bcd0281526004018080602001828103825260228152602001806127736022913960400191505060405180910390fd5b600160a060020a0382161515610809576040805160e560020a62461bcd02815260206004820152600e60248201527f30783020697320696e76616c6964000000000000000000000000000000000000604482015290519081900360640190fd5b600154604080517f52d43b46000000000000000000000000000000000000000000000000000000008152600160a060020a038681166004830152600060248301819052868216604484015292519316926352d43b469260648084019391929182900301818387803b15801561087d57600080fd5b505af1158015610891573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a0388811660048301527fd595d9350000000000000000000000000000000000000000000000000000000060248301529151919092169350638f2db5069250604480830192600092919082900301818387803b15801561090c57600080fd5b505af1158015610920573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a03888116600483015260e060020a63fdd54ba10260248301529151919092169350638f2db5069250604480830192600092919082900301818387803b15801561098557600080fd5b505af1158015610999573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a0388811660048301527fd3b9d4d60000000000000000000000000000000000000000000000000000000060248301529151919092169350638f2db5069250604480830192600092919082900301818387803b158015610a1457600080fd5b505af1158015610a28573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a0388811660048301527f45c8b1a60000000000000000000000000000000000000000000000000000000060248301529151919092169350638f2db5069250604480830192600092919082900301818387803b158015610aa357600080fd5b505af1158015610ab7573d6000803e3d6000fd5b50505050610ac483611912565b60408051600160a060020a0384811682529151918516917f8cc8d3b34686deb5d35ba8ba3ba412bc0f7413fed94b39f3f43c5d5a8faa848c9181900360200190a2505050565b8033600160a060020a03821614610b6b576040805160e560020a62461bcd02815260206004820152601660248201527f63616c6c6572206d757374206265206163636f756e7400000000000000000000604482015290519081900360640190fd5b5050565b333014610bb4576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020612753833981519152604482015290519081900360640190fd5b60005b600154604080517fd01e547f000000000000000000000000000000000000000000000000000000008152600160a060020a0385811660048301529151919092169163d01e547f916024808301926020929190829003018186803b158015610c1d57600080fd5b505afa158015610c31573d6000803e3d6000fd5b505050506040513d6020811015610c4757600080fd5b5051811015610d8b5760018054604080517f43090116000000000000000000000000000000000000000000000000000000008152600160a060020a038681166004830152938501602482015290519290911691634309011691604480820192602092909190829003018186803b158015610cc057600080fd5b505afa158015610cd4573d6000803e3d6000fd5b505050506040513d6020811015610cea57600080fd5b505160011415610d835760018054604080517fe4d1ba07000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015293850160248201526000604482018190529151939092169263e4d1ba0792606480820193929182900301818387803b158015610d6a57600080fd5b505af1158015610d7e573d6000803e3d6000fd5b505050505b600101610bb7565b50604051600160a060020a038216907f1533d4715116c43f30229b3671e5e1e13fbfaaaa6223f2fb76c4f6695110eac990600090a250565b604080517f6368616e676541646d696e4b657942794261636b7570000000000000000000006020808301919091526c01000000000000000000000000600160a060020a038087168281026036860152818716909202604a8501528451603e818603018152605e85018087528151918501919091206001547fe1a9af0600000000000000000000000000000000000000000000000000000000909252606286019390935260e060020a63fdd54ba102608286015294519194169263e1a9af069260a2808301939192829003018186803b158015610e9e57600080fd5b505afa158015610eb2573d6000803e3d6000fd5b505050506040513d6020811015610ec857600080fd5b50518114610f20576040805160e560020a62461bcd02815260206004820152601260248201527f64656c6179206861736820756e6d617463680000000000000000000000000000604482015290519081900360640190fd5b600154604080517f26c966f6000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015260e060020a63fdd54ba1026024830152915160009392909216916326c966f691604480820192602092909190829003018186803b158015610f9a57600080fd5b505afa158015610fae573d6000803e3d6000fd5b505050506040513d6020811015610fc457600080fd5b5051905060008111611020576040805160e560020a62461bcd02815260206004820152601460248201527f64656c61792064617461206e6f7420666f756e64000000000000000000000000604482015290519081900360640190fd5b428111156110625760405160e560020a62461bcd02815260040180806020018281038252602b815260200180612795602b913960400191505060405180910390fd5b600154604080517f52d43b46000000000000000000000000000000000000000000000000000000008152600160a060020a038781166004830152600060248301819052878216604484015292519316926352d43b469260648084019391929182900301818387803b1580156110d657600080fd5b505af11580156110ea573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a03898116600483015260e060020a63fdd54ba10260248301529151919092169350638f2db5069250604480830192600092919082900301818387803b15801561114f57600080fd5b505af1158015611163573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a0389811660048301527fd595d9350000000000000000000000000000000000000000000000000000000060248301529151919092169350638f2db5069250604480830192600092919082900301818387803b1580156111de57600080fd5b505af11580156111f2573d6000803e3d6000fd5b505050506111ff84611912565b60408051600160a060020a0385811682529151918616917fb540f78026e6371b2251d8cf2cb152cc75ae25b70e12157914013ae96dae9ac29181900360200190a250505050565b600154600160a060020a031681565b83600160a060020a031661129e83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611c1992505050565b600160a060020a0316146112fc576040805160e560020a62461bcd02815260206004820152600f60248201527f696e76616c6964205f636c69656e740000000000000000000000000000000000604482015290519081900360640190fd5b600061133d83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611c8892505050565b905061134881611cee565b600083836040518083838082843780830192505050925050506040518091039020905061137786868484611dfa565b600030600160a060020a03168585604051808383808284376040519201945060009350909150508083038183865af19150503d80600081146113d5576040519150601f19603f3d011682016040523d82523d6000602084013e6113da565b606091505b50509050801515611435576040805160e560020a62461bcd02815260206004820152601660248201527f6578656375746550726f706f73616c206661696c656400000000000000000000604482015290519081900360640190fd5b6001546040805160e260020a630870cb27028152600160a060020a038a811660048301528981166024830152600160e060020a031987166044830152915191909216916321c32c9c91606480830192600092919082900301818387803b15801561149e57600080fd5b505af11580156114b2573d6000803e3d6000fd5b5050505085600160a060020a031687600160a060020a03167f252a9bd6833c7a9f17515f224bb60795a2af85f62afce5d54e5832754fa59670878760405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a350505050505050565b333014611578576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020612753833981519152604482015290519081900360640190fd5b600160a060020a03811615156115d8576040805160e560020a62461bcd02815260206004820152600e60248201527f30783020697320696e76616c6964000000000000000000000000000000000000604482015290519081900360640190fd5b600154604080517f8d431198000000000000000000000000000000000000000000000000000000008152600160a060020a038581166004830152600060248301819052925192931691638d43119891604480820192602092909190829003018186803b15801561164757600080fd5b505afa15801561165b573d6000803e3d6000fd5b505050506040513d602081101561167157600080fd5b50519050600160a060020a0380821690831614156116d9576040805160e560020a62461bcd02815260206004820152601a60248201527f6964656e746963616c2061646d696e206b657920657869737473000000000000604482015290519081900360640190fd5b600154604080517fe1a9af06000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015260e060020a63fdd54ba10260248301529151919092169163e1a9af06916044808301926020929190829003018186803b15801561174f57600080fd5b505afa158015611763573d6000803e3d6000fd5b505050506040513d602081101561177957600080fd5b5051156117d0576040805160e560020a62461bcd02815260206004820152601960248201527f64656c6179206461746120616c72656164792065786973747300000000000000604482015290519081900360640190fd5b604080517f6368616e676541646d696e4b657942794261636b757000000000000000000000602080830191909152600160a060020a038681166c01000000000000000000000000818102603686015287831602604a8501528451808503603e018152605e8501808752815191909401206001547fb2a9651d00000000000000000000000000000000000000000000000000000000909452606285019190915260e060020a63fdd54ba102608285015260a2840181905262278d00420160c2850152935191169163b2a9651d9160e280830192600092919082900301818387803b1580156118bc57600080fd5b505af11580156118d0573d6000803e3d6000fd5b5050604051600160a060020a038087169350871691507fb05a5941d647df6ad001146b7fc8d9ff3ae34f83fd282c6a6189ef5f5be6442e90600090a350505050565b6001546040805160e260020a630870cb27028152600160a060020a038481166004830181905260248301527f441d2e50000000000000000000000000000000000000000000000000000000006044830152915191909216916321c32c9c91606480830192600092919082900301818387803b15801561199057600080fd5b505af11580156119a4573d6000803e3d6000fd5b50506001546040805160e260020a630870cb27028152600160a060020a038681166004830181905260248301527f02064abc00000000000000000000000000000000000000000000000000000000604483015291519190921693506321c32c9c9250606480830192600092919082900301818387803b158015611a2657600080fd5b505af1158015611a3a573d6000803e3d6000fd5b50506001546040805160e260020a630870cb27028152600160a060020a038681166004830181905260248301527f6952165000000000000000000000000000000000000000000000000000000000604483015291519190921693506321c32c9c9250606480830192600092919082900301818387803b158015611abc57600080fd5b505af1158015611ad0573d6000803e3d6000fd5b506000925050505b60058111610b6b57600154604080517fcb0cb76a000000000000000000000000000000000000000000000000000000008152600160a060020a038581166004830152602482018590529151600093929092169163cb0cb76a91604480820192602092909190829003018186803b158015611b5157600080fd5b505afa158015611b65573d6000803e3d6000fd5b505050506040513d6020811015611b7b57600080fd5b50519050600160a060020a03811615611c10576001546040805160e260020a630870cb27028152600160a060020a038681166004830152848116602483015260e060020a63fdd54ba1026044830152915191909216916321c32c9c91606480830192600092919082900301818387803b158015611bf757600080fd5b505af1158015611c0b573d6000803e3d6000fd5b505050505b50600101611ad8565b60006024825110151515611c77576040805160e560020a62461bcd02815260206004820152600d60248201527f696e76616c696420627974657300000000000000000000000000000000000000604482015290519081900360640190fd5b5060240151600160a060020a031690565b60006004825110151515611ce6576040805160e560020a62461bcd02815260206004820152600c60248201527f696e76616c696420646174610000000000000000000000000000000000000000604482015290519081900360640190fd5b506020015190565b600160e060020a0319811660e060020a63fdd54ba1021480611d395750600160e060020a031981167f441d2e5000000000000000000000000000000000000000000000000000000000145b80611d6d5750600160e060020a031981167f02064abc00000000000000000000000000000000000000000000000000000000145b80611da15750600160e060020a031981167f6952165000000000000000000000000000000000000000000000000000000000145b1515611df7576040805160e560020a62461bcd02815260206004820152601760248201527f696e76616c69642070726f706f73656420616374696f6e000000000000000000604482015290519081900360640190fd5b50565b600160a060020a0383811690851614611e1757611e1784846123c2565b600154604080517f60791b88000000000000000000000000000000000000000000000000000000008152600160a060020a0387811660048301528681166024830152600160e060020a031986166044830152915160009392909216916360791b8891606480820192602092909190829003018186803b158015611e9957600080fd5b505afa158015611ead573d6000803e3d6000fd5b505050506040513d6020811015611ec357600080fd5b50519050818114611f1e576040805160e560020a62461bcd02815260206004820152601560248201527f70726f706f73616c206861736820756e6d617463680000000000000000000000604482015290519081900360640190fd5b600154604080517f70c460f8000000000000000000000000000000000000000000000000000000008152600160a060020a0388811660048301528781166024830152600160e060020a031987166044830152915160009384936060939116916370c460f8916064808201928792909190829003018186803b158015611fa257600080fd5b505afa158015611fb6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611fdf57600080fd5b810190808051640100000000811115611ff757600080fd5b8201602081018481111561200a57600080fd5b815185602082028301116401000000008211171561202757600080fd5b50508051909450600010925061208a915050576040805160e560020a62461bcd02815260206004820152600b60248201527f6e6f20617070726f76616c000000000000000000000000000000000000000000604482015290519081900360640190fd5b60005b600581116122f457600154604080517fcb0cb76a000000000000000000000000000000000000000000000000000000008152600160a060020a038c81166004830152602482018590529151600093929092169163cb0cb76a91604480820192602092909190829003018186803b15801561210657600080fd5b505afa15801561211a573d6000803e3d6000fd5b505050506040513d602081101561213057600080fd5b5051600154604080517fdb80821d000000000000000000000000000000000000000000000000000000008152600160a060020a038e81166004830152602482018790529151939450600093919092169163db80821d916044808301926020929190829003018186803b1580156121a557600080fd5b505afa1580156121b9573d6000803e3d6000fd5b505050506040513d60208110156121cf57600080fd5b5051600154604080517f8e72cbae000000000000000000000000000000000000000000000000000000008152600160a060020a038f811660048301526024820188905291519394506000939190921691638e72cbae916044808301926020929190829003018186803b15801561224457600080fd5b505afa158015612258573d6000803e3d6000fd5b505050506040513d602081101561226e57600080fd5b50519050600160a060020a0383161580159061228f575061228f8282612704565b156122e9576001969096019560005b85518110156122e75785818151811015156122b557fe5b90602001906020020151600160a060020a031684600160a060020a031614156122df576001870196505b60010161229e565b505b50505060010161208d565b506000831161234d576040805160e560020a62461bcd02815260206004820152601160248201527f6e6f206261636b757020696e206c697374000000000000000000000000000000604482015290519081900360640190fd5b600061235d84600602600a61271e565b9050808310156123b7576040805160e560020a62461bcd02815260206004820152601f60248201527f6d75737420686176652036302520617070726f76616c206174206c6561737400604482015290519081900360640190fd5b505050505050505050565b600160a060020a0381161515612422576040805160e560020a62461bcd02815260206004820152601460248201527f6261636b75702063616e6e6f7420626520307830000000000000000000000000604482015290519081900360640190fd5b600160a060020a0382161515612482576040805160e560020a62461bcd02815260206004820152601460248201527f636c69656e742063616e6e6f7420626520307830000000000000000000000000604482015290519081900360640190fd5b6000805b600581116126a757600154604080517fcb0cb76a000000000000000000000000000000000000000000000000000000008152600160a060020a038781166004830152602482018590529151600093929092169163cb0cb76a91604480820192602092909190829003018186803b1580156124ff57600080fd5b505afa158015612513573d6000803e3d6000fd5b505050506040513d602081101561252957600080fd5b5051600154604080517fdb80821d000000000000000000000000000000000000000000000000000000008152600160a060020a038981166004830152602482018790529151939450600093919092169163db80821d916044808301926020929190829003018186803b15801561259e57600080fd5b505afa1580156125b2573d6000803e3d6000fd5b505050506040513d60208110156125c857600080fd5b5051600154604080517f8e72cbae000000000000000000000000000000000000000000000000000000008152600160a060020a038a811660048301526024820188905291519394506000939190921691638e72cbae916044808301926020929190829003018186803b15801561263d57600080fd5b505afa158015612651573d6000803e3d6000fd5b505050506040513d602081101561266757600080fd5b50519050600160a060020a0386811690841614801561268b575061268b8282612704565b1561269c57600194505050506126a7565b505050600101612486565b508015156126ff576040805160e560020a62461bcd02815260206004820152601d60248201527f6261636b757020646f6573206e6f7420657869737420696e206c697374000000604482015290519081900360640190fd5b505050565b600042831115801561271557504282115b90505b92915050565b600080828481151561272c57fe5b049050828481151561273a57fe5b061515612748579050612718565b600101905061271856fe6f6e6c7920696e7465726e616c2063616c6c20697320616c6c6f7765640000006964656e746963616c2061646d696e206b657920616c726561647920657869737473746f6f206561726c7920746f2074726967676572206368616e676541646d696e4b657942794261636b7570a165627a7a72305820373b7d5f63f68bcd29f39816c7ea58a01965ee7c2a63b38eaf17a0b9aa80a5c70029000000000000000000000000adc92d1fd878580579716d944ef3460e241604b7
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100b0576000357c010000000000000000000000000000000000000000000000000000000090048063695216501161008357806369521650146101c3578063c23c1e18146101e9578063c281fb7214610217578063cc5b28731461023b578063fdd54ba1146102c4576100b0565b806302064abc146100b55780630978ec6714610137578063441d2e501461016f5780635a6c41581461019d575b600080fd5b610135600480360360408110156100cb57600080fd5b600160a060020a0382351691908101906040810160208201356401000000008111156100f657600080fd5b82018360208201111561010857600080fd5b8035906020019184602083028401116401000000008311171561012a57600080fd5b5090925090506102f2565b005b61015d6004803603602081101561014d57600080fd5b5035600160a060020a031661065e565b60408051918252519081900360200190f35b6101356004803603604081101561018557600080fd5b50600160a060020a0381358116916020013516610679565b610135600480360360208110156101b357600080fd5b5035600160a060020a0316610b0a565b610135600480360360208110156101d957600080fd5b5035600160a060020a0316610b6f565b610135600480360360408110156101ff57600080fd5b50600160a060020a0381358116916020013516610dc3565b61021f611246565b60408051600160a060020a039092168252519081900360200190f35b6101356004803603606081101561025157600080fd5b600160a060020a03823581169260208101359091169181019060608101604082013564010000000081111561028557600080fd5b82018360208201111561029757600080fd5b803590602001918460018302840111640100000000831117156102b957600080fd5b509092509050611255565b610135600480360360408110156102da57600080fd5b50600160a060020a0381358116916020013516611533565b333014610337576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020612753833981519152604482015290519081900360640190fd5b600154604080517fd01e547f000000000000000000000000000000000000000000000000000000008152600160a060020a0386811660048301529151600093929092169163d01e547f91602480820192602092909190829003018186803b1580156103a157600080fd5b505afa1580156103b5573d6000803e3d6000fd5b505050506040513d60208110156103cb57600080fd5b50519050818114610426576040805160e560020a62461bcd02815260206004820152601660248201527f696e76616c6964206e756d626572206f66206b65797300000000000000000000604482015290519081900360640190fd5b60005b818110156105ea57600084848381811061043f57fe5b90506020020135600160a060020a031690506000600160a060020a031681600160a060020a0316141515156104be576040805160e560020a62461bcd02815260206004820152600e60248201527f30783020697320696e76616c6964000000000000000000000000000000000000604482015290519081900360640190fd5b60018054604080517f52d43b46000000000000000000000000000000000000000000000000000000008152600160a060020a038a8116600483015293860160248201528484166044820152905192909116916352d43b469160648082019260009290919082900301818387803b15801561053757600080fd5b505af115801561054b573d6000803e3d6000fd5b505060018054604080517fe4d1ba07000000000000000000000000000000000000000000000000000000008152600160a060020a038c811660048301529388016024820152600060448201819052915193909216945063e4d1ba079350606480830193919282900301818387803b1580156105c557600080fd5b505af11580156105d9573d6000803e3d6000fd5b505060019093019250610429915050565b5083600160a060020a03167f5cd26c2761465bf0456c21828f162f4f0608a3519071a33f8b1af24a800df3ff848460405180806020018281038252848482818152602001925060200280828437600083820152604051601f909101601f19169092018290039550909350505050a250505050565b600160a060020a031660009081526020819052604090205490565b3330146106be576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020612753833981519152604482015290519081900360640190fd5b600154604080517f8d431198000000000000000000000000000000000000000000000000000000008152600160a060020a038581166004830152600060248301819052925192931691638d43119891604480820192602092909190829003018186803b15801561072d57600080fd5b505afa158015610741573d6000803e3d6000fd5b505050506040513d602081101561075757600080fd5b50519050600160a060020a0380821690831614156107a95760405160e560020a62461bcd0281526004018080602001828103825260228152602001806127736022913960400191505060405180910390fd5b600160a060020a0382161515610809576040805160e560020a62461bcd02815260206004820152600e60248201527f30783020697320696e76616c6964000000000000000000000000000000000000604482015290519081900360640190fd5b600154604080517f52d43b46000000000000000000000000000000000000000000000000000000008152600160a060020a038681166004830152600060248301819052868216604484015292519316926352d43b469260648084019391929182900301818387803b15801561087d57600080fd5b505af1158015610891573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a0388811660048301527fd595d9350000000000000000000000000000000000000000000000000000000060248301529151919092169350638f2db5069250604480830192600092919082900301818387803b15801561090c57600080fd5b505af1158015610920573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a03888116600483015260e060020a63fdd54ba10260248301529151919092169350638f2db5069250604480830192600092919082900301818387803b15801561098557600080fd5b505af1158015610999573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a0388811660048301527fd3b9d4d60000000000000000000000000000000000000000000000000000000060248301529151919092169350638f2db5069250604480830192600092919082900301818387803b158015610a1457600080fd5b505af1158015610a28573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a0388811660048301527f45c8b1a60000000000000000000000000000000000000000000000000000000060248301529151919092169350638f2db5069250604480830192600092919082900301818387803b158015610aa357600080fd5b505af1158015610ab7573d6000803e3d6000fd5b50505050610ac483611912565b60408051600160a060020a0384811682529151918516917f8cc8d3b34686deb5d35ba8ba3ba412bc0f7413fed94b39f3f43c5d5a8faa848c9181900360200190a2505050565b8033600160a060020a03821614610b6b576040805160e560020a62461bcd02815260206004820152601660248201527f63616c6c6572206d757374206265206163636f756e7400000000000000000000604482015290519081900360640190fd5b5050565b333014610bb4576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020612753833981519152604482015290519081900360640190fd5b60005b600154604080517fd01e547f000000000000000000000000000000000000000000000000000000008152600160a060020a0385811660048301529151919092169163d01e547f916024808301926020929190829003018186803b158015610c1d57600080fd5b505afa158015610c31573d6000803e3d6000fd5b505050506040513d6020811015610c4757600080fd5b5051811015610d8b5760018054604080517f43090116000000000000000000000000000000000000000000000000000000008152600160a060020a038681166004830152938501602482015290519290911691634309011691604480820192602092909190829003018186803b158015610cc057600080fd5b505afa158015610cd4573d6000803e3d6000fd5b505050506040513d6020811015610cea57600080fd5b505160011415610d835760018054604080517fe4d1ba07000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015293850160248201526000604482018190529151939092169263e4d1ba0792606480820193929182900301818387803b158015610d6a57600080fd5b505af1158015610d7e573d6000803e3d6000fd5b505050505b600101610bb7565b50604051600160a060020a038216907f1533d4715116c43f30229b3671e5e1e13fbfaaaa6223f2fb76c4f6695110eac990600090a250565b604080517f6368616e676541646d696e4b657942794261636b7570000000000000000000006020808301919091526c01000000000000000000000000600160a060020a038087168281026036860152818716909202604a8501528451603e818603018152605e85018087528151918501919091206001547fe1a9af0600000000000000000000000000000000000000000000000000000000909252606286019390935260e060020a63fdd54ba102608286015294519194169263e1a9af069260a2808301939192829003018186803b158015610e9e57600080fd5b505afa158015610eb2573d6000803e3d6000fd5b505050506040513d6020811015610ec857600080fd5b50518114610f20576040805160e560020a62461bcd02815260206004820152601260248201527f64656c6179206861736820756e6d617463680000000000000000000000000000604482015290519081900360640190fd5b600154604080517f26c966f6000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015260e060020a63fdd54ba1026024830152915160009392909216916326c966f691604480820192602092909190829003018186803b158015610f9a57600080fd5b505afa158015610fae573d6000803e3d6000fd5b505050506040513d6020811015610fc457600080fd5b5051905060008111611020576040805160e560020a62461bcd02815260206004820152601460248201527f64656c61792064617461206e6f7420666f756e64000000000000000000000000604482015290519081900360640190fd5b428111156110625760405160e560020a62461bcd02815260040180806020018281038252602b815260200180612795602b913960400191505060405180910390fd5b600154604080517f52d43b46000000000000000000000000000000000000000000000000000000008152600160a060020a038781166004830152600060248301819052878216604484015292519316926352d43b469260648084019391929182900301818387803b1580156110d657600080fd5b505af11580156110ea573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a03898116600483015260e060020a63fdd54ba10260248301529151919092169350638f2db5069250604480830192600092919082900301818387803b15801561114f57600080fd5b505af1158015611163573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a0389811660048301527fd595d9350000000000000000000000000000000000000000000000000000000060248301529151919092169350638f2db5069250604480830192600092919082900301818387803b1580156111de57600080fd5b505af11580156111f2573d6000803e3d6000fd5b505050506111ff84611912565b60408051600160a060020a0385811682529151918616917fb540f78026e6371b2251d8cf2cb152cc75ae25b70e12157914013ae96dae9ac29181900360200190a250505050565b600154600160a060020a031681565b83600160a060020a031661129e83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611c1992505050565b600160a060020a0316146112fc576040805160e560020a62461bcd02815260206004820152600f60248201527f696e76616c6964205f636c69656e740000000000000000000000000000000000604482015290519081900360640190fd5b600061133d83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611c8892505050565b905061134881611cee565b600083836040518083838082843780830192505050925050506040518091039020905061137786868484611dfa565b600030600160a060020a03168585604051808383808284376040519201945060009350909150508083038183865af19150503d80600081146113d5576040519150601f19603f3d011682016040523d82523d6000602084013e6113da565b606091505b50509050801515611435576040805160e560020a62461bcd02815260206004820152601660248201527f6578656375746550726f706f73616c206661696c656400000000000000000000604482015290519081900360640190fd5b6001546040805160e260020a630870cb27028152600160a060020a038a811660048301528981166024830152600160e060020a031987166044830152915191909216916321c32c9c91606480830192600092919082900301818387803b15801561149e57600080fd5b505af11580156114b2573d6000803e3d6000fd5b5050505085600160a060020a031687600160a060020a03167f252a9bd6833c7a9f17515f224bb60795a2af85f62afce5d54e5832754fa59670878760405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a350505050505050565b333014611578576040805160e560020a62461bcd02815260206004820152601d6024820152600080516020612753833981519152604482015290519081900360640190fd5b600160a060020a03811615156115d8576040805160e560020a62461bcd02815260206004820152600e60248201527f30783020697320696e76616c6964000000000000000000000000000000000000604482015290519081900360640190fd5b600154604080517f8d431198000000000000000000000000000000000000000000000000000000008152600160a060020a038581166004830152600060248301819052925192931691638d43119891604480820192602092909190829003018186803b15801561164757600080fd5b505afa15801561165b573d6000803e3d6000fd5b505050506040513d602081101561167157600080fd5b50519050600160a060020a0380821690831614156116d9576040805160e560020a62461bcd02815260206004820152601a60248201527f6964656e746963616c2061646d696e206b657920657869737473000000000000604482015290519081900360640190fd5b600154604080517fe1a9af06000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015260e060020a63fdd54ba10260248301529151919092169163e1a9af06916044808301926020929190829003018186803b15801561174f57600080fd5b505afa158015611763573d6000803e3d6000fd5b505050506040513d602081101561177957600080fd5b5051156117d0576040805160e560020a62461bcd02815260206004820152601960248201527f64656c6179206461746120616c72656164792065786973747300000000000000604482015290519081900360640190fd5b604080517f6368616e676541646d696e4b657942794261636b757000000000000000000000602080830191909152600160a060020a038681166c01000000000000000000000000818102603686015287831602604a8501528451808503603e018152605e8501808752815191909401206001547fb2a9651d00000000000000000000000000000000000000000000000000000000909452606285019190915260e060020a63fdd54ba102608285015260a2840181905262278d00420160c2850152935191169163b2a9651d9160e280830192600092919082900301818387803b1580156118bc57600080fd5b505af11580156118d0573d6000803e3d6000fd5b5050604051600160a060020a038087169350871691507fb05a5941d647df6ad001146b7fc8d9ff3ae34f83fd282c6a6189ef5f5be6442e90600090a350505050565b6001546040805160e260020a630870cb27028152600160a060020a038481166004830181905260248301527f441d2e50000000000000000000000000000000000000000000000000000000006044830152915191909216916321c32c9c91606480830192600092919082900301818387803b15801561199057600080fd5b505af11580156119a4573d6000803e3d6000fd5b50506001546040805160e260020a630870cb27028152600160a060020a038681166004830181905260248301527f02064abc00000000000000000000000000000000000000000000000000000000604483015291519190921693506321c32c9c9250606480830192600092919082900301818387803b158015611a2657600080fd5b505af1158015611a3a573d6000803e3d6000fd5b50506001546040805160e260020a630870cb27028152600160a060020a038681166004830181905260248301527f6952165000000000000000000000000000000000000000000000000000000000604483015291519190921693506321c32c9c9250606480830192600092919082900301818387803b158015611abc57600080fd5b505af1158015611ad0573d6000803e3d6000fd5b506000925050505b60058111610b6b57600154604080517fcb0cb76a000000000000000000000000000000000000000000000000000000008152600160a060020a038581166004830152602482018590529151600093929092169163cb0cb76a91604480820192602092909190829003018186803b158015611b5157600080fd5b505afa158015611b65573d6000803e3d6000fd5b505050506040513d6020811015611b7b57600080fd5b50519050600160a060020a03811615611c10576001546040805160e260020a630870cb27028152600160a060020a038681166004830152848116602483015260e060020a63fdd54ba1026044830152915191909216916321c32c9c91606480830192600092919082900301818387803b158015611bf757600080fd5b505af1158015611c0b573d6000803e3d6000fd5b505050505b50600101611ad8565b60006024825110151515611c77576040805160e560020a62461bcd02815260206004820152600d60248201527f696e76616c696420627974657300000000000000000000000000000000000000604482015290519081900360640190fd5b5060240151600160a060020a031690565b60006004825110151515611ce6576040805160e560020a62461bcd02815260206004820152600c60248201527f696e76616c696420646174610000000000000000000000000000000000000000604482015290519081900360640190fd5b506020015190565b600160e060020a0319811660e060020a63fdd54ba1021480611d395750600160e060020a031981167f441d2e5000000000000000000000000000000000000000000000000000000000145b80611d6d5750600160e060020a031981167f02064abc00000000000000000000000000000000000000000000000000000000145b80611da15750600160e060020a031981167f6952165000000000000000000000000000000000000000000000000000000000145b1515611df7576040805160e560020a62461bcd02815260206004820152601760248201527f696e76616c69642070726f706f73656420616374696f6e000000000000000000604482015290519081900360640190fd5b50565b600160a060020a0383811690851614611e1757611e1784846123c2565b600154604080517f60791b88000000000000000000000000000000000000000000000000000000008152600160a060020a0387811660048301528681166024830152600160e060020a031986166044830152915160009392909216916360791b8891606480820192602092909190829003018186803b158015611e9957600080fd5b505afa158015611ead573d6000803e3d6000fd5b505050506040513d6020811015611ec357600080fd5b50519050818114611f1e576040805160e560020a62461bcd02815260206004820152601560248201527f70726f706f73616c206861736820756e6d617463680000000000000000000000604482015290519081900360640190fd5b600154604080517f70c460f8000000000000000000000000000000000000000000000000000000008152600160a060020a0388811660048301528781166024830152600160e060020a031987166044830152915160009384936060939116916370c460f8916064808201928792909190829003018186803b158015611fa257600080fd5b505afa158015611fb6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611fdf57600080fd5b810190808051640100000000811115611ff757600080fd5b8201602081018481111561200a57600080fd5b815185602082028301116401000000008211171561202757600080fd5b50508051909450600010925061208a915050576040805160e560020a62461bcd02815260206004820152600b60248201527f6e6f20617070726f76616c000000000000000000000000000000000000000000604482015290519081900360640190fd5b60005b600581116122f457600154604080517fcb0cb76a000000000000000000000000000000000000000000000000000000008152600160a060020a038c81166004830152602482018590529151600093929092169163cb0cb76a91604480820192602092909190829003018186803b15801561210657600080fd5b505afa15801561211a573d6000803e3d6000fd5b505050506040513d602081101561213057600080fd5b5051600154604080517fdb80821d000000000000000000000000000000000000000000000000000000008152600160a060020a038e81166004830152602482018790529151939450600093919092169163db80821d916044808301926020929190829003018186803b1580156121a557600080fd5b505afa1580156121b9573d6000803e3d6000fd5b505050506040513d60208110156121cf57600080fd5b5051600154604080517f8e72cbae000000000000000000000000000000000000000000000000000000008152600160a060020a038f811660048301526024820188905291519394506000939190921691638e72cbae916044808301926020929190829003018186803b15801561224457600080fd5b505afa158015612258573d6000803e3d6000fd5b505050506040513d602081101561226e57600080fd5b50519050600160a060020a0383161580159061228f575061228f8282612704565b156122e9576001969096019560005b85518110156122e75785818151811015156122b557fe5b90602001906020020151600160a060020a031684600160a060020a031614156122df576001870196505b60010161229e565b505b50505060010161208d565b506000831161234d576040805160e560020a62461bcd02815260206004820152601160248201527f6e6f206261636b757020696e206c697374000000000000000000000000000000604482015290519081900360640190fd5b600061235d84600602600a61271e565b9050808310156123b7576040805160e560020a62461bcd02815260206004820152601f60248201527f6d75737420686176652036302520617070726f76616c206174206c6561737400604482015290519081900360640190fd5b505050505050505050565b600160a060020a0381161515612422576040805160e560020a62461bcd02815260206004820152601460248201527f6261636b75702063616e6e6f7420626520307830000000000000000000000000604482015290519081900360640190fd5b600160a060020a0382161515612482576040805160e560020a62461bcd02815260206004820152601460248201527f636c69656e742063616e6e6f7420626520307830000000000000000000000000604482015290519081900360640190fd5b6000805b600581116126a757600154604080517fcb0cb76a000000000000000000000000000000000000000000000000000000008152600160a060020a038781166004830152602482018590529151600093929092169163cb0cb76a91604480820192602092909190829003018186803b1580156124ff57600080fd5b505afa158015612513573d6000803e3d6000fd5b505050506040513d602081101561252957600080fd5b5051600154604080517fdb80821d000000000000000000000000000000000000000000000000000000008152600160a060020a038981166004830152602482018790529151939450600093919092169163db80821d916044808301926020929190829003018186803b15801561259e57600080fd5b505afa1580156125b2573d6000803e3d6000fd5b505050506040513d60208110156125c857600080fd5b5051600154604080517f8e72cbae000000000000000000000000000000000000000000000000000000008152600160a060020a038a811660048301526024820188905291519394506000939190921691638e72cbae916044808301926020929190829003018186803b15801561263d57600080fd5b505afa158015612651573d6000803e3d6000fd5b505050506040513d602081101561266757600080fd5b50519050600160a060020a0386811690841614801561268b575061268b8282612704565b1561269c57600194505050506126a7565b505050600101612486565b508015156126ff576040805160e560020a62461bcd02815260206004820152601d60248201527f6261636b757020646f6573206e6f7420657869737420696e206c697374000000604482015290519081900360640190fd5b505050565b600042831115801561271557504282115b90505b92915050565b600080828481151561272c57fe5b049050828481151561273a57fe5b061515612748579050612718565b600101905061271856fe6f6e6c7920696e7465726e616c2063616c6c20697320616c6c6f7765640000006964656e746963616c2061646d696e206b657920616c726561647920657869737473746f6f206561726c7920746f2074726967676572206368616e676541646d696e4b657942794261636b7570a165627a7a72305820373b7d5f63f68bcd29f39816c7ea58a01965ee7c2a63b38eaf17a0b9aa80a5c70029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000adc92d1fd878580579716d944ef3460e241604b7
-----Decoded View---------------
Arg [0] : _accountStorage (address): 0xADc92d1fD878580579716d944eF3460E241604b7
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000adc92d1fd878580579716d944ef3460e241604b7
Deployed Bytecode Sourcemap
32508:8323:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32508:8323:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39807:551;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;39807:551:0;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;39807:551:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;39807:551:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;-1:-1;39807:551:0;;-1:-1:-1;39807:551:0;-1:-1:-1;39807:551:0;:::i;:::-;;23140:106;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23140:106:0;-1:-1:-1;;;;;23140:106:0;;:::i;:::-;;;;;;;;;;;;;;;;38913:764;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;38913:764:0;;;;;;;;;;:::i;22986:87::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22986:87:0;-1:-1:-1;;;;;22986:87:0;;:::i;40490:338::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40490:338:0;-1:-1:-1;;;;;40490:338:0;;:::i;37929:863::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;37929:863:0;;;;;;;;;;:::i;22408:36::-;;;:::i;:::-;;;;-1:-1:-1;;;;;22408:36:0;;;;;;;;;;;;;;33783:890;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;33783:890:0;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;33783:890:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;33783:890:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;33783:890:0;;-1:-1:-1;33783:890:0;-1:-1:-1;33783:890:0;:::i;37250:645::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;37250:645:0;;;;;;;;;;:::i;39807:551::-;22503:10;22525:4;22503:27;22494:70;;;;;-1:-1:-1;;;;;22494:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22494:70:0;;;;;;;;;;;;;;;39954:14;;:45;;;;;;-1:-1:-1;;;;;39954:45:0;;;;;;;;;39935:16;;39954:14;;;;;:35;;:45;;;;;;;;;;;;;;;:14;:45;;;5:2:-1;;;;30:1;27;20:12;5:2;39954:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39954:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39954:45:0;;-1:-1:-1;40012:23:0;;;40004:58;;;;;-1:-1:-1;;;;;40004:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;40072:9;40067:221;40091:8;40087:1;:12;40067:221;;;40112:10;40125:4;;40130:1;40125:7;;;;;;;;;;;;;-1:-1:-1;;;;;40125:7:0;40112:20;;40160:1;-1:-1:-1;;;;;40146:16:0;:2;-1:-1:-1;;;;;40146:16:0;;;40138:43;;;;;;;-1:-1:-1;;;;;40138:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;40187:14;;;:44;;;;;;-1:-1:-1;;;;;40187:44:0;;;;;;;40223:3;;;40187:44;;;;;;;;;;;;;:14;;;;;:25;;:44;;;;;:14;;:44;;;;;;;;:14;;:44;;;5:2:-1;;;;30:1;27;20:12;5:2;40187:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;40237:14:0;;;:45;;;;;;-1:-1:-1;;;;;40237:45:0;;;;;;;40275:3;;;40237:45;;;;:14;:45;;;;;;;;:14;;;;;-1:-1:-1;40237:27:0;;-1:-1:-1;40237:45:0;;;;;:14;;:45;;;;;:14;;:45;;;5:2:-1;;;;30:1;27;20:12;5:2;40237:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;40101:3:0;;;;;-1:-1:-1;40067:221:0;;-1:-1:-1;;40067:221:0;;;40338:8;-1:-1:-1;;;;;40303:50:0;;40348:4;;40303:50;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;40303:50:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;40303:50:0;;;;-1:-1:-1;40303:50:0;;-1:-1:-1;;;;40303:50:0;22575:1;39807:551;;;:::o;23140:106::-;-1:-1:-1;;;;;23224:14:0;23197:7;23224:14;;;;;;;;;;;;23140:106::o;38913:764::-;22503:10;22525:4;22503:27;22494:70;;;;;-1:-1:-1;;;;;22494:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22494:70:0;;;;;;;;;;;;;;;39037:14;;:38;;;;;;-1:-1:-1;;;;;39037:38:0;;;;;;;39024:10;39037:38;;;;;;;;39024:10;;39037:14;;:25;;:38;;;;;;;;;;;;;;;:14;:38;;;5:2:-1;;;;30:1;27;20:12;5:2;39037:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39037:38:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39037:38:0;;-1:-1:-1;;;;;;39088:12:0;;;;;;;;39080:59;;;;-1:-1:-1;;;;;39080:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39152:20:0;;;;39144:47;;;;;-1:-1:-1;;;;;39144:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;39196:14;;:46;;;;;;-1:-1:-1;;;;;39196:46:0;;;;;;;:14;:46;;;;;;;;;;;;;;;:14;;;:25;;:46;;;;;:14;;:46;;;;;;:14;;:46;;;5:2:-1;;;;30:1;27;20:12;5:2;39196:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;39303:14:0;;:57;;;-1:-1:-1;;;;;39303:57:0;;-1:-1:-1;;;;;39303:57:0;;;;;;;39343:16;39303:57;;;;;;:14;;;;;-1:-1:-1;39303:29:0;;-1:-1:-1;39303:57:0;;;;;:14;;:57;;;;;;;:14;;:57;;;5:2:-1;;;;30:1;27;20:12;5:2;39303:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;39365:14:0;;:67;;;-1:-1:-1;;;;;39365:67:0;;-1:-1:-1;;;;;39365:67:0;;;;;;;-1:-1:-1;;;;;39365:67:0;;;;;;:14;;;;;-1:-1:-1;39365:29:0;;-1:-1:-1;39365:67:0;;;;;:14;;:67;;;;;;;:14;;:67;;;5:2:-1;;;;30:1;27;20:12;5:2;39365:67:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;39437:14:0;;:66;;;-1:-1:-1;;;;;39437:66:0;;-1:-1:-1;;;;;39437:66:0;;;;;;;39477:25;39437:66;;;;;;:14;;;;;-1:-1:-1;39437:29:0;;-1:-1:-1;39437:66:0;;;;;:14;;:66;;;;;;;:14;;:66;;;5:2:-1;;;;30:1;27;20:12;5:2;39437:66:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;39508:14:0;;:49;;;-1:-1:-1;;;;;39508:49:0;;-1:-1:-1;;;;;39508:49:0;;;;;;;39548:8;39508:49;;;;;;:14;;;;;-1:-1:-1;39508:29:0;;-1:-1:-1;39508:49:0;;;;;:14;;:49;;;;;;;:14;;:49;;;5:2:-1;;;;30:1;27;20:12;5:2;39508:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39508:49:0;;;;39562:50;39603:8;39562:40;:50::i;:::-;39628:44;;;-1:-1:-1;;;;;39628:44:0;;;;;;;;;;;;;;;;;;;;22575:1;38913:764;;:::o;22986:87::-;23056:8;22660:10;-1:-1:-1;;;;;22660:31:0;;;22652:66;;;;;-1:-1:-1;;;;;22652:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22986:87;;:::o;40490:338::-;22503:10;22525:4;22503:27;22494:70;;;;;-1:-1:-1;;;;;22494:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22494:70:0;;;;;;;;;;;;;;;40584:9;40579:199;40603:14;;:45;;;;;;-1:-1:-1;;;;;40603:45:0;;;;;;;;;:14;;;;;:35;;:45;;;;;;;;;;;;;;:14;:45;;;5:2:-1;;;;30:1;27;20:12;5:2;40603:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;40603:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40603:45:0;40599:49;;40579:199;;;40665:14;;;:42;;;;;;-1:-1:-1;;;;;40665:42:0;;;;;;;40703:3;;;40665:42;;;;;;:14;;;;;:27;;:42;;;;;;;;;;;;;;;:14;:42;;;5:2:-1;;;;30:1;27;20:12;5:2;40665:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;40665:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40665:42:0;40711:1;40665:47;40661:112;;;40721:14;;;:45;;;;;;-1:-1:-1;;;;;40721:45:0;;;;;;;40759:3;;;40721:45;;;;:14;:45;;;;;;;;:14;;;;;:27;;:45;;;;;:14;:45;;;;;;:14;;:45;;;5:2:-1;;;;30:1;27;20:12;5:2;40721:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;40721:45:0;;;;40661:112;40650:3;;40579:199;;;-1:-1:-1;40793:30:0;;-1:-1:-1;;;;;40793:30:0;;;;;;;;40490:338;:::o;37929:863::-;38049:60;;;;;;;;;;;;;-1:-1:-1;;;;;38049:60:0;;;;;;;;;;;;;;;;;;;;;;22:32:-1;26:21;;;22:32;6:49;;38049:60:0;;;;;;38039:71;;;;;;;;;38131:14;;:69;;;;;;;;;;;-1:-1:-1;;;;;38131:69:0;;;;;;38039:71;;38131:14;;:31;;:69;;;;;38049:60;;38131:69;;;;;:14;:69;;;5:2:-1;;;;30:1;27;20:12;5:2;38131:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38131:69:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38131:69:0;38123:77;;38115:108;;;;;-1:-1:-1;;;;;38115:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38244:14;;:72;;;;;;-1:-1:-1;;;;;38244:72:0;;;;;;;-1:-1:-1;;;;;38244:72:0;;;;;;38230:11;;38244:14;;;;;:34;;:72;;;;;;;;;;;;;;;:14;:72;;;5:2:-1;;;;30:1;27;20:12;5:2;38244:72:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38244:72:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38244:72:0;;-1:-1:-1;38335:1:0;38329:7;;38321:40;;;;;-1:-1:-1;;;;;38321:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38381:3;38374:10;;;38366:66;;;;-1:-1:-1;;;;;38366:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38437:14;;:46;;;;;;-1:-1:-1;;;;;38437:46:0;;;;;;;:14;:46;;;;;;;;;;;;;;;:14;;;:25;;:46;;;;;:14;;:46;;;;;;:14;;:46;;;5:2:-1;;;;30:1;27;20:12;5:2;38437:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;38544:14:0;;:67;;;-1:-1:-1;;;;;38544:67:0;;-1:-1:-1;;;;;38544:67:0;;;;;;;-1:-1:-1;;;;;38544:67:0;;;;;;:14;;;;;-1:-1:-1;38544:29:0;;-1:-1:-1;38544:67:0;;;;;:14;;:67;;;;;;;:14;;:67;;;5:2:-1;;;;30:1;27;20:12;5:2;38544:67:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;38616:14:0;;:57;;;-1:-1:-1;;;;;38616:57:0;;-1:-1:-1;;;;;38616:57:0;;;;;;;38656:16;38616:57;;;;;;:14;;;;;-1:-1:-1;38616:29:0;;-1:-1:-1;38616:57:0;;;;;:14;;:57;;;;;;;:14;;:57;;;5:2:-1;;;;30:1;27;20:12;5:2;38616:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38616:57:0;;;;38678:50;38719:8;38678:40;:50::i;:::-;38738:49;;;-1:-1:-1;;;;;38738:49:0;;;;;;;;;;;;;;;;;;;;37929:863;;;;:::o;22408:36::-;;;-1:-1:-1;;;;;22408:36:0;;:::o;33783:890::-;34003:7;-1:-1:-1;;;;;33968:42:0;:31;33985:13;;33968:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;33968:16:0;;-1:-1:-1;;;33968:31:0:i;:::-;-1:-1:-1;;;;;33968:42:0;;33960:70;;;;;-1:-1:-1;;;;;33960:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;34051:23;34077:26;34089:13;;34077:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;34077:11:0;;-1:-1:-1;;;34077:26:0:i;:::-;34051:52;;34114:37;34134:16;34114:19;:37::i;:::-;34162:20;34195:13;;34185:24;;;;;30:3:-1;22:6;14;1:33;57:3;49:6;45:16;35:26;;34185:24:0;;;;;;;;;;;;;34162:47;;34222:65;34236:7;34245:9;34256:16;34274:12;34222:13;:65::i;:::-;34412:12;34437:4;-1:-1:-1;;;;;34429:18:0;34448:13;;34429:33;;;;;30:3:-1;22:6;14;1:33;34429::0;;45:16:-1;;;-1:-1;34429:33:0;;-1:-1:-1;34429:33:0;;-1:-1:-1;;34429:33:0;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;34411:51:0;;;34481:7;34473:42;;;;;;;-1:-1:-1;;;;;34473:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;34528:14;;:70;;;-1:-1:-1;;;;;34528:70:0;;-1:-1:-1;;;;;34528:70:0;;;;;;;;;;;;;;-1:-1:-1;;;;;;34528:70:0;;;;;;;;:14;;;;;:32;;:70;;;;;:14;;:70;;;;;;;:14;;:70;;;5:2:-1;;;;30:1;27;20:12;5:2;34528:70:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34528:70:0;;;;34640:9;-1:-1:-1;;;;;34614:51:0;34631:7;-1:-1:-1;;;;;34614:51:0;;34651:13;;34614:51;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;34614:51:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;34614:51:0;;;;-1:-1:-1;34614:51:0;;-1:-1:-1;;;;34614:51:0;33783:890;;;;;;;:::o;37250:645::-;22503:10;22525:4;22503:27;22494:70;;;;;-1:-1:-1;;;;;22494:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22494:70:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;37365:20:0;;;;37357:47;;;;;-1:-1:-1;;;;;37357:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37422:14;;:38;;;;;;-1:-1:-1;;;;;37422:38:0;;;;;;;37409:10;37422:38;;;;;;;;37409:10;;37422:14;;:25;;:38;;;;;;;;;;;;;;;:14;:38;;;5:2:-1;;;;30:1;27;20:12;5:2;37422:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37422:38:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37422:38:0;;-1:-1:-1;;;;;;37473:12:0;;;;;;;;37465:51;;;;;-1:-1:-1;;;;;37465:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37529:14;;:69;;;;;;-1:-1:-1;;;;;37529:69:0;;;;;;;-1:-1:-1;;;;;37529:69:0;;;;;;:14;;;;;:31;;:69;;;;;;;;;;;;;;:14;:69;;;5:2:-1;;;;30:1;27;20:12;5:2;37529:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37529:69:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37529:69:0;:74;37521:112;;;;;-1:-1:-1;;;;;37521:112:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37663:60;;;;;;;;;;;;-1:-1:-1;;;;;37663:60:0;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;6:49;;37663:60:0;;;;;;37653:71;;;;;;;37729:14;;:111;;;;;;;;;;;-1:-1:-1;;;;;37729:111:0;;;;;;;;;;29278:7;37801:3;:38;37729:111;;;;;;:14;;;:27;;:111;;;;;-1:-1:-1;;37729:111:0;;;;;;;-1:-1:-1;37729:14:0;:111;;;5:2:-1;;;;30:1;27;20:12;5:2;37729:111:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;37850:40:0;;-1:-1:-1;;;;;37850:40:0;;;;-1:-1:-1;37850:40:0;;;-1:-1:-1;37850:40:0;;;;;22575:1;;37250:645;;:::o;31653:846::-;31825:14;;:82;;;-1:-1:-1;;;;;31825:82:0;;-1:-1:-1;;;;;31825:82:0;;;;;;;;;;;;;31876:30;31825:82;;;;;;:14;;;;;:32;;:82;;;;;:14;;:82;;;;;;;:14;;:82;;;5:2:-1;;;;30:1;27;20:12;5:2;31825:82:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;31918:14:0;;:91;;;-1:-1:-1;;;;;31918:91:0;;-1:-1:-1;;;;;31918:91:0;;;;;;;;;;;;;31969:39;31918:91;;;;;;:14;;;;;-1:-1:-1;31918:32:0;;-1:-1:-1;31918:91:0;;;;;:14;;:91;;;;;;;:14;;:91;;;5:2:-1;;;;30:1;27;20:12;5:2;31918:91:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;32020:14:0;;:74;;;-1:-1:-1;;;;;32020:74:0;;-1:-1:-1;;;;;32020:74:0;;;;;;;;;;;;;32071:22;32020:74;;;;;;:14;;;;;-1:-1:-1;32020:32:0;;-1:-1:-1;32020:74:0;;;;;:14;;:74;;;;;;;:14;;:74;;;5:2:-1;;;;30:1;27;20:12;5:2;32020:74:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;32202:9:0;;-1:-1:-1;;;32197:295:0;29347:1;32217:29;;32197:295;;32285:14;;:43;;;;;;-1:-1:-1;;;;;32285:43:0;;;;;;;;;;;;;;;32268:14;;32285;;;;;:31;;:43;;;;;;;;;;;;;;;:14;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;32285:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32285:43:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32285:43:0;;-1:-1:-1;;;;;;32347:20:0;;;32343:138;;32388:14;;:77;;;-1:-1:-1;;;;;32388:77:0;;-1:-1:-1;;;;;32388:77:0;;;;;;;;;;;;;;-1:-1:-1;;;;;32388:77:0;;;;;;:14;;;;;:32;;:77;;;;;:14;;:77;;;;;;;:14;;:77;;;5:2:-1;;;;30:1;27;20:12;5:2;32388:77:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32388:77:0;;;;32343:138;-1:-1:-1;32248:3:0;;32197:295;;27254:676;27320:10;27364:2;27351;:9;:15;;27343:41;;;;;;;-1:-1:-1;;;;;27343:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27582:2:0;27574:11;27568:18;-1:-1:-1;;;;;27558:29:0;;27469:454::o;27983:322::-;28044:9;28087:1;28074:2;:9;:14;;28066:39;;;;;;;-1:-1:-1;;;;;28066:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28283:2:0;28275:11;28269:18;;28190:108::o;34681:346::-;-1:-1:-1;;;;;;34760:38:0;;-1:-1:-1;;;;;34760:38:0;;:102;;-1:-1:-1;;;;;;;34820:42:0;;34832:30;34820:42;34760:102;:175;;;-1:-1:-1;;;;;;;34884:51:0;;34896:39;34884:51;34760:175;:231;;;-1:-1:-1;;;;;;;34957:34:0;;34969:22;34957:34;34760:231;34752:267;;;;;;;-1:-1:-1;;;;;34752:267:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;34681:346;:::o;35366:1694::-;-1:-1:-1;;;;;35503:20:0;;;;;;;35499:71;;35531:33;35545:7;35554:9;35531:13;:33::i;:::-;35595:14;;:73;;;;;;-1:-1:-1;;;;;35595:73:0;;;;;;;;;;;;;;-1:-1:-1;;;;;;35595:73:0;;;;;;;;35580:12;;35595:14;;;;;:34;;:73;;;;;;;;;;;;;;;:14;:73;;;5:2:-1;;;;30:1;27;20:12;5:2;35595:73:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35595:73:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35595:73:0;;-1:-1:-1;35687:21:0;;;35679:55;;;;;-1:-1:-1;;;;;35679:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35837:14;;:77;;;;;;-1:-1:-1;;;;;35837:77:0;;;;;;;;;;;;;;-1:-1:-1;;;;;;35837:77:0;;;;;;;;35747:19;;;;35809:25;;35837:14;;;:38;;:77;;;;;35747:19;;35837:77;;;;;;;;:14;:77;;;5:2:-1;;;;30:1;27;20:12;5:2;35837:77:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35837:77:0;;;;;;39:16:-1;36:1;17:17;2:54;101:4;35837:77:0;80:15:-1;;;-1:-1;;76:31;65:43;;120:4;113:20;13:2;5:11;;2:2;;;29:1;26;19:12;2:2;35837:77:0;;;;;;19:11:-1;14:3;11:20;8:2;;;44:1;41;34:12;8:2;62:21;;123:4;114:14;;138:31;;;135:2;;;182:1;179;172:12;135:2;219:3;213:10;331:9;325:2;311:12;307:21;289:16;285:44;282:59;261:11;247:12;244:29;233:116;230:2;;;362:1;359;352:12;230:2;-1:-1;;35933:15:0;;35837:77;;-1:-1:-1;35951:1:0;-1:-1:-1;35933:19:0;-1:-1:-1;35925:43:0;;-1:-1:-1;;35925:43:0;;;;-1:-1:-1;;;;;35925:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36018:9;36013:840;29347:1;36033:29;;36013:840;;36101:14;;:43;;;;;;-1:-1:-1;;;;;36101:43:0;;;;;;;;;;;;;;;36084:14;;36101;;;;;:31;;:43;;;;;;;;;;;;;;;:14;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;36101:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36101:43:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36101:43:0;36183:14;;:49;;;;;;-1:-1:-1;;;;;36183:49:0;;;;;;;;;;;;;;;36101:43;;-1:-1:-1;36159:21:0;;36183:14;;;;;:37;;:49;;;;;36101:43;;36183:49;;;;;;;:14;:49;;;5:2:-1;;;;30:1;27;20:12;5:2;36183:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36183:49:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36183:49:0;36268:14;;:46;;;;;;-1:-1:-1;;;;;36268:46:0;;;;;;;;;;;;;;;36183:49;;-1:-1:-1;36247:18:0;;36268:14;;;;;:34;;:46;;;;;36183:49;;36268:46;;;;;;;:14;:46;;;5:2:-1;;;;30:1;27;20:12;5:2;36268:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36268:46:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36268:46:0;;-1:-1:-1;;;;;;36333:20:0;;;;;;:68;;;36357:44;36375:13;36390:10;36357:17;:44::i;:::-;36329:513;;;36495:1;36480:16;;;;;36563:9;36558:269;36582:8;:15;36578:1;:19;36558:269;;;36641:8;36650:1;36641:11;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36631:21:0;:6;-1:-1:-1;;;;;36631:21:0;;36627:181;;;36783:1;36766:18;;;;36627:181;36599:3;;36558:269;;;;36329:513;-1:-1:-1;;;36064:3:0;;36013:840;;;-1:-1:-1;36885:1:0;36871:15;;36863:45;;;;;-1:-1:-1;;;;;36863:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36919:17;36939:32;36953:11;36965:1;36953:13;36968:2;36939:13;:32::i;:::-;36919:52;-1:-1:-1;36990:26:0;;;;36982:70;;;;;-1:-1:-1;;;;;36982:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35366:1694;;;;;;;;;:::o;30630:835::-;-1:-1:-1;;;;;30720:21:0;;;;30712:54;;;;;-1:-1:-1;;;;;30712:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30785:21:0;;;;30777:54;;;;;-1:-1:-1;;;;;30777:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30842:13;;30866:531;29347:1;30886:29;;30866:531;;30954:14;;:43;;;;;;-1:-1:-1;;;;;30954:43:0;;;;;;;;;;;;;;;30937:14;;30954;;;;;:31;;:43;;;;;;;;;;;;;;;:14;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;30954:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;30954:43:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30954:43:0;31036:14;;:49;;;;;;-1:-1:-1;;;;;31036:49:0;;;;;;;;;;;;;;;30954:43;;-1:-1:-1;31012:21:0;;31036:14;;;;;:37;;:49;;;;;30954:43;;31036:49;;;;;;;:14;:49;;;5:2:-1;;;;30:1;27;20:12;5:2;31036:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31036:49:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31036:49:0;31121:14;;:46;;;;;;-1:-1:-1;;;;;31121:46:0;;;;;;;;;;;;;;;31036:49;;-1:-1:-1;31100:18:0;;31121:14;;;;;:34;;:46;;;;;31036:49;;31121:46;;;;;;;:14;:46;;;5:2:-1;;;;30:1;27;20:12;5:2;31121:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31121:46:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31121:46:0;;-1:-1:-1;;;;;;31245:17:0;;;;;;;:65;;;;;31266:44;31284:13;31299:10;31266:17;:44::i;:::-;31241:145;;;31342:4;31331:15;;31365:5;;;;;31241:145;-1:-1:-1;;;30917:3:0;;30866:531;;;;31415:8;31407:50;;;;;;;-1:-1:-1;;;;;31407:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30630:835;;;:::o;31473:172::-;31567:4;31610:3;31592:14;:21;;31591:46;;;;;31633:3;31619:11;:17;31591:46;31584:53;;31473:172;;;;;:::o;22023:218::-;22082:7;22102:9;22118:1;22114;:5;;;;;;;;22102:17;;22137:1;22133;:5;;;;;;;;:10;22130:104;;;22167:1;-1:-1:-1;22160:8:0;;22130:104;22221:1;22217:5;;-1:-1:-1;22210:12:0;
Swarm Source
bzzr://373b7d5f63f68bcd29f39816c7ea58a01965ee7c2a63b38eaf17a0b9aa80a5c7
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.