More Info
Private Name Tags
ContractCreator
Multichain Info
No addresses found
Latest 25 from a total of 431 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Stop | 11436724 | 1555 days ago | IN | 0 ETH | 0.00109408 | ||||
Withdraw | 11385528 | 1563 days ago | IN | 0 ETH | 0.00322 | ||||
Withdraw | 11383107 | 1563 days ago | IN | 0 ETH | 0.0030316 | ||||
Withdraw | 11375728 | 1564 days ago | IN | 0 ETH | 0.00309923 | ||||
Withdraw | 11371139 | 1565 days ago | IN | 0 ETH | 0.00110336 | ||||
Withdraw | 11364434 | 1566 days ago | IN | 0 ETH | 0.00555819 | ||||
Withdraw | 11364431 | 1566 days ago | IN | 0 ETH | 0.00471415 | ||||
Withdraw | 11363406 | 1566 days ago | IN | 0 ETH | 0.00404566 | ||||
Withdraw | 11363394 | 1566 days ago | IN | 0 ETH | 0.00444477 | ||||
Withdraw | 11363380 | 1566 days ago | IN | 0 ETH | 0.00417539 | ||||
Withdraw | 11363360 | 1566 days ago | IN | 0 ETH | 0.00510462 | ||||
Withdraw | 11363355 | 1566 days ago | IN | 0 ETH | 0.0045577 | ||||
Withdraw | 11363343 | 1566 days ago | IN | 0 ETH | 0.0053077 | ||||
Withdraw | 11359678 | 1567 days ago | IN | 0 ETH | 0.00509539 | ||||
Withdraw | 11354997 | 1567 days ago | IN | 0 ETH | 0.00202035 | ||||
Withdraw | 11354864 | 1567 days ago | IN | 0 ETH | 0.00319081 | ||||
Withdraw | 11354850 | 1567 days ago | IN | 0 ETH | 0.00276031 | ||||
Withdraw | 11354824 | 1567 days ago | IN | 0 ETH | 0.00214128 | ||||
Withdraw | 11347822 | 1569 days ago | IN | 0 ETH | 0.00233565 | ||||
Stake | 11344179 | 1569 days ago | IN | 0 ETH | 0.00187765 | ||||
Stake | 11344179 | 1569 days ago | IN | 0 ETH | 0.00187765 | ||||
Stake | 11344179 | 1569 days ago | IN | 0 ETH | 0.00208543 | ||||
Stake | 11344179 | 1569 days ago | IN | 0 ETH | 0.00187788 | ||||
Get Reward | 11344178 | 1569 days ago | IN | 0 ETH | 0.00183695 | ||||
Withdraw | 11342146 | 1569 days ago | IN | 0 ETH | 0.00222923 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
FeVaultV1
Compiler Version
v0.5.5+commit.47a71e8f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-11-05 */ pragma solidity ^0.5.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.5.0; /** * @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. */ 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; } } // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.5.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal {} // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/ownership/Ownable.sol pragma solidity ^0.5.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { _owner = _msgSender(); emit OwnershipTransferred(address(0), _owner); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _msgSender() == _owner; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); function mint(address account, uint amount) external; /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.5.5; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * This test is non-exhaustive, and there may be false-negatives: during the * execution of a contract's constructor, its address will be reported as * not containing a contract. * * IMPORTANT: It is unsafe to assume that an address for which this * function returns false is an externally-owned account (EOA) and not a * contract. */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly {codehash := extcodehash(account)} return (codehash != 0x0 && codehash != accountHash); } /** * @dev Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * _Available since v2.4.0._ */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. * * _Available since v2.4.0._ */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-call-value (bool success,) = recipient.call.value(amount)(""); require(success, "Address: unable to send value, recipient may have reverted"); } } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol pragma solidity ^0.5.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. // A Solidity high level call has three parts: // 1. The target address is checked to verify it contains contract code // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. // solhint-disable-next-line max-line-length require(address(token).isContract(), "SafeERC20: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success, "SafeERC20: low-level call failed"); if (returndata.length > 0) {// Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: contracts/IGovernanceAddressRecipient.sol pragma solidity ^0.5.0; contract IGovernanceAddressRecipient is Ownable { address GovernanceAddress; modifier onlyGovernanceAddress() { require(_msgSender() == GovernanceAddress, "Caller is not reward distribution"); _; } function setGovernanceAddress(address _GovernanceAddress) external onlyOwner { GovernanceAddress = _GovernanceAddress; } } // File: contracts/Rewards.sol pragma solidity ^0.5.0; contract StakeTokenWrapper { using SafeMath for uint256; using SafeERC20 for IERC20; IERC20 public stakeToken; uint256 private _totalSupply; mapping(address => uint256) private _balances; constructor(address _stakeToken) public { stakeToken = IERC20(_stakeToken); } function totalSupply() public view returns (uint256) { return _totalSupply; } function balanceOf(address account) public view returns (uint256) { return _balances[account]; } function stake(uint256 amount) public { _totalSupply = _totalSupply.add(amount); _balances[msg.sender] = _balances[msg.sender].add(amount); stakeToken.safeTransferFrom(msg.sender, address(this), amount); } function withdraw(uint256 amount) public { _totalSupply = _totalSupply.sub(amount); _balances[msg.sender] = _balances[msg.sender].sub(amount); stakeToken.safeTransfer(msg.sender, amount); } } contract FeVaultV1 is StakeTokenWrapper(0x1C48b1DEF1404750359D3ff5a765a90C3F702999), IGovernanceAddressRecipient { IERC20 public FECORE = IERC20(0x704b5267FAE30C40Fd0A4b14D83E414B4A920afA); uint256 public constant DURATION = 180 days; uint256 public initReward = 0; uint256 public startTime = 0; uint256 public periodFinish = 0; uint256 public rewardRate = 0; uint256 public lastUpdateTime; bool public stakeable = false; uint256 public rewardPerTokenStored; mapping(address => uint256) public userRewardPerTokenPaid; mapping(address => uint256) public rewards; event DepositStake(uint256 reward); event StartStaking(uint256 time); event StopStaking(uint256 time); event Staked(address indexed user, uint256 amount); event Withdrawn(address indexed user, uint256 amount); event RewardPaid(address indexed user, uint256 reward); modifier updateReward(address account) { rewardPerTokenStored = rewardPerToken(); lastUpdateTime = lastTimeRewardApplicable(); if (account != address(0)) { rewards[account] = earned(account); userRewardPerTokenPaid[account] = rewardPerTokenStored; } _; } modifier checkStart(){ require( initReward > 0, "No reward to stake." ); require( stakeable, "Staking is not started." ); _; } constructor() public { GovernanceAddress = msg.sender; } function lastTimeRewardApplicable() public view returns (uint256) { return Math.min(block.timestamp, periodFinish); } function remainingReward() public view returns (uint256) { return FECORE.balanceOf(address(this)); } function stop() public onlyGovernanceAddress { require(stakeable, "Staking is not started."); FECORE.safeTransfer(address(0x489B689850999F751760a38d03693Bd979C4A690), remainingReward()); stakeable = false; initReward = 0; rewardRate = 0; emit StopStaking(block.timestamp); } function rewardPerToken() public view returns (uint256) { if (totalSupply() == 0) { return rewardPerTokenStored; } return rewardPerTokenStored.add( lastTimeRewardApplicable() .sub(lastUpdateTime) .mul(rewardRate) .mul(1e18) .div(totalSupply()) ); } function earned(address account) public view returns (uint256) { return balanceOf(account) .mul(rewardPerToken().sub(userRewardPerTokenPaid[account])) .div(1e18) .add(rewards[account]); } function start() public onlyGovernanceAddress { require(!stakeable, "Staking is started."); require(initReward > 0, "Cannot start. Require initReward"); periodFinish = block.timestamp.add(DURATION); stakeable = true; startTime = block.timestamp; emit StartStaking(block.timestamp); } function depositReward(uint256 amount) public onlyGovernanceAddress { require(!stakeable, "Staking is started."); require(amount > 0, "Cannot deposit 0"); FECORE.safeTransferFrom(msg.sender, address(this), amount); initReward = amount; rewardRate = initReward.div(DURATION); emit DepositStake(amount); } // stake visibility is public as overriding LPTokenWrapper's stake() function function stake(uint256 amount) public updateReward(msg.sender) checkStart { require(amount > 0, "Cannot stake 0"); super.stake(amount); emit Staked(msg.sender, amount); } function withdraw(uint256 amount) public updateReward(msg.sender) checkStart { require(amount > 0, "Cannot withdraw 0"); super.withdraw(amount); emit Withdrawn(msg.sender, amount); } function exitStake() external { withdraw(balanceOf(msg.sender)); getReward(); } function getReward() public updateReward(msg.sender) checkStart { uint256 reward = earned(msg.sender); if (reward > 0) { rewards[msg.sender] = 0; FECORE.safeTransfer(msg.sender, reward); emit RewardPaid(msg.sender, reward); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"earned","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"rewards","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"stop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DURATION","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"depositReward","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"FECORE","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"exitStake","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getReward","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"stakeToken","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"stakeable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastTimeRewardApplicable","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"userRewardPerTokenPaid","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"initReward","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"stake","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"start","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lastUpdateTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardPerToken","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_GovernanceAddress","type":"address"}],"name":"setGovernanceAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"rewardPerTokenStored","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"remainingReward","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"periodFinish","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"reward","type":"uint256"}],"name":"DepositStake","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"time","type":"uint256"}],"name":"StartStaking","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"time","type":"uint256"}],"name":"StopStaking","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"user","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"user","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"user","type":"address"},{"indexed":false,"name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Contract Creation Code
6080604052600580546001600160a01b03191673704b5267fae30c40fd0a4b14d83e414b4a920afa1790556000600681905560078190556008819055600955600b805460ff1916905534801561005457600080fd5b50600080546001600160a01b031916731c48b1def1404750359d3ff5a765a90c3f70299917905561008a6100ed602090811b901c565b600380546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3600480546001600160a01b031916331790556100f1565b3390565b6117ff806101006000396000f3fe608060405234801561001057600080fd5b50600436106101d95760003560e01c80637b0a47ee11610104578063be9a6555116100a2578063df136d6511610071578063df136d65146103c7578063e1c4c9fe146103cf578063ebe2b12b146103d7578063f2fde38b146103df576101d9565b8063be9a655514610389578063c8f33c9114610391578063cd3daf9d14610399578063cfc16254146103a1576101d9565b80638da5cb5b116100de5780638da5cb5b146103545780638f32d59b1461035c5780639bfffad714610364578063a694fc3a1461036c576101d9565b80637b0a47ee1461031e57806380faa57d146103265780638b8763471461032e576101d9565b80632e1a7d4d1161017c57806370a082311161014b57806370a08231146102cc578063715018a6146102f257806375a776d6146102fa57806378e9792514610316576101d9565b80632e1a7d4d146102975780633882f742146102b45780633d18b912146102bc57806351ed6a30146102c4576101d9565b806318160ddd116101b857806318160ddd146102465780631be052891461024e5780631e2720ff146102565780632942e77314610273576101d9565b80628cc262146101de5780630700037d1461021657806307da68f51461023c575b600080fd5b610204600480360360208110156101f457600080fd5b50356001600160a01b0316610405565b60408051918252519081900360200190f35b6102046004803603602081101561022c57600080fd5b50356001600160a01b031661048b565b61024461049d565b005b6102046105c5565b6102046105cc565b6102446004803603602081101561026c57600080fd5b50356105d3565b61027b610750565b604080516001600160a01b039092168252519081900360200190f35b610244600480360360208110156102ad57600080fd5b503561075f565b6102446108f0565b61024461090b565b61027b610a79565b610204600480360360208110156102e257600080fd5b50356001600160a01b0316610a88565b610244610aa3565b610302610b4b565b604080519115158252519081900360200190f35b610204610b54565b610204610b5a565b610204610b60565b6102046004803603602081101561034457600080fd5b50356001600160a01b0316610b73565b61027b610b85565b610302610b94565b610204610bba565b6102446004803603602081101561038257600080fd5b5035610bc0565b610244610d51565b610204610ebe565b610204610ec4565b610244600480360360208110156103b757600080fd5b50356001600160a01b0316610f1a565b610204610f9a565b610204610fa0565b61020461101f565b610244600480360360208110156103f557600080fd5b50356001600160a01b0316611025565b6001600160a01b0381166000908152600e6020908152604080832054600d909252822054610485919061047990670de0b6b3a76400009061046d906104589061044c610ec4565b9063ffffffff61108f16565b61046188610a88565b9063ffffffff6110d816565b9063ffffffff61113816565b9063ffffffff61117a16565b92915050565b600e6020526000908152604090205481565b6004546001600160a01b03166104b16111d7565b6001600160a01b0316146104f957604051600160e51b62461bcd0281526004018080602001828103825260218152602001806117896021913960400191505060405180910390fd5b600b5460ff1615156105435760408051600160e51b62461bcd0281526020600482015260176024820152600080516020611748833981519152604482015290519081900360640190fd5b61057c73489b689850999f751760a38d03693bd979c4a690610563610fa0565b6005546001600160a01b0316919063ffffffff6111db16565b600b805460ff19169055600060068190556009556040805142815290517f844769bc94a2b0b6e18c8649b94e6dea9460cf27630e50da40b24bec16d898ab9181900360200190a1565b6001545b90565b62ed4e0081565b6004546001600160a01b03166105e76111d7565b6001600160a01b03161461062f57604051600160e51b62461bcd0281526004018080602001828103825260218152602001806117896021913960400191505060405180910390fd5b600b5460ff161561068a5760408051600160e51b62461bcd02815260206004820152601360248201527f5374616b696e6720697320737461727465642e00000000000000000000000000604482015290519081900360640190fd5b8015156106e15760408051600160e51b62461bcd02815260206004820152601060248201527f43616e6e6f74206465706f736974203000000000000000000000000000000000604482015290519081900360640190fd5b6005546106ff906001600160a01b031633308463ffffffff61123516565b60068190556107178162ed4e0063ffffffff61113816565b6009556040805182815290517f054a903637a366320c31e23f961726344072ccf4de8c6cb7944791b9b1229dee9181900360200190a150565b6005546001600160a01b031681565b33610768610ec4565b600c55610773610b60565b600a556001600160a01b038116156107ba5761078e81610405565b6001600160a01b0382166000908152600e6020908152604080832093909355600c54600d909152919020555b600654151561080c5760408051600160e51b62461bcd0281526020600482015260136024820152600160691b722737903932bbb0b932103a379039ba30b5b29702604482015290519081900360640190fd5b600b5460ff1615156108565760408051600160e51b62461bcd0281526020600482015260176024820152600080516020611748833981519152604482015290519081900360640190fd5b8115156108ad5760408051600160e51b62461bcd02815260206004820152601160248201527f43616e6e6f742077697468647261772030000000000000000000000000000000604482015290519081900360640190fd5b6108b682611298565b60408051838152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a25050565b6109016108fc33610a88565b61075f565b61090961090b565b565b33610914610ec4565b600c5561091f610b60565b600a556001600160a01b038116156109665761093a81610405565b6001600160a01b0382166000908152600e6020908152604080832093909355600c54600d909152919020555b60065415156109b85760408051600160e51b62461bcd0281526020600482015260136024820152600160691b722737903932bbb0b932103a379039ba30b5b29702604482015290519081900360640190fd5b600b5460ff161515610a025760408051600160e51b62461bcd0281526020600482015260176024820152600080516020611748833981519152604482015290519081900360640190fd5b6000610a0d33610405565b90508015610a7557336000818152600e6020526040812055600554610a3e916001600160a01b0390911690836111db565b60408051828152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b5050565b6000546001600160a01b031681565b6001600160a01b031660009081526002602052604090205490565b610aab610b94565b1515610b015760408051600160e51b62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b600b5460ff1681565b60075481565b60095481565b6000610b6e426008546112f9565b905090565b600d6020526000908152604090205481565b6003546001600160a01b031690565b6003546000906001600160a01b0316610bab6111d7565b6001600160a01b031614905090565b60065481565b33610bc9610ec4565b600c55610bd4610b60565b600a556001600160a01b03811615610c1b57610bef81610405565b6001600160a01b0382166000908152600e6020908152604080832093909355600c54600d909152919020555b6006541515610c6d5760408051600160e51b62461bcd0281526020600482015260136024820152600160691b722737903932bbb0b932103a379039ba30b5b29702604482015290519081900360640190fd5b600b5460ff161515610cb75760408051600160e51b62461bcd0281526020600482015260176024820152600080516020611748833981519152604482015290519081900360640190fd5b811515610d0e5760408051600160e51b62461bcd02815260206004820152600e60248201527f43616e6e6f74207374616b652030000000000000000000000000000000000000604482015290519081900360640190fd5b610d178261130f565b60408051838152905133917f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d919081900360200190a25050565b6004546001600160a01b0316610d656111d7565b6001600160a01b031614610dad57604051600160e51b62461bcd0281526004018080602001828103825260218152602001806117896021913960400191505060405180910390fd5b600b5460ff1615610e085760408051600160e51b62461bcd02815260206004820152601360248201527f5374616b696e6720697320737461727465642e00000000000000000000000000604482015290519081900360640190fd5b6006541515610e615760408051600160e51b62461bcd02815260206004820181905260248201527f43616e6e6f742073746172742e205265717569726520696e6974526577617264604482015290519081900360640190fd5b610e744262ed4e0063ffffffff61117a16565b600855600b805460ff1916600117905542600781905560408051918252517f35f87ec121777dc0cc72cd4066439fd5218001344ebdadccc8cfcf3c3dee61089181900360200190a1565b600a5481565b6000610ece6105c5565b1515610edd5750600c546105c9565b610b6e610f0b610eeb6105c5565b61046d670de0b6b3a7640000610461600954610461600a5461044c610b60565b600c549063ffffffff61117a16565b610f22610b94565b1515610f785760408051600160e51b62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b600c5481565b60055460408051600160e01b6370a0823102815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610fee57600080fd5b505afa158015611002573d6000803e3d6000fd5b505050506040513d602081101561101857600080fd5b5051905090565b60085481565b61102d610b94565b15156110835760408051600160e51b62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61108c81611371565b50565b60006110d183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611417565b9392505050565b60008215156110e957506000610485565b8282028284828115156110f857fe5b04146110d157604051600160e51b62461bcd0281526004018080602001828103825260218152602001806117686021913960400191505060405180910390fd5b60006110d183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506114b1565b6000828201838110156110d15760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0316600160e01b63a9059cbb0217905261123090849061151e565b505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b0316600160e01b6323b872dd0217905261129290859061151e565b50505050565b6001546112ab908263ffffffff61108f16565b600155336000908152600260205260409020546112ce908263ffffffff61108f16565b33600081815260026020526040812092909255905461108c916001600160a01b0390911690836111db565b600081831061130857816110d1565b5090919050565b600154611322908263ffffffff61117a16565b60015533600090815260026020526040902054611345908263ffffffff61117a16565b33600081815260026020526040812092909255905461108c916001600160a01b03909116903084611235565b6001600160a01b03811615156113bb57604051600160e51b62461bcd0281526004018080602001828103825260268152602001806117226026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b600081848411156114a957604051600160e51b62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561146e578181015183820152602001611456565b50505050905090810190601f16801561149b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183151561150657604051600160e51b62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360008381101561146e578181015183820152602001611456565b506000838581151561151457fe5b0495945050505050565b611530826001600160a01b03166116e5565b15156115865760408051600160e51b62461bcd02815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106115c45780518252601f1990920191602091820191016115a5565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611626576040519150601f19603f3d011682016040523d82523d6000602084013e61162b565b606091505b50915091508115156116875760408051600160e51b62461bcd02815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115611292578080602001905160208110156116a357600080fd5b5051151561129257604051600160e51b62461bcd02815260040180806020018281038252602a8152602001806117aa602a913960400191505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081158015906117195750808214155b94935050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735374616b696e67206973206e6f7420737461727465642e000000000000000000536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7743616c6c6572206973206e6f742072657761726420646973747269627574696f6e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a165627a7a723058201680acf8a8b5dd41ed5624b9aeb8ffede644ccfe8cf30be6233af968f0dc5a660029
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101d95760003560e01c80637b0a47ee11610104578063be9a6555116100a2578063df136d6511610071578063df136d65146103c7578063e1c4c9fe146103cf578063ebe2b12b146103d7578063f2fde38b146103df576101d9565b8063be9a655514610389578063c8f33c9114610391578063cd3daf9d14610399578063cfc16254146103a1576101d9565b80638da5cb5b116100de5780638da5cb5b146103545780638f32d59b1461035c5780639bfffad714610364578063a694fc3a1461036c576101d9565b80637b0a47ee1461031e57806380faa57d146103265780638b8763471461032e576101d9565b80632e1a7d4d1161017c57806370a082311161014b57806370a08231146102cc578063715018a6146102f257806375a776d6146102fa57806378e9792514610316576101d9565b80632e1a7d4d146102975780633882f742146102b45780633d18b912146102bc57806351ed6a30146102c4576101d9565b806318160ddd116101b857806318160ddd146102465780631be052891461024e5780631e2720ff146102565780632942e77314610273576101d9565b80628cc262146101de5780630700037d1461021657806307da68f51461023c575b600080fd5b610204600480360360208110156101f457600080fd5b50356001600160a01b0316610405565b60408051918252519081900360200190f35b6102046004803603602081101561022c57600080fd5b50356001600160a01b031661048b565b61024461049d565b005b6102046105c5565b6102046105cc565b6102446004803603602081101561026c57600080fd5b50356105d3565b61027b610750565b604080516001600160a01b039092168252519081900360200190f35b610244600480360360208110156102ad57600080fd5b503561075f565b6102446108f0565b61024461090b565b61027b610a79565b610204600480360360208110156102e257600080fd5b50356001600160a01b0316610a88565b610244610aa3565b610302610b4b565b604080519115158252519081900360200190f35b610204610b54565b610204610b5a565b610204610b60565b6102046004803603602081101561034457600080fd5b50356001600160a01b0316610b73565b61027b610b85565b610302610b94565b610204610bba565b6102446004803603602081101561038257600080fd5b5035610bc0565b610244610d51565b610204610ebe565b610204610ec4565b610244600480360360208110156103b757600080fd5b50356001600160a01b0316610f1a565b610204610f9a565b610204610fa0565b61020461101f565b610244600480360360208110156103f557600080fd5b50356001600160a01b0316611025565b6001600160a01b0381166000908152600e6020908152604080832054600d909252822054610485919061047990670de0b6b3a76400009061046d906104589061044c610ec4565b9063ffffffff61108f16565b61046188610a88565b9063ffffffff6110d816565b9063ffffffff61113816565b9063ffffffff61117a16565b92915050565b600e6020526000908152604090205481565b6004546001600160a01b03166104b16111d7565b6001600160a01b0316146104f957604051600160e51b62461bcd0281526004018080602001828103825260218152602001806117896021913960400191505060405180910390fd5b600b5460ff1615156105435760408051600160e51b62461bcd0281526020600482015260176024820152600080516020611748833981519152604482015290519081900360640190fd5b61057c73489b689850999f751760a38d03693bd979c4a690610563610fa0565b6005546001600160a01b0316919063ffffffff6111db16565b600b805460ff19169055600060068190556009556040805142815290517f844769bc94a2b0b6e18c8649b94e6dea9460cf27630e50da40b24bec16d898ab9181900360200190a1565b6001545b90565b62ed4e0081565b6004546001600160a01b03166105e76111d7565b6001600160a01b03161461062f57604051600160e51b62461bcd0281526004018080602001828103825260218152602001806117896021913960400191505060405180910390fd5b600b5460ff161561068a5760408051600160e51b62461bcd02815260206004820152601360248201527f5374616b696e6720697320737461727465642e00000000000000000000000000604482015290519081900360640190fd5b8015156106e15760408051600160e51b62461bcd02815260206004820152601060248201527f43616e6e6f74206465706f736974203000000000000000000000000000000000604482015290519081900360640190fd5b6005546106ff906001600160a01b031633308463ffffffff61123516565b60068190556107178162ed4e0063ffffffff61113816565b6009556040805182815290517f054a903637a366320c31e23f961726344072ccf4de8c6cb7944791b9b1229dee9181900360200190a150565b6005546001600160a01b031681565b33610768610ec4565b600c55610773610b60565b600a556001600160a01b038116156107ba5761078e81610405565b6001600160a01b0382166000908152600e6020908152604080832093909355600c54600d909152919020555b600654151561080c5760408051600160e51b62461bcd0281526020600482015260136024820152600160691b722737903932bbb0b932103a379039ba30b5b29702604482015290519081900360640190fd5b600b5460ff1615156108565760408051600160e51b62461bcd0281526020600482015260176024820152600080516020611748833981519152604482015290519081900360640190fd5b8115156108ad5760408051600160e51b62461bcd02815260206004820152601160248201527f43616e6e6f742077697468647261772030000000000000000000000000000000604482015290519081900360640190fd5b6108b682611298565b60408051838152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a25050565b6109016108fc33610a88565b61075f565b61090961090b565b565b33610914610ec4565b600c5561091f610b60565b600a556001600160a01b038116156109665761093a81610405565b6001600160a01b0382166000908152600e6020908152604080832093909355600c54600d909152919020555b60065415156109b85760408051600160e51b62461bcd0281526020600482015260136024820152600160691b722737903932bbb0b932103a379039ba30b5b29702604482015290519081900360640190fd5b600b5460ff161515610a025760408051600160e51b62461bcd0281526020600482015260176024820152600080516020611748833981519152604482015290519081900360640190fd5b6000610a0d33610405565b90508015610a7557336000818152600e6020526040812055600554610a3e916001600160a01b0390911690836111db565b60408051828152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b5050565b6000546001600160a01b031681565b6001600160a01b031660009081526002602052604090205490565b610aab610b94565b1515610b015760408051600160e51b62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b600b5460ff1681565b60075481565b60095481565b6000610b6e426008546112f9565b905090565b600d6020526000908152604090205481565b6003546001600160a01b031690565b6003546000906001600160a01b0316610bab6111d7565b6001600160a01b031614905090565b60065481565b33610bc9610ec4565b600c55610bd4610b60565b600a556001600160a01b03811615610c1b57610bef81610405565b6001600160a01b0382166000908152600e6020908152604080832093909355600c54600d909152919020555b6006541515610c6d5760408051600160e51b62461bcd0281526020600482015260136024820152600160691b722737903932bbb0b932103a379039ba30b5b29702604482015290519081900360640190fd5b600b5460ff161515610cb75760408051600160e51b62461bcd0281526020600482015260176024820152600080516020611748833981519152604482015290519081900360640190fd5b811515610d0e5760408051600160e51b62461bcd02815260206004820152600e60248201527f43616e6e6f74207374616b652030000000000000000000000000000000000000604482015290519081900360640190fd5b610d178261130f565b60408051838152905133917f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d919081900360200190a25050565b6004546001600160a01b0316610d656111d7565b6001600160a01b031614610dad57604051600160e51b62461bcd0281526004018080602001828103825260218152602001806117896021913960400191505060405180910390fd5b600b5460ff1615610e085760408051600160e51b62461bcd02815260206004820152601360248201527f5374616b696e6720697320737461727465642e00000000000000000000000000604482015290519081900360640190fd5b6006541515610e615760408051600160e51b62461bcd02815260206004820181905260248201527f43616e6e6f742073746172742e205265717569726520696e6974526577617264604482015290519081900360640190fd5b610e744262ed4e0063ffffffff61117a16565b600855600b805460ff1916600117905542600781905560408051918252517f35f87ec121777dc0cc72cd4066439fd5218001344ebdadccc8cfcf3c3dee61089181900360200190a1565b600a5481565b6000610ece6105c5565b1515610edd5750600c546105c9565b610b6e610f0b610eeb6105c5565b61046d670de0b6b3a7640000610461600954610461600a5461044c610b60565b600c549063ffffffff61117a16565b610f22610b94565b1515610f785760408051600160e51b62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b600c5481565b60055460408051600160e01b6370a0823102815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610fee57600080fd5b505afa158015611002573d6000803e3d6000fd5b505050506040513d602081101561101857600080fd5b5051905090565b60085481565b61102d610b94565b15156110835760408051600160e51b62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61108c81611371565b50565b60006110d183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611417565b9392505050565b60008215156110e957506000610485565b8282028284828115156110f857fe5b04146110d157604051600160e51b62461bcd0281526004018080602001828103825260218152602001806117686021913960400191505060405180910390fd5b60006110d183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506114b1565b6000828201838110156110d15760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0316600160e01b63a9059cbb0217905261123090849061151e565b505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b0316600160e01b6323b872dd0217905261129290859061151e565b50505050565b6001546112ab908263ffffffff61108f16565b600155336000908152600260205260409020546112ce908263ffffffff61108f16565b33600081815260026020526040812092909255905461108c916001600160a01b0390911690836111db565b600081831061130857816110d1565b5090919050565b600154611322908263ffffffff61117a16565b60015533600090815260026020526040902054611345908263ffffffff61117a16565b33600081815260026020526040812092909255905461108c916001600160a01b03909116903084611235565b6001600160a01b03811615156113bb57604051600160e51b62461bcd0281526004018080602001828103825260268152602001806117226026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b600081848411156114a957604051600160e51b62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561146e578181015183820152602001611456565b50505050905090810190601f16801561149b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183151561150657604051600160e51b62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360008381101561146e578181015183820152602001611456565b506000838581151561151457fe5b0495945050505050565b611530826001600160a01b03166116e5565b15156115865760408051600160e51b62461bcd02815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106115c45780518252601f1990920191602091820191016115a5565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611626576040519150601f19603f3d011682016040523d82523d6000602084013e61162b565b606091505b50915091508115156116875760408051600160e51b62461bcd02815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115611292578080602001905160208110156116a357600080fd5b5051151561129257604051600160e51b62461bcd02815260040180806020018281038252602a8152602001806117aa602a913960400191505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081158015906117195750808214155b94935050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735374616b696e67206973206e6f7420737461727465642e000000000000000000536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7743616c6c6572206973206e6f742072657761726420646973747269627574696f6e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a165627a7a723058201680acf8a8b5dd41ed5624b9aeb8ffede644ccfe8cf30be6233af968f0dc5a660029
Deployed Bytecode Sourcemap
21415:4439:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21415:4439:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23972:228;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23972:228:0;-1:-1:-1;;;;;23972:228:0;;:::i;:::-;;;;;;;;;;;;;;;;21994:42;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21994:42:0;-1:-1:-1;;;;;21994:42:0;;:::i;23256:333::-;;;:::i;:::-;;20725:91;;;:::i;21619:43::-;;;:::i;24558:362::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24558:362:0;;:::i;21537:73::-;;;:::i;:::-;;;;-1:-1:-1;;;;;21537:73:0;;;;;;;;;;;;;;25221:214;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25221:214:0;;:::i;25443:102::-;;;:::i;25553:298::-;;;:::i;20504:24::-;;;:::i;20824:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20824:110:0;-1:-1:-1;;;;;20824:110:0;;:::i;9237:140::-;;;:::i;21852:29::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;21707:28;;;:::i;21780:29::-;;;:::i;22995:131::-;;;:::i;21930:57::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21930:57:0;-1:-1:-1;;;;;21930:57:0;;:::i;8426:79::-;;;:::i;8792:94::-;;;:::i;21671:29::-;;;:::i;25011:202::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25011:202:0;;:::i;24208:342::-;;;:::i;21816:29::-;;;:::i;23597:367::-;;;:::i;20185:149::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20185:149:0;-1:-1:-1;;;;;20185:149:0;;:::i;21888:35::-;;;:::i;23134:114::-;;;:::i;21742:31::-;;;:::i;9532:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9532:109:0;-1:-1:-1;;;;;9532:109:0;;:::i;23972:228::-;-1:-1:-1;;;;;24175:16:0;;24026:7;24175:16;;;:7;:16;;;;;;;;;24107:22;:31;;;;;;24053:139;;24175:16;24053:107;;24155:4;;24053:87;;24086:53;;:16;:14;:16::i;:::-;:20;:53;:20;:53;:::i;:::-;24053:18;24063:7;24053:9;:18::i;:::-;:32;:87;:32;:87;:::i;:::-;:101;:107;:101;:107;:::i;:::-;:121;:139;:121;:139;:::i;:::-;24046:146;23972:228;-1:-1:-1;;23972:228:0:o;21994:42::-;;;;;;;;;;;;;:::o;23256:333::-;20102:17;;-1:-1:-1;;;;;20102:17:0;20086:12;:10;:12::i;:::-;-1:-1:-1;;;;;20086:33:0;;20078:79;;;;-1:-1:-1;;;;;20078:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23320:9;;;;23312:45;;;;;;;-1:-1:-1;;;;;23312:45:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23312:45:0;;;;;;;;;;;;;;;23368:91;23396:42;23441:17;:15;:17::i;:::-;23368:6;;-1:-1:-1;;;;;23368:6:0;;:91;;:19;:91;:::i;:::-;23470:9;:17;;-1:-1:-1;;23470:17:0;;;23482:5;23498:10;:14;;;23523:10;:14;23553:28;;;23565:15;23553:28;;;;;;;;;;;;;23256:333::o;20725:91::-;20796:12;;20725:91;;:::o;21619:43::-;21654:8;21619:43;:::o;24558:362::-;20102:17;;-1:-1:-1;;;;;20102:17:0;20086:12;:10;:12::i;:::-;-1:-1:-1;;;;;20086:33:0;;20078:79;;;;-1:-1:-1;;;;;20078:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24646:9;;;;24645:10;24637:42;;;;;-1:-1:-1;;;;;24637:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24698:10;;;24690:39;;;;;-1:-1:-1;;;;;24690:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24740:6;;:58;;-1:-1:-1;;;;;24740:6:0;24764:10;24784:4;24791:6;24740:58;:23;:58;:::i;:::-;24809:10;:19;;;24852:24;24822:6;21654:8;24852:24;:14;:24;:::i;:::-;24839:10;:37;24892:20;;;;;;;;;;;;;;;;;24558:362;:::o;21537:73::-;;;-1:-1:-1;;;;;21537:73:0;;:::o;25221:214::-;25275:10;22416:16;:14;:16::i;:::-;22393:20;:39;22460:26;:24;:26::i;:::-;22443:14;:43;-1:-1:-1;;;;;22501:21:0;;;22497:157;;22558:15;22565:7;22558:6;:15::i;:::-;-1:-1:-1;;;;;22539:16:0;;;;;;:7;:16;;;;;;;;:34;;;;22622:20;;22588:22;:31;;;;;;:54;22497:157;22735:10;;:14;;22713:83;;;;;-1:-1:-1;;;;;22713:83:0;;;;;;;;;;;;-1:-1:-1;;;;;22713:83:0;;;;;;;;;;;;;;;22829:9;;;;22807:82;;;;;;;-1:-1:-1;;;;;22807:82:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22807:82:0;;;;;;;;;;;;;;;25317:10;;;25309:40;;;;;-1:-1:-1;;;;;25309:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25360:22;25375:6;25360:14;:22::i;:::-;25398:29;;;;;;;;25408:10;;25398:29;;;;;;;;;;25221:214;;:::o;25443:102::-;25484:31;25493:21;25503:10;25493:9;:21::i;:::-;25484:8;:31::i;:::-;25526:11;:9;:11::i;:::-;25443:102::o;25553:298::-;25594:10;22416:16;:14;:16::i;:::-;22393:20;:39;22460:26;:24;:26::i;:::-;22443:14;:43;-1:-1:-1;;;;;22501:21:0;;;22497:157;;22558:15;22565:7;22558:6;:15::i;:::-;-1:-1:-1;;;;;22539:16:0;;;;;;:7;:16;;;;;;;;:34;;;;22622:20;;22588:22;:31;;;;;;:54;22497:157;22735:10;;:14;;22713:83;;;;;-1:-1:-1;;;;;22713:83:0;;;;;;;;;;;;-1:-1:-1;;;;;22713:83:0;;;;;;;;;;;;;;;22829:9;;;;22807:82;;;;;;;-1:-1:-1;;;;;22807:82:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22807:82:0;;;;;;;;;;;;;;;25628:14;25645:18;25652:10;25645:6;:18::i;:::-;25628:35;-1:-1:-1;25678:10:0;;25674:170;;25713:10;25727:1;25705:19;;;:7;:19;;;;;:23;25743:6;;:39;;-1:-1:-1;;;;;25743:6:0;;;;25775;25743:19;:39::i;:::-;25802:30;;;;;;;;25813:10;;25802:30;;;;;;;;;;25674:170;22900:1;25553:298;:::o;20504:24::-;;;-1:-1:-1;;;;;20504:24:0;;:::o;20824:110::-;-1:-1:-1;;;;;20908:18:0;20881:7;20908:18;;;:9;:18;;;;;;;20824:110::o;9237:140::-;8638:9;:7;:9::i;:::-;8630:54;;;;;;;-1:-1:-1;;;;;8630:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9320:6;;9299:40;;9336:1;;-1:-1:-1;;;;;9320:6:0;;9299:40;;9336:1;;9299:40;9350:6;:19;;-1:-1:-1;;;;;;9350:19:0;;;9237:140::o;21852:29::-;;;;;;:::o;21707:28::-;;;;:::o;21780:29::-;;;;:::o;22995:131::-;23052:7;23079:39;23088:15;23105:12;;23079:8;:39::i;:::-;23072:46;;22995:131;:::o;21930:57::-;;;;;;;;;;;;;:::o;8426:79::-;8491:6;;-1:-1:-1;;;;;8491:6:0;8426:79;:::o;8792:94::-;8872:6;;8832:4;;-1:-1:-1;;;;;8872:6:0;8856:12;:10;:12::i;:::-;-1:-1:-1;;;;;8856:22:0;;8849:29;;8792:94;:::o;21671:29::-;;;;:::o;25011:202::-;25062:10;22416:16;:14;:16::i;:::-;22393:20;:39;22460:26;:24;:26::i;:::-;22443:14;:43;-1:-1:-1;;;;;22501:21:0;;;22497:157;;22558:15;22565:7;22558:6;:15::i;:::-;-1:-1:-1;;;;;22539:16:0;;;;;;:7;:16;;;;;;;;:34;;;;22622:20;;22588:22;:31;;;;;;:54;22497:157;22735:10;;:14;;22713:83;;;;;-1:-1:-1;;;;;22713:83:0;;;;;;;;;;;;-1:-1:-1;;;;;22713:83:0;;;;;;;;;;;;;;;22829:9;;;;22807:82;;;;;;;-1:-1:-1;;;;;22807:82:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22807:82:0;;;;;;;;;;;;;;;25104:10;;;25096:37;;;;;-1:-1:-1;;;;;25096:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25144:19;25156:6;25144:11;:19::i;:::-;25179:26;;;;;;;;25186:10;;25179:26;;;;;;;;;;25011:202;;:::o;24208:342::-;20102:17;;-1:-1:-1;;;;;20102:17:0;20086:12;:10;:12::i;:::-;-1:-1:-1;;;;;20086:33:0;;20078:79;;;;-1:-1:-1;;;;;20078:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24274:9;;;;24273:10;24265:42;;;;;-1:-1:-1;;;;;24265:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24326:10;;:14;;24318:59;;;;;-1:-1:-1;;;;;24318:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24403:29;:15;21654:8;24403:29;:19;:29;:::i;:::-;24388:12;:44;24443:9;:16;;-1:-1:-1;;24443:16:0;24455:4;24443:16;;;24482:15;24470:9;:27;;;24513:29;;;;;;;;;;;;;;;;24208:342::o;21816:29::-;;;;:::o;23597:367::-;23644:7;23668:13;:11;:13::i;:::-;:18;23664:78;;;-1:-1:-1;23710:20:0;;23703:27;;23664:78;23759:197;23798:147;23931:13;:11;:13::i;:::-;23798:114;23907:4;23798:90;23877:10;;23798:60;23843:14;;23798:26;:24;:26::i;:147::-;23759:20;;;:197;:24;:197;:::i;20185:149::-;8638:9;:7;:9::i;:::-;8630:54;;;;;;;-1:-1:-1;;;;;8630:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20288:17;:38;;-1:-1:-1;;;;;;20288:38:0;-1:-1:-1;;;;;20288:38:0;;;;;;;;;;20185:149::o;21888:35::-;;;;:::o;23134:114::-;23209:6;;:31;;;-1:-1:-1;;;;;23209:31:0;;23234:4;23209:31;;;;;;23182:7;;-1:-1:-1;;;;;23209:6:0;;:16;;:31;;;;;;;;;;;;;;:6;:31;;;5:2:-1;;;;30:1;27;20:12;5:2;23209:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23209:31:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23209:31:0;;-1:-1:-1;23134:114:0;:::o;21742:31::-;;;;:::o;9532:109::-;8638:9;:7;:9::i;:::-;8630:54;;;;;;;-1:-1:-1;;;;;8630:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9605:28;9624:8;9605:18;:28::i;:::-;9532:109;:::o;2168:136::-;2226:7;2253:43;2257:1;2260;2253:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;2246:50;2168:136;-1:-1:-1;;;2168:136:0:o;3084:471::-;3142:7;3387:6;;3383:47;;;-1:-1:-1;3417:1:0;3410:8;;3383:47;3454:5;;;3458:1;3454;:5;3478;;;;;;;;:10;3470:56;;;;-1:-1:-1;;;;;3470:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4023:132;4081:7;4108:39;4112:1;4115;4108:39;;;;;;;;;;;;;;;;;:3;:39::i;1712:181::-;1770:7;1802:5;;;1826:6;;;;1818:46;;;;;-1:-1:-1;;;;;1818:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;7166:98;7246:10;7166:98;:::o;16705:176::-;16814:58;;;-1:-1:-1;;;;;16814:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;16814:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;179:29;160:49;;16788:85:0;;16807:5;;16788:18;:85::i;:::-;16705:176;;;:::o;16889:204::-;17016:68;;;-1:-1:-1;;;;;17016:68:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;17016:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;179:29;160:49;;16990:95:0;;17009:5;;16990:18;:95::i;:::-;16889:204;;;;:::o;21187:221::-;21254:12;;:24;;21271:6;21254:24;:16;:24;:::i;:::-;21239:12;:39;21323:10;21313:21;;;;:9;:21;;;;;;:33;;21339:6;21313:33;:25;:33;:::i;:::-;21299:10;21289:21;;;;:9;:21;;;;;:57;;;;21357:10;;:43;;-1:-1:-1;;;;;21357:10:0;;;;21393:6;21357:23;:43::i;374:106::-;432:7;463:1;459;:5;:13;;471:1;459:13;;;-1:-1:-1;467:1:0;;374:106;-1:-1:-1;374:106:0:o;20942:237::-;21006:12;;:24;;21023:6;21006:24;:16;:24;:::i;:::-;20991:12;:39;21075:10;21065:21;;;;:9;:21;;;;;;:33;;21091:6;21065:33;:25;:33;:::i;:::-;21051:10;21041:21;;;;:9;:21;;;;;:57;;;;21109:10;;:62;;-1:-1:-1;;;;;21109:10:0;;;;21157:4;21164:6;21109:27;:62::i;9747:229::-;-1:-1:-1;;;;;9821:22:0;;;;9813:73;;;;-1:-1:-1;;;;;9813:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9923:6;;9902:38;;-1:-1:-1;;;;;9902:38:0;;;;9923:6;;9902:38;;9923:6;;9902:38;9951:6;:17;;-1:-1:-1;;;;;;9951:17:0;-1:-1:-1;;;;;9951:17:0;;;;;;;;;;9747:229::o;2641:192::-;2727:7;2763:12;2755:6;;;;2747:29;;;;-1:-1:-1;;;;;2747:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2747:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2799:5:0;;;2641:192::o;4685:345::-;4771:7;4873:12;4866:5;;;4858:28;;;;-1:-1:-1;;;;;4858:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;4858:28:0;;4897:9;4913:1;4909;:5;;;;;;;;;4685:345;-1:-1:-1;;;;;4685:345:0:o;18744:1113::-;19348:27;19356:5;-1:-1:-1;;;;;19348:25:0;;:27::i;:::-;19340:71;;;;;;;-1:-1:-1;;;;;19340:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19485:12;19499:23;19534:5;-1:-1:-1;;;;;19526:19:0;19546:4;19526:25;;;;;;;;;;;;;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;19526:25: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;;19484:67:0;;;;19570:7;19562:52;;;;;;;-1:-1:-1;;;;;19562:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19631:17;;:21;19627:223;;19772:10;19761:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19761:30:0;19753:85;;;;;;-1:-1:-1;;;;;19753:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13552:808;13612:4;14270:20;;14114:66;14309:15;;;;;:42;;;14340:11;14328:8;:23;;14309:42;14301:51;13552:808;-1:-1:-1;;;;13552:808:0:o
Swarm Source
bzzr://1680acf8a8b5dd41ed5624b9aeb8ffede644ccfe8cf30be6233af968f0dc5a66
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
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.