Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 220 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Start Recovery | 15128145 | 886 days ago | IN | 0 ETH | 0.00065652 | ||||
Complete Recover... | 14172651 | 1039 days ago | IN | 0 ETH | 0.01001331 | ||||
Start Recovery | 14163650 | 1041 days ago | IN | 0 ETH | 0.0055794 | ||||
Complete Recover... | 14053882 | 1058 days ago | IN | 0 ETH | 0.01289366 | ||||
Start Recovery | 14047224 | 1059 days ago | IN | 0 ETH | 0.01176745 | ||||
Cancel Recovery | 13763778 | 1103 days ago | IN | 0 ETH | 0.00170909 | ||||
Start Recovery | 13757430 | 1104 days ago | IN | 0 ETH | 0.00799299 | ||||
Complete Recover... | 13741306 | 1106 days ago | IN | 0 ETH | 0.00860898 | ||||
Start Recovery | 13734875 | 1107 days ago | IN | 0 ETH | 0.00888348 | ||||
Start Recovery | 13716418 | 1110 days ago | IN | 0 ETH | 0.00298342 | ||||
Start Recovery | 13716369 | 1110 days ago | IN | 0 ETH | 0.00300538 | ||||
Start Recovery | 13681081 | 1116 days ago | IN | 0 ETH | 0.0027827 | ||||
Start Recovery | 13681074 | 1116 days ago | IN | 0 ETH | 0.00282144 | ||||
Start Recovery | 13679417 | 1116 days ago | IN | 0 ETH | 0.00404655 | ||||
Complete Recover... | 13596589 | 1129 days ago | IN | 0 ETH | 0.01182012 | ||||
Start Recovery | 13589982 | 1130 days ago | IN | 0 ETH | 0.01342372 | ||||
Start Recovery | 13583158 | 1131 days ago | IN | 0 ETH | 0.00514752 | ||||
Complete Recover... | 13540212 | 1138 days ago | IN | 0 ETH | 0.01578672 | ||||
Start Recovery | 13533832 | 1139 days ago | IN | 0 ETH | 0.00943609 | ||||
Complete Recover... | 13523206 | 1141 days ago | IN | 0 ETH | 0.00953695 | ||||
Start Recovery | 13516697 | 1142 days ago | IN | 0 ETH | 0.00974929 | ||||
Start Recovery | 13475492 | 1148 days ago | IN | 0 ETH | 0.00219741 | ||||
Complete Recover... | 13462985 | 1150 days ago | IN | 0 ETH | 0.00766775 | ||||
Start Recovery | 13456398 | 1151 days ago | IN | 0 ETH | 0.00754571 | ||||
Start Recovery | 13329632 | 1171 days ago | IN | 0 ETH | 0.00253051 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
AuthereumRecoveryModule
Compiler Version
v0.5.17+commit.d19bba13
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-09-18 */ /** Author: Authereum Labs, Inc. */ pragma solidity 0.5.17; pragma experimental ABIEncoderV2; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. * * This contract is from openzeppelin-solidity 2.4.0 */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot 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-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } contract IERC1271 { function isValidSignature( bytes32 _messageHash, bytes memory _signature ) public view returns (bytes4 magicValue); function isValidSignature( bytes memory _data, bytes memory _signature ) public view returns (bytes4 magicValue); } /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. * * This contract is from openzeppelin-solidity 2.4.0 */ contract IERC721Receiver { /** * @notice Handle the receipt of an NFT * @dev The ERC721 smart contract calls this function on the recipient * after a {IERC721-safeTransferFrom}. This function MUST return the function selector, * otherwise the caller will revert the transaction. The selector to be * returned can be obtained as `this.onERC721Received.selector`. This * function MAY throw to revert and reject the transfer. * Note: the ERC721 contract address is always the message sender. * @param operator The address which called `safeTransferFrom` function * @param from The address which previously owned the token * @param tokenId The NFT identifier which is being transferred * @param data Additional data with no specified format * @return bytes4 `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` */ function onERC721Received(address operator, address from, uint256 tokenId, bytes memory data) public returns (bytes4); } /** Note: The ERC-165 identifier for this interface is 0x4e2312e0. */ interface IERC1155TokenReceiver { /** @notice Handle the receipt of a single ERC1155 token type. @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeTransferFrom` after the balance has been updated. This function MUST return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61) if it accepts the transfer. This function MUST revert if it rejects the transfer. Return of any other value than the prescribed keccak256 generated value MUST result in the transaction being reverted by the caller. @param _operator The address which initiated the transfer (i.e. msg.sender) @param _from The address which previously owned the token @param _id The ID of the token being transferred @param _value The amount of tokens being transferred @param _data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` */ function onERC1155Received(address _operator, address _from, uint256 _id, uint256 _value, bytes calldata _data) external returns(bytes4); /** @notice Handle the receipt of multiple ERC1155 token types. @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeBatchTransferFrom` after the balances have been updated. This function MUST return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81) if it accepts the transfer(s). This function MUST revert if it rejects the transfer(s). Return of any other value than the prescribed keccak256 generated value MUST result in the transaction being reverted by the caller. @param _operator The address which initiated the batch transfer (i.e. msg.sender) @param _from The address which previously owned the token @param _ids An array containing ids of each token being transferred (order and length must match _values array) @param _values An array containing amounts of each token being transferred (order and length must match _ids array) @param _data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` */ function onERC1155BatchReceived(address _operator, address _from, uint256[] calldata _ids, uint256[] calldata _values, bytes calldata _data) external returns(bytes4); } interface IERC1820ImplementerInterface { /// @notice Indicates whether the contract implements the interface `interfaceHash` for the address `addr` or not. /// @param interfaceHash keccak256 hash of the name of the interface /// @param addr Address for which the contract will implement the interface /// @return ERC1820_ACCEPT_MAGIC only if the contract implements `interfaceHash` for the address `addr`. function canImplementInterfaceForAddress(bytes32 interfaceHash, address addr) external view returns(bytes32); } contract IERC777TokensRecipient { /// @dev Notify a send or mint (if from is 0x0) of amount tokens from the from address to the /// to address by the operator address. /// @param operator Address which triggered the balance increase (through sending or minting). /// @param from Holder whose tokens were sent (or 0x0 for a mint). /// @param to Recipient of the tokens. /// @param amount Number of tokens the recipient balance is increased by. /// @param data Information provided by the holder. /// @param operatorData Information provided by the operator. function tokensReceived( address operator, address from, address to, uint256 amount, bytes calldata data, bytes calldata operatorData ) external; } contract IAuthereumAccount is IERC1271, IERC721Receiver, IERC1155TokenReceiver, IERC1820ImplementerInterface, IERC777TokensRecipient { function () external payable; function name() external view returns (string memory); function version() external view returns (string memory); function implementation() external view returns (address); function lastInitializedVersion() external returns (uint256); function authKeys(address _authKey) external returns (bool); function nonce() external returns (uint256); function numAuthKeys() external returns (uint256); function getChainId() external pure returns (uint256); function addAuthKey(address _authKey) external; function upgradeToAndCall(address _newImplementation, bytes calldata _data) external; function removeAuthKey(address _authKey) external; function isValidAuthKeySignature(bytes32 _messageHash, bytes calldata _signature) external view returns (bool); function isValidLoginKeySignature(bytes32 _messageHash, bytes calldata _signature) external view returns (bool); function executeMultipleTransactions(bytes[] calldata _transactions) external returns (bytes[] memory); function executeMultipleMetaTransactions(bytes[] calldata _transactions) external returns (bytes[] memory); function executeMultipleAuthKeyMetaTransactions( bytes[] calldata _transactions, uint256 _gasPrice, uint256 _gasOverhead, address _feeTokenAddress, uint256 _feeTokenRate, bytes calldata _transactionMessageHashSignature ) external returns (bytes[] memory); function executeMultipleLoginKeyMetaTransactions( bytes[] calldata _transactions, uint256 _gasPrice, uint256 _gasOverhead, bytes calldata _loginKeyRestrictionsData, address _feeTokenAddress, uint256 _feeTokenRate, bytes calldata _transactionMessageHashSignature, bytes calldata _loginKeyAttestationSignature ) external returns (bytes[] memory); } /** * @title AuthereumRecoveryModule * @author Authereum Labs, Inc. * @dev This contract facilitates the recovery of Authereum accounts. * @dev This contract may be added as a module for an Authereum account. The Authereum * @dev account may set one or more recovery addresses and specify a recovery delay period. * @dev A recovery address may start the recovery process at any time and specify a new auth * @dev key to be added to the Authereum account. During the recovery delay period, the * @dev recovery process can be cancelled by the Authereum account. After the recovery delay * @dev period, any address can complete the recovery process which will add the new auth key * @dev to the Authereum account. */ contract AuthereumRecoveryModule { using SafeMath for uint256; string constant public name = "Authereum Recovery Module"; string constant public version = "2020070100"; /** * Events */ event RecoveryAddressAdded ( address indexed accountContract, address indexed recoveryAddress, uint256 indexed recoveryDelay ); event RecoveryAddressRemoved ( address indexed accountContract, address indexed recoveryAddress ); event RecoveryStarted ( address indexed accountContract, address indexed recoveryAddress, address indexed newAuthKey, uint256 startTime, uint256 recoveryDelay ); event RecoveryCancelled ( address indexed accountContract, address indexed recoveryAddress, address indexed newAuthKey ); event RecoveryCompleted ( address indexed accountContract, address indexed recoveryAddress, address indexed newAuthKey ); /** * State */ struct RecoveryAccount { bool active; uint256 delay; } struct RecoveryAttempt { uint256 startTime; address newAuthKey; } mapping(address => mapping(address => RecoveryAccount)) public recoveryAccounts; mapping(address => mapping(address => RecoveryAttempt)) public recoveryAttempts; /** * Modifiers */ modifier isRecoveryAddress(address _accountContract, address _recoveryAddress) { require(recoveryAccounts[_accountContract][_recoveryAddress].active, "ARM: Inactive recovery account"); _; } modifier onlyWhenRegisteredModule { require(IAuthereumAccount(msg.sender).authKeys(address(this)), "ARM: Recovery module not registered to account"); _; } /** * Public functions */ /// @dev Add a recovery address /// @dev Called by the Authereum account /// @param _recoveryAddress The address that can recover the account /// @param _recoveryDelay The delay required between starting and completing recovery function addRecoveryAccount(address _recoveryAddress, uint256 _recoveryDelay) external onlyWhenRegisteredModule { require(_recoveryAddress != address(0), "ARM: Recovery address cannot be address(0)"); require(_recoveryAddress != msg.sender, "ARM: Cannot add self as recovery account"); require(recoveryAccounts[msg.sender][_recoveryAddress].active == false, "ARM: Recovery address has already been added"); recoveryAccounts[msg.sender][_recoveryAddress] = RecoveryAccount(true, _recoveryDelay); emit RecoveryAddressAdded(msg.sender, _recoveryAddress, _recoveryDelay); } /// @dev Remove a recovery address /// @dev Called by the Authereum account /// @param _recoveryAddress The address that can recover the account function removeRecoveryAccount(address _recoveryAddress) external { require(recoveryAccounts[msg.sender][_recoveryAddress].active == true, "ARM: Recovery address is already inactive"); delete recoveryAccounts[msg.sender][_recoveryAddress]; RecoveryAttempt storage recoveryAttempt = recoveryAttempts[msg.sender][_recoveryAddress]; if (recoveryAttempt.startTime != 0) { emit RecoveryCancelled(msg.sender, _recoveryAddress, recoveryAttempt.newAuthKey); } delete recoveryAttempts[msg.sender][_recoveryAddress]; emit RecoveryAddressRemoved(msg.sender, _recoveryAddress); } /// @dev Start the recovery process /// @dev Called by the recovery address /// @param _accountContract Address of the Authereum account being recovered /// @param _newAuthKey The address of the Auth Key being added to the Authereum account function startRecovery(address _accountContract, address _newAuthKey) external isRecoveryAddress(_accountContract, msg.sender) { require(recoveryAttempts[_accountContract][msg.sender].startTime == 0, "ARM: Recovery is already in process"); require(_newAuthKey != address(0), "ARM: Auth Key cannot be address(0)"); recoveryAttempts[_accountContract][msg.sender] = RecoveryAttempt(now, _newAuthKey); uint256 recoveryDelay = recoveryAccounts[_accountContract][msg.sender].delay; emit RecoveryStarted(_accountContract, msg.sender, _newAuthKey, now, recoveryDelay); } /// @dev Cancel the recovery process /// @dev Called by the recovery address /// @param _accountContract Address of the Authereum account being recovered function cancelRecovery(address _accountContract) external isRecoveryAddress(_accountContract, msg.sender) { RecoveryAttempt memory recoveryAttempt = recoveryAttempts[_accountContract][msg.sender]; require(recoveryAttempt.startTime != 0, "ARM: Recovery attempt does not exist"); delete recoveryAttempts[_accountContract][msg.sender]; emit RecoveryCancelled(_accountContract, msg.sender, recoveryAttempt.newAuthKey); } /// @dev Complete the recovery process /// @dev Called by any address /// @param _accountContract Address of the Authereum account being recovered /// @param _recoveryAddress The address that can recover the account function completeRecovery(address payable _accountContract, address _recoveryAddress) external isRecoveryAddress(_accountContract, _recoveryAddress) { RecoveryAccount memory recoveryAccount = recoveryAccounts[_accountContract][_recoveryAddress]; RecoveryAttempt memory recoveryAttempt = recoveryAttempts[_accountContract][_recoveryAddress]; require(recoveryAttempt.startTime != 0, "ARM: Recovery attempt does not exist"); require(recoveryAttempt.startTime.add(recoveryAccount.delay) <= now, "ARM: Recovery attempt delay period has not completed"); delete recoveryAttempts[_accountContract][_recoveryAddress]; IAuthereumAccount(_accountContract).addAuthKey(recoveryAttempt.newAuthKey); emit RecoveryCompleted(_accountContract, _recoveryAddress, recoveryAttempt.newAuthKey); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"accountContract","type":"address"},{"indexed":true,"internalType":"address","name":"recoveryAddress","type":"address"},{"indexed":true,"internalType":"uint256","name":"recoveryDelay","type":"uint256"}],"name":"RecoveryAddressAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"accountContract","type":"address"},{"indexed":true,"internalType":"address","name":"recoveryAddress","type":"address"}],"name":"RecoveryAddressRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"accountContract","type":"address"},{"indexed":true,"internalType":"address","name":"recoveryAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newAuthKey","type":"address"}],"name":"RecoveryCancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"accountContract","type":"address"},{"indexed":true,"internalType":"address","name":"recoveryAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newAuthKey","type":"address"}],"name":"RecoveryCompleted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"accountContract","type":"address"},{"indexed":true,"internalType":"address","name":"recoveryAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newAuthKey","type":"address"},{"indexed":false,"internalType":"uint256","name":"startTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"recoveryDelay","type":"uint256"}],"name":"RecoveryStarted","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"_recoveryAddress","type":"address"},{"internalType":"uint256","name":"_recoveryDelay","type":"uint256"}],"name":"addRecoveryAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_accountContract","type":"address"}],"name":"cancelRecovery","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"_accountContract","type":"address"},{"internalType":"address","name":"_recoveryAddress","type":"address"}],"name":"completeRecovery","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"recoveryAccounts","outputs":[{"internalType":"bool","name":"active","type":"bool"},{"internalType":"uint256","name":"delay","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"recoveryAttempts","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"address","name":"newAuthKey","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_recoveryAddress","type":"address"}],"name":"removeRecoveryAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_accountContract","type":"address"},{"internalType":"address","name":"_newAuthKey","type":"address"}],"name":"startRecovery","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50611fc2806100206000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c806395de59af1161006657806395de59af14610121578063bcc1b15414610152578063c5e43c041461016e578063c89ec68a1461018a578063c90db447146101a657610093565b806306fdde03146100985780634ba3bd2d146100b657806354fd4d50146100e75780638a2fb9dd14610105575b600080fd5b6100a06101c2565b6040516100ad9190611c95565b60405180910390f35b6100d060048036036100cb9190810190611734565b6101fb565b6040516100de929190611c6c565b60405180910390f35b6100ef610239565b6040516100fc9190611c95565b60405180910390f35b61011f600480360361011a91908101906116cf565b610272565b005b61013b60048036036101369190810190611734565b61060c565b604051610149929190611e17565b60405180910390f35b61016c60048036036101679190810190611770565b61065d565b005b610188600480360361018391908101906116f8565b6109f7565b005b6101a4600480360361019f9190810190611734565b610ea9565b005b6101c060048036036101bb91908101906116cf565b6112ab565b005b6040518060400160405280601981526020017f41757468657265756d205265636f76657279204d6f64756c650000000000000081525081565b6000602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900460ff16908060010154905082565b6040518060400160405280600a81526020017f323032303037303130300000000000000000000000000000000000000000000081525081565b600115156000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16151514610344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161033b90611d17565b60405180910390fd5b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160006101000a81549060ff0219169055600182016000905550506000600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000816000015414610500578060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fa2c14772ea92193e2ee43464f087c6831cde0723bafa30362b356e1db0aa1f4960405160405180910390a45b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000808201600090556001820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8f1c76c19bfffa92b569d5bb1fa3ffcb2351e4985a3f1f383fe1cd539dfec3ed60405160405180910390a35050565b6001602052816000526040600020602052806000526040600020600091509150508060000154908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082565b3373ffffffffffffffffffffffffffffffffffffffff16635175ca5e306040518263ffffffff1660e01b81526004016106969190611c51565b602060405180830381600087803b1580156106b057600080fd5b505af11580156106c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506106e891908101906117ac565b610727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071e90611cb7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078e90611df7565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fd90611d97565b60405180910390fd5b600015156000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff161515146108d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cf90611d77565b60405180910390fd5b6040518060400160405280600115158152602001828152506000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160010155905050808273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fb3a90d972008f68259598b99bd25087d8cdc6c4118eb50e891108b0c3d89929060405160405180910390a45050565b81816000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90611d37565b60405180910390fd5b610acc61162f565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900460ff161515151581526020016001820154815250509050610b8161164b565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806040016040529081600082015481526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509050600081600001511415610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca990611d57565b60405180910390fd5b42610cce836020015183600001516115da90919063ffffffff16565b1115610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690611cf7565b60405180910390fd5b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000808201600090556001820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550508573ffffffffffffffffffffffffffffffffffffffff166313f8c57882602001516040518263ffffffff1660e01b8152600401610dfa9190611c51565b600060405180830381600087803b158015610e1457600080fd5b505af1158015610e28573d6000803e3d6000fd5b50505050806020015173ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167f13f067a98be8c0a2e5ae6e2c974439fbcedebd79614cecc18fb903327b527ed660405160405180910390a4505050505050565b81336000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d90611d37565b60405180910390fd5b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015414611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90611dd7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109f90611db7565b60405180910390fd5b60405180604001604052804281526020018473ffffffffffffffffffffffffffffffffffffffff16815250600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555090505060008060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015490508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f3b03482050f9f2a45a6c6d3373b2483f857ad36cfae7d79ddf6c0fe8aa6e8d2d428560405161129c929190611e40565b60405180910390a45050505050565b80336000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90611d37565b60405180910390fd5b61138061164b565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806040016040529081600082015481526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152505090506000816000015114156114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890611d57565b60405180910390fd5b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000808201600090556001820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555050806020015173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fa2c14772ea92193e2ee43464f087c6831cde0723bafa30362b356e1db0aa1f4960405160405180910390a450505050565b600080828401905083811015611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90611cd7565b60405180910390fd5b8091505092915050565b6040518060400160405280600015158152602001600081525090565b604051806040016040528060008152602001600073ffffffffffffffffffffffffffffffffffffffff1681525090565b60008135905061168a81611f23565b92915050565b60008135905061169f81611f3a565b92915050565b6000815190506116b481611f51565b92915050565b6000813590506116c981611f68565b92915050565b6000602082840312156116e157600080fd5b60006116ef8482850161167b565b91505092915050565b6000806040838503121561170b57600080fd5b600061171985828601611690565b925050602061172a8582860161167b565b9150509250929050565b6000806040838503121561174757600080fd5b60006117558582860161167b565b92505060206117668582860161167b565b9150509250929050565b6000806040838503121561178357600080fd5b60006117918582860161167b565b92505060206117a2858286016116ba565b9150509250929050565b6000602082840312156117be57600080fd5b60006117cc848285016116a5565b91505092915050565b6117de81611e85565b82525050565b6117ed81611ea9565b82525050565b60006117fe82611e69565b6118088185611e74565b9350611818818560208601611edf565b61182181611f12565b840191505092915050565b6000611839602e83611e74565b91507f41524d3a205265636f76657279206d6f64756c65206e6f74207265676973746560008301527f72656420746f206163636f756e740000000000000000000000000000000000006020830152604082019050919050565b600061189f601b83611e74565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006118df603483611e74565b91507f41524d3a205265636f7665727920617474656d70742064656c6179207065726960008301527f6f6420686173206e6f7420636f6d706c657465640000000000000000000000006020830152604082019050919050565b6000611945602983611e74565b91507f41524d3a205265636f76657279206164647265737320697320616c726561647960008301527f20696e61637469766500000000000000000000000000000000000000000000006020830152604082019050919050565b60006119ab601e83611e74565b91507f41524d3a20496e616374697665207265636f76657279206163636f756e7400006000830152602082019050919050565b60006119eb602483611e74565b91507f41524d3a205265636f7665727920617474656d707420646f6573206e6f74206560008301527f78697374000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a51602c83611e74565b91507f41524d3a205265636f7665727920616464726573732068617320616c7265616460008301527f79206265656e20616464656400000000000000000000000000000000000000006020830152604082019050919050565b6000611ab7602883611e74565b91507f41524d3a2043616e6e6f74206164642073656c66206173207265636f7665727960008301527f206163636f756e740000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b1d602283611e74565b91507f41524d3a2041757468204b65792063616e6e6f7420626520616464726573732860008301527f30290000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b83602383611e74565b91507f41524d3a205265636f7665727920697320616c726561647920696e2070726f6360008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611be9602a83611e74565b91507f41524d3a205265636f7665727920616464726573732063616e6e6f742062652060008301527f61646472657373283029000000000000000000000000000000000000000000006020830152604082019050919050565b611c4b81611ed5565b82525050565b6000602082019050611c6660008301846117d5565b92915050565b6000604082019050611c8160008301856117e4565b611c8e6020830184611c42565b9392505050565b60006020820190508181036000830152611caf81846117f3565b905092915050565b60006020820190508181036000830152611cd08161182c565b9050919050565b60006020820190508181036000830152611cf081611892565b9050919050565b60006020820190508181036000830152611d10816118d2565b9050919050565b60006020820190508181036000830152611d3081611938565b9050919050565b60006020820190508181036000830152611d508161199e565b9050919050565b60006020820190508181036000830152611d70816119de565b9050919050565b60006020820190508181036000830152611d9081611a44565b9050919050565b60006020820190508181036000830152611db081611aaa565b9050919050565b60006020820190508181036000830152611dd081611b10565b9050919050565b60006020820190508181036000830152611df081611b76565b9050919050565b60006020820190508181036000830152611e1081611bdc565b9050919050565b6000604082019050611e2c6000830185611c42565b611e3960208301846117d5565b9392505050565b6000604082019050611e556000830185611c42565b611e626020830184611c42565b9392505050565b600081519050919050565b600082825260208201905092915050565b6000611e9082611eb5565b9050919050565b6000611ea282611eb5565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015611efd578082015181840152602081019050611ee2565b83811115611f0c576000848401525b50505050565b6000601f19601f8301169050919050565b611f2c81611e85565b8114611f3757600080fd5b50565b611f4381611e97565b8114611f4e57600080fd5b50565b611f5a81611ea9565b8114611f6557600080fd5b50565b611f7181611ed5565b8114611f7c57600080fd5b5056fea365627a7a7231582048bf14ecd7632b46156297a5a706a92089351550cd7d52db2c295e43e1cc89176c6578706572696d656e74616cf564736f6c63430005110040
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100935760003560e01c806395de59af1161006657806395de59af14610121578063bcc1b15414610152578063c5e43c041461016e578063c89ec68a1461018a578063c90db447146101a657610093565b806306fdde03146100985780634ba3bd2d146100b657806354fd4d50146100e75780638a2fb9dd14610105575b600080fd5b6100a06101c2565b6040516100ad9190611c95565b60405180910390f35b6100d060048036036100cb9190810190611734565b6101fb565b6040516100de929190611c6c565b60405180910390f35b6100ef610239565b6040516100fc9190611c95565b60405180910390f35b61011f600480360361011a91908101906116cf565b610272565b005b61013b60048036036101369190810190611734565b61060c565b604051610149929190611e17565b60405180910390f35b61016c60048036036101679190810190611770565b61065d565b005b610188600480360361018391908101906116f8565b6109f7565b005b6101a4600480360361019f9190810190611734565b610ea9565b005b6101c060048036036101bb91908101906116cf565b6112ab565b005b6040518060400160405280601981526020017f41757468657265756d205265636f76657279204d6f64756c650000000000000081525081565b6000602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900460ff16908060010154905082565b6040518060400160405280600a81526020017f323032303037303130300000000000000000000000000000000000000000000081525081565b600115156000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16151514610344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161033b90611d17565b60405180910390fd5b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160006101000a81549060ff0219169055600182016000905550506000600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000816000015414610500578060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fa2c14772ea92193e2ee43464f087c6831cde0723bafa30362b356e1db0aa1f4960405160405180910390a45b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000808201600090556001820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8f1c76c19bfffa92b569d5bb1fa3ffcb2351e4985a3f1f383fe1cd539dfec3ed60405160405180910390a35050565b6001602052816000526040600020602052806000526040600020600091509150508060000154908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082565b3373ffffffffffffffffffffffffffffffffffffffff16635175ca5e306040518263ffffffff1660e01b81526004016106969190611c51565b602060405180830381600087803b1580156106b057600080fd5b505af11580156106c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506106e891908101906117ac565b610727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071e90611cb7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078e90611df7565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fd90611d97565b60405180910390fd5b600015156000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff161515146108d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cf90611d77565b60405180910390fd5b6040518060400160405280600115158152602001828152506000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160010155905050808273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fb3a90d972008f68259598b99bd25087d8cdc6c4118eb50e891108b0c3d89929060405160405180910390a45050565b81816000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90611d37565b60405180910390fd5b610acc61162f565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900460ff161515151581526020016001820154815250509050610b8161164b565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806040016040529081600082015481526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509050600081600001511415610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca990611d57565b60405180910390fd5b42610cce836020015183600001516115da90919063ffffffff16565b1115610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690611cf7565b60405180910390fd5b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000808201600090556001820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550508573ffffffffffffffffffffffffffffffffffffffff166313f8c57882602001516040518263ffffffff1660e01b8152600401610dfa9190611c51565b600060405180830381600087803b158015610e1457600080fd5b505af1158015610e28573d6000803e3d6000fd5b50505050806020015173ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167f13f067a98be8c0a2e5ae6e2c974439fbcedebd79614cecc18fb903327b527ed660405160405180910390a4505050505050565b81336000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d90611d37565b60405180910390fd5b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015414611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90611dd7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109f90611db7565b60405180910390fd5b60405180604001604052804281526020018473ffffffffffffffffffffffffffffffffffffffff16815250600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555090505060008060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015490508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f3b03482050f9f2a45a6c6d3373b2483f857ad36cfae7d79ddf6c0fe8aa6e8d2d428560405161129c929190611e40565b60405180910390a45050505050565b80336000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90611d37565b60405180910390fd5b61138061164b565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806040016040529081600082015481526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152505090506000816000015114156114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890611d57565b60405180910390fd5b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000808201600090556001820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555050806020015173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fa2c14772ea92193e2ee43464f087c6831cde0723bafa30362b356e1db0aa1f4960405160405180910390a450505050565b600080828401905083811015611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90611cd7565b60405180910390fd5b8091505092915050565b6040518060400160405280600015158152602001600081525090565b604051806040016040528060008152602001600073ffffffffffffffffffffffffffffffffffffffff1681525090565b60008135905061168a81611f23565b92915050565b60008135905061169f81611f3a565b92915050565b6000815190506116b481611f51565b92915050565b6000813590506116c981611f68565b92915050565b6000602082840312156116e157600080fd5b60006116ef8482850161167b565b91505092915050565b6000806040838503121561170b57600080fd5b600061171985828601611690565b925050602061172a8582860161167b565b9150509250929050565b6000806040838503121561174757600080fd5b60006117558582860161167b565b92505060206117668582860161167b565b9150509250929050565b6000806040838503121561178357600080fd5b60006117918582860161167b565b92505060206117a2858286016116ba565b9150509250929050565b6000602082840312156117be57600080fd5b60006117cc848285016116a5565b91505092915050565b6117de81611e85565b82525050565b6117ed81611ea9565b82525050565b60006117fe82611e69565b6118088185611e74565b9350611818818560208601611edf565b61182181611f12565b840191505092915050565b6000611839602e83611e74565b91507f41524d3a205265636f76657279206d6f64756c65206e6f74207265676973746560008301527f72656420746f206163636f756e740000000000000000000000000000000000006020830152604082019050919050565b600061189f601b83611e74565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006118df603483611e74565b91507f41524d3a205265636f7665727920617474656d70742064656c6179207065726960008301527f6f6420686173206e6f7420636f6d706c657465640000000000000000000000006020830152604082019050919050565b6000611945602983611e74565b91507f41524d3a205265636f76657279206164647265737320697320616c726561647960008301527f20696e61637469766500000000000000000000000000000000000000000000006020830152604082019050919050565b60006119ab601e83611e74565b91507f41524d3a20496e616374697665207265636f76657279206163636f756e7400006000830152602082019050919050565b60006119eb602483611e74565b91507f41524d3a205265636f7665727920617474656d707420646f6573206e6f74206560008301527f78697374000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a51602c83611e74565b91507f41524d3a205265636f7665727920616464726573732068617320616c7265616460008301527f79206265656e20616464656400000000000000000000000000000000000000006020830152604082019050919050565b6000611ab7602883611e74565b91507f41524d3a2043616e6e6f74206164642073656c66206173207265636f7665727960008301527f206163636f756e740000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b1d602283611e74565b91507f41524d3a2041757468204b65792063616e6e6f7420626520616464726573732860008301527f30290000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b83602383611e74565b91507f41524d3a205265636f7665727920697320616c726561647920696e2070726f6360008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611be9602a83611e74565b91507f41524d3a205265636f7665727920616464726573732063616e6e6f742062652060008301527f61646472657373283029000000000000000000000000000000000000000000006020830152604082019050919050565b611c4b81611ed5565b82525050565b6000602082019050611c6660008301846117d5565b92915050565b6000604082019050611c8160008301856117e4565b611c8e6020830184611c42565b9392505050565b60006020820190508181036000830152611caf81846117f3565b905092915050565b60006020820190508181036000830152611cd08161182c565b9050919050565b60006020820190508181036000830152611cf081611892565b9050919050565b60006020820190508181036000830152611d10816118d2565b9050919050565b60006020820190508181036000830152611d3081611938565b9050919050565b60006020820190508181036000830152611d508161199e565b9050919050565b60006020820190508181036000830152611d70816119de565b9050919050565b60006020820190508181036000830152611d9081611a44565b9050919050565b60006020820190508181036000830152611db081611aaa565b9050919050565b60006020820190508181036000830152611dd081611b10565b9050919050565b60006020820190508181036000830152611df081611b76565b9050919050565b60006020820190508181036000830152611e1081611bdc565b9050919050565b6000604082019050611e2c6000830185611c42565b611e3960208301846117d5565b9392505050565b6000604082019050611e556000830185611c42565b611e626020830184611c42565b9392505050565b600081519050919050565b600082825260208201905092915050565b6000611e9082611eb5565b9050919050565b6000611ea282611eb5565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015611efd578082015181840152602081019050611ee2565b83811115611f0c576000848401525b50505050565b6000601f19601f8301169050919050565b611f2c81611e85565b8114611f3757600080fd5b50565b611f4381611e97565b8114611f4e57600080fd5b50565b611f5a81611ea9565b8114611f6557600080fd5b50565b611f7181611ed5565b8114611f7c57600080fd5b5056fea365627a7a7231582048bf14ecd7632b46156297a5a706a92089351550cd7d52db2c295e43e1cc89176c6578706572696d656e74616cf564736f6c63430005110040
Loading...
Loading
Loading...
Loading
OVERVIEW
Recovery key module for Authereum accounts.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.