More Info
Private Name Tags
ContractCreator
Latest 11 from a total of 11 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Stake Tokens | 16710550 | 667 days ago | IN | 0 ETH | 0.00365926 | ||||
Stake Tokens | 16710542 | 667 days ago | IN | 0 ETH | 0.00379824 | ||||
Stake Tokens | 16710529 | 667 days ago | IN | 0 ETH | 0.00550586 | ||||
Set Price Feed C... | 16710495 | 667 days ago | IN | 0 ETH | 0.00092587 | ||||
Add Allowed Toke... | 16710490 | 667 days ago | IN | 0 ETH | 0.00087562 | ||||
Set Price Feed C... | 16710479 | 667 days ago | IN | 0 ETH | 0.00085634 | ||||
Add Allowed Toke... | 16710475 | 667 days ago | IN | 0 ETH | 0.0009521 | ||||
Set Price Feed C... | 16710468 | 667 days ago | IN | 0 ETH | 0.00087794 | ||||
Add Allowed Toke... | 16710463 | 667 days ago | IN | 0 ETH | 0.00091316 | ||||
Set Price Feed C... | 16703839 | 668 days ago | IN | 0 ETH | 0.00083877 | ||||
Add Allowed Toke... | 16703818 | 668 days ago | IN | 0 ETH | 0.00127605 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
TokenFarm
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT import "Ownable.sol"; import "IERC20.sol"; import "SafeERC20.sol"; import "AggregatorV3Interface.sol"; import "ReentrancyGuard.sol"; pragma solidity ^0.8.0; contract TokenFarm is Ownable, ReentrancyGuard { mapping(address => mapping(address => uint256)) public stakingBalance; mapping(address => uint256) public uniqueTokensStaked; mapping(address => address) public tokenPriceFeedMapping; address[] public stakers; address[] public allowedTokens; using SafeERC20 for IERC20; IERC20 public timeToken; uint256 public totalRaised; uint256 public goal; enum FUND_STATE { OPEN, REFUND, CLOSED } FUND_STATE public fund_state; constructor(address _timeTokenAddress) public { timeToken = IERC20(_timeTokenAddress); fund_state = FUND_STATE.OPEN; goal = 500000000000000000000000; } function stateOpen() public onlyOwner { fund_state = FUND_STATE.OPEN; } function stateRefund() public onlyOwner { fund_state = FUND_STATE.REFUND; } function stateClosed() public onlyOwner { fund_state = FUND_STATE.CLOSED; } function setPriceFeedContract(address _token, address _priceFeed) public onlyOwner { tokenPriceFeedMapping[_token] = _priceFeed; } function goalAmount() public onlyOwner returns (uint256) { return goal; } function totalERCRaised() public onlyOwner returns (uint256) { return totalRaised; } function getTokenValue(address _token) public view returns (uint256, uint256) { address priceFeedAddress = tokenPriceFeedMapping[_token]; AggregatorV3Interface priceFeed = AggregatorV3Interface( priceFeedAddress ); (, int256 price, , , ) = priceFeed.latestRoundData(); uint256 decimals = uint256(priceFeed.decimals()); return (uint256(price), decimals); } function stakeTokens(uint256 _amount, address _token) public nonReentrant { require(fund_state == FUND_STATE.OPEN); require(_amount > 0, "Amount must be more than zero!"); require(tokenIsAllowed(_token), "Token is currently not allowed!"); (uint256 price, uint256 decimals) = getTokenValue(_token); require( totalRaised + ((_amount * price) / ((10**decimals))) < goal, "Too much money" ); uint256 _amount2 = ((_amount * (10**20)) / (10**decimals)); IERC20(_token).safeTransferFrom(msg.sender, address(this), _amount); updateUniqueTokensStaked(msg.sender, _token); if (getUserTotalValue(msg.sender) <= 0) { stakers.push(msg.sender); } if ( address(_token) == address(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) ) { stakingBalance[_token][msg.sender] = stakingBalance[_token][msg.sender] + _amount2; totalRaised = uint256( totalRaised + (((_amount2 * price)) / ((10**decimals))) ); } if ( address(_token) == address(0xdAC17F958D2ee523a2206206994597C13D831ec7) ) { stakingBalance[_token][msg.sender] = stakingBalance[_token][msg.sender] + _amount2; totalRaised = uint256( totalRaised + (((_amount2 * price)) / ((10**decimals))) ); } if ( address(_token) == address(0x6B175474E89094C44Da98b954EedeAC495271d0F) ) { stakingBalance[_token][msg.sender] = stakingBalance[_token][msg.sender] + _amount; totalRaised = uint256( totalRaised + (((_amount * price)) / ((10**decimals))) ); } if ( address(_token) == address(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2) ) { stakingBalance[_token][msg.sender] = stakingBalance[_token][msg.sender] + _amount; totalRaised = uint256( totalRaised + (((_amount * price)) / ((10**decimals))) ); } } function issueTokens() public onlyOwner nonReentrant { require(fund_state == FUND_STATE.OPEN); for ( uint256 stakersIndex = 0; stakersIndex < stakers.length; stakersIndex++ ) { address recipient = stakers[stakersIndex]; uint256 userTotalValue = getUserTotalValue(recipient); timeToken.transfer(recipient, userTotalValue); } } function claimRefund(address _token) public nonReentrant { require(fund_state == FUND_STATE.REFUND); uint256 balance = stakingBalance[_token][msg.sender]; require(balance > 0, "Staking balance cannot be zero!"); IERC20(_token).safeTransfer(msg.sender, balance); stakingBalance[_token][msg.sender] = 0; uniqueTokensStaked[msg.sender] = uniqueTokensStaked[msg.sender] - 1; } function getUserTotalValue(address _user) public view returns (uint256) { uint256 totalValue = 0; require(uniqueTokensStaked[_user] > 0, "No tokens staked!"); for ( uint256 allowedTokensIndex = 0; allowedTokensIndex < allowedTokens.length; allowedTokensIndex++ ) { totalValue = totalValue + getUserSingleTokenValue( _user, allowedTokens[allowedTokensIndex] ); } return totalValue; } function getUserSingleTokenValue(address _user, address _token) public view returns (uint256) { if (uniqueTokensStaked[_user] <= 0) { return 0; } (uint256 price, uint256 decimals) = getTokenValue(_token); return ((stakingBalance[_token][_user] * price) / (10**decimals)); } function withdrawToken(address _token, uint256 _amount) external onlyOwner nonReentrant { IERC20 token = IERC20(_token); token.safeTransfer(msg.sender, _amount); } function updateUniqueTokensStaked(address _user, address _token) internal { if (stakingBalance[_token][_user] <= 0) { uniqueTokensStaked[_user] = uniqueTokensStaked[_user] + 1; } } function addAllowedTokens(address _token) public onlyOwner { allowedTokens.push(_token); } function tokenIsAllowed(address _token) public view returns (bool) { for ( uint256 allowedTokensIndex = 0; allowedTokensIndex < allowedTokens.length; allowedTokensIndex++ ) { if (allowedTokens[allowedTokensIndex] == _token) { return true; } } return false; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is 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. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @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]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface AggregatorV3Interface { function decimals() external view returns ( uint8 ); function description() external view returns ( string memory ); function version() external view returns ( uint256 ); // getRoundData and latestRoundData should both raise "No data present" // if they do not have data to report, instead of returning unset values // which could be misinterpreted as actual reported values. function getRoundData( uint80 _roundId ) external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); function latestRoundData() external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.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 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. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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); /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "Context.sol"; /** * @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. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * 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. */ abstract 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the 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 virtual onlyOwner { _setOwner(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 virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "IERC20.sol"; import "Address.sol"; /** * @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 IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { 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)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ 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' 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) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _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. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_timeTokenAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"addAllowedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allowedTokens","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"claimRefund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fund_state","outputs":[{"internalType":"enum TokenFarm.FUND_STATE","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"getTokenValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"address","name":"_token","type":"address"}],"name":"getUserSingleTokenValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getUserTotalValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goalAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"issueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_priceFeed","type":"address"}],"name":"setPriceFeedContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_token","type":"address"}],"name":"stakeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakers","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"stakingBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stateClosed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stateOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stateRefund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"timeToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"tokenIsAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokenPriceFeedMapping","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalERCRaised","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalRaised","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"uniqueTokensStaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50604051611a5c380380611a5c83398101604081905261002f916100c9565b61003833610079565b60018055600780546001600160a01b0319166001600160a01b0392909216919091179055600a805460ff191690556969e10de76676d08000006009556100f9565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100db57600080fd5b81516001600160a01b03811681146100f257600080fd5b9392505050565b611954806101086000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063c5c4744c11610097578063e27af3b911610071578063e27af3b91461037f578063f1c5d6c214610392578063f2fde38b146103ba578063fd5e6dd1146103cd57600080fd5b8063c5c4744c1461034b578063d08c9dbd14610354578063dd5b84671461035c57600080fd5b80639e281a98116100d35780639e281a98146102f2578063af3f5e2214610305578063b83e023414610318578063bffa55d51461033857600080fd5b8063715018a6146102c6578063877dd39d146102ce5780638da5cb5b146102e157600080fd5b806327927b3e1161016657806357e11a011161014057806357e11a01146102895780635e5f2e26146102a35780636043903d146102b657806360ab5852146102be57600080fd5b806327927b3e1461021457806329161a0014610255578063401938831461028057600080fd5b806304bedc04146101ae5780630bea440d146101b857806315637548146101cb578063171e44ea146101d35780632636b945146101e6578063276b11da14610201575b600080fd5b6101b66103e0565b005b6101b66101c63660046114f1565b61042a565b6101b66108e0565b6101b66101e136600461151d565b61091d565b6101ee610999565b6040519081526020015b60405180910390f35b6101ee61020f366004611538565b6109cb565b61023d61022236600461151d565b6004602052600090815260409020546001600160a01b031681565b6040516001600160a01b0390911681526020016101f8565b6101ee610263366004611538565b600260209081526000928352604080842090915290825290205481565b6101ee60095481565b600a546102969060ff1681565b6040516101f89190611578565b61023d6102b13660046115a0565b610a52565b6101b6610a7c565b6101b6610aba565b6101b6610c05565b6101b66102dc366004611538565b610c3b565b6000546001600160a01b031661023d565b6101b66103003660046115b9565b610c93565b6101ee61031336600461151d565b610d02565b6101ee61032636600461151d565b60036020526000908152604090205481565b6101b661034636600461151d565b610dc0565b6101ee60085481565b6101ee610ee1565b61036f61036a36600461151d565b610f13565b60405190151581526020016101f8565b60075461023d906001600160a01b031681565b6103a56103a036600461151d565b610f7c565b604080519283526020830191909152016101f8565b6101b66103c836600461151d565b61107c565b61023d6103db3660046115a0565b611117565b6000546001600160a01b031633146104135760405162461bcd60e51b815260040161040a906115e3565b60405180910390fd5b600a80546002919060ff19166001835b0217905550565b60026001540361044c5760405162461bcd60e51b815260040161040a90611618565b60026001556000600a5460ff16600281111561046a5761046a611562565b1461047457600080fd5b600082116104c45760405162461bcd60e51b815260206004820152601e60248201527f416d6f756e74206d757374206265206d6f7265207468616e207a65726f210000604482015260640161040a565b6104cd81610f13565b6105195760405162461bcd60e51b815260206004820152601f60248201527f546f6b656e2069732063757272656e746c79206e6f7420616c6c6f7765642100604482015260640161040a565b60008061052583610f7c565b600954919350915061053882600a611749565b6105428487611755565b61054c9190611774565b6008546105599190611796565b106105975760405162461bcd60e51b815260206004820152600e60248201526d546f6f206d756368206d6f6e657960901b604482015260640161040a565b60006105a482600a611749565b6105b78668056bc75e2d63100000611755565b6105c19190611774565b90506105d86001600160a01b038516333088611127565b6105e23385611198565b60006105ed33610d02565b1161063557600580546001810182556000919091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b031916331790555b73a0b86991c6218b36c1d19d4a2e9eb0ce3606eb47196001600160a01b038516016106dd576001600160a01b0384166000908152600260209081526040808320338452909152902054610689908290611796565b6001600160a01b03851660009081526002602090815260408083203384529091529020556106b882600a611749565b6106c28483611755565b6106cc9190611774565b6008546106d99190611796565b6008555b73dac17f958d2ee523a2206206994597c13d831ec6196001600160a01b03851601610785576001600160a01b0384166000908152600260209081526040808320338452909152902054610731908290611796565b6001600160a01b038516600090815260026020908152604080832033845290915290205561076082600a611749565b61076a8483611755565b6107749190611774565b6008546107819190611796565b6008555b736b175474e89094c44da98b954eedeac495271d0e196001600160a01b0385160161082d576001600160a01b03841660009081526002602090815260408083203384529091529020546107d9908690611796565b6001600160a01b038516600090815260026020908152604080832033845290915290205561080882600a611749565b6108128487611755565b61081c9190611774565b6008546108299190611796565b6008555b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc1196001600160a01b038516016108d5576001600160a01b0384166000908152600260209081526040808320338452909152902054610881908690611796565b6001600160a01b03851660009081526002602090815260408083203384529091529020556108b082600a611749565b6108ba8487611755565b6108c49190611774565b6008546108d19190611796565b6008555b505060018055505050565b6000546001600160a01b0316331461090a5760405162461bcd60e51b815260040161040a906115e3565b600a80546001919060ff19168280610423565b6000546001600160a01b031633146109475760405162461bcd60e51b815260040161040a906115e3565b600680546001810182556000919091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b0392909216919091179055565b600080546001600160a01b031633146109c45760405162461bcd60e51b815260040161040a906115e3565b5060095490565b6001600160a01b0382166000908152600360205260408120546109f057506000610a4c565b6000806109fc84610f7c565b9092509050610a0c81600a611749565b6001600160a01b038086166000908152600260209081526040808320938a1683529290522054610a3d908490611755565b610a479190611774565b925050505b92915050565b60068181548110610a6257600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546001600160a01b03163314610aa65760405162461bcd60e51b815260040161040a906115e3565b600a80546000919060ff1916600183610423565b6000546001600160a01b03163314610ae45760405162461bcd60e51b815260040161040a906115e3565b600260015403610b065760405162461bcd60e51b815260040161040a90611618565b60026001556000600a5460ff166002811115610b2457610b24611562565b14610b2e57600080fd5b60005b600554811015610bfe57600060058281548110610b5057610b506117ae565b60009182526020822001546001600160a01b03169150610b6f82610d02565b60075460405163a9059cbb60e01b81526001600160a01b0385811660048301526024820184905292935091169063a9059cbb906044016020604051808303816000875af1158015610bc4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be891906117c4565b5050508080610bf6906117e6565b915050610b31565b5060018055565b6000546001600160a01b03163314610c2f5760405162461bcd60e51b815260040161040a906115e3565b610c396000611204565b565b6000546001600160a01b03163314610c655760405162461bcd60e51b815260040161040a906115e3565b6001600160a01b03918216600090815260046020526040902080546001600160a01b03191691909216179055565b6000546001600160a01b03163314610cbd5760405162461bcd60e51b815260040161040a906115e3565b600260015403610cdf5760405162461bcd60e51b815260040161040a90611618565b600260015581610cf96001600160a01b0382163384611254565b50506001805550565b6001600160a01b0381166000908152600360205260408120548190610d5d5760405162461bcd60e51b81526020600482015260116024820152704e6f20746f6b656e73207374616b65642160781b604482015260640161040a565b60005b600654811015610db957610d9b8460068381548110610d8157610d816117ae565b6000918252602090912001546001600160a01b03166109cb565b610da59083611796565b915080610db1816117e6565b915050610d60565b5092915050565b600260015403610de25760405162461bcd60e51b815260040161040a90611618565b60026001908155600a5460ff166002811115610e0057610e00611562565b14610e0a57600080fd5b6001600160a01b038116600090815260026020908152604080832033845290915290205480610e7b5760405162461bcd60e51b815260206004820152601f60248201527f5374616b696e672062616c616e63652063616e6e6f74206265207a65726f2100604482015260640161040a565b610e8f6001600160a01b0383163383611254565b6001600160a01b038216600090815260026020908152604080832033845282528083208390556003909152902054610ec9906001906117ff565b33600090815260036020526040902055505060018055565b600080546001600160a01b03163314610f0c5760405162461bcd60e51b815260040161040a906115e3565b5060085490565b6000805b600654811015610f7357826001600160a01b031660068281548110610f3e57610f3e6117ae565b6000918252602090912001546001600160a01b031603610f615750600192915050565b80610f6b816117e6565b915050610f17565b50600092915050565b6001600160a01b038082166000908152600460208190526040808320548151633fabe5a360e21b815291519394859491169283928592849263feaf968c928082019260a09290918290030181865afa158015610fdc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110009190611830565b5050509150506000826001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611046573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106a9190611880565b919760ff909216965090945050505050565b6000546001600160a01b031633146110a65760405162461bcd60e51b815260040161040a906115e3565b6001600160a01b03811661110b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161040a565b61111481611204565b50565b60058181548110610a6257600080fd5b6040516001600160a01b03808516602483015283166044820152606481018290526111929085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611289565b50505050565b6001600160a01b03808216600090815260026020908152604080832093861683529290522054611200576001600160a01b0382166000908152600360205260409020546111e6906001611796565b6001600160a01b0383166000908152600360205260409020555b5050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040516001600160a01b03831660248201526044810182905261128490849063a9059cbb60e01b9060640161115b565b505050565b60006112de826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661135b9092919063ffffffff16565b80519091501561128457808060200190518101906112fc91906117c4565b6112845760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161040a565b606061136a8484600085611374565b90505b9392505050565b6060824710156113d55760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161040a565b843b6114235760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161040a565b600080866001600160a01b0316858760405161143f91906118cf565b60006040518083038185875af1925050503d806000811461147c576040519150601f19603f3d011682016040523d82523d6000602084013e611481565b606091505b509150915061149182828661149c565b979650505050505050565b606083156114ab57508161136d565b8251156114bb5782518084602001fd5b8160405162461bcd60e51b815260040161040a91906118eb565b80356001600160a01b03811681146114ec57600080fd5b919050565b6000806040838503121561150457600080fd5b82359150611514602084016114d5565b90509250929050565b60006020828403121561152f57600080fd5b61136d826114d5565b6000806040838503121561154b57600080fd5b611554836114d5565b9150611514602084016114d5565b634e487b7160e01b600052602160045260246000fd5b602081016003831061159a57634e487b7160e01b600052602160045260246000fd5b91905290565b6000602082840312156115b257600080fd5b5035919050565b600080604083850312156115cc57600080fd5b6115d5836114d5565b946020939093013593505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156116a05781600019048211156116865761168661164f565b8085161561169357918102915b93841c939080029061166a565b509250929050565b6000826116b757506001610a4c565b816116c457506000610a4c565b81600181146116da57600281146116e457611700565b6001915050610a4c565b60ff8411156116f5576116f561164f565b50506001821b610a4c565b5060208310610133831016604e8410600b8410161715611723575081810a610a4c565b61172d8383611665565b80600019048211156117415761174161164f565b029392505050565b600061136d83836116a8565b600081600019048311821515161561176f5761176f61164f565b500290565b60008261179157634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156117a9576117a961164f565b500190565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156117d657600080fd5b8151801515811461136d57600080fd5b6000600182016117f8576117f861164f565b5060010190565b6000828210156118115761181161164f565b500390565b805169ffffffffffffffffffff811681146114ec57600080fd5b600080600080600060a0868803121561184857600080fd5b61185186611816565b945060208601519350604086015192506060860151915061187460808701611816565b90509295509295909350565b60006020828403121561189257600080fd5b815160ff8116811461136d57600080fd5b60005b838110156118be5781810151838201526020016118a6565b838111156111925750506000910152565b600082516118e18184602087016118a3565b9190910192915050565b602081526000825180602084015261190a8160408501602087016118a3565b601f01601f1916919091016040019291505056fea2646970667358221220f6baf53a8926674d4b306a864df827aa62160bf3de79fe77f8e11530c3ebd71a64736f6c634300080d003300000000000000000000000097624e29c2b66e84c3ca0e14c1acdabc507c3641
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063c5c4744c11610097578063e27af3b911610071578063e27af3b91461037f578063f1c5d6c214610392578063f2fde38b146103ba578063fd5e6dd1146103cd57600080fd5b8063c5c4744c1461034b578063d08c9dbd14610354578063dd5b84671461035c57600080fd5b80639e281a98116100d35780639e281a98146102f2578063af3f5e2214610305578063b83e023414610318578063bffa55d51461033857600080fd5b8063715018a6146102c6578063877dd39d146102ce5780638da5cb5b146102e157600080fd5b806327927b3e1161016657806357e11a011161014057806357e11a01146102895780635e5f2e26146102a35780636043903d146102b657806360ab5852146102be57600080fd5b806327927b3e1461021457806329161a0014610255578063401938831461028057600080fd5b806304bedc04146101ae5780630bea440d146101b857806315637548146101cb578063171e44ea146101d35780632636b945146101e6578063276b11da14610201575b600080fd5b6101b66103e0565b005b6101b66101c63660046114f1565b61042a565b6101b66108e0565b6101b66101e136600461151d565b61091d565b6101ee610999565b6040519081526020015b60405180910390f35b6101ee61020f366004611538565b6109cb565b61023d61022236600461151d565b6004602052600090815260409020546001600160a01b031681565b6040516001600160a01b0390911681526020016101f8565b6101ee610263366004611538565b600260209081526000928352604080842090915290825290205481565b6101ee60095481565b600a546102969060ff1681565b6040516101f89190611578565b61023d6102b13660046115a0565b610a52565b6101b6610a7c565b6101b6610aba565b6101b6610c05565b6101b66102dc366004611538565b610c3b565b6000546001600160a01b031661023d565b6101b66103003660046115b9565b610c93565b6101ee61031336600461151d565b610d02565b6101ee61032636600461151d565b60036020526000908152604090205481565b6101b661034636600461151d565b610dc0565b6101ee60085481565b6101ee610ee1565b61036f61036a36600461151d565b610f13565b60405190151581526020016101f8565b60075461023d906001600160a01b031681565b6103a56103a036600461151d565b610f7c565b604080519283526020830191909152016101f8565b6101b66103c836600461151d565b61107c565b61023d6103db3660046115a0565b611117565b6000546001600160a01b031633146104135760405162461bcd60e51b815260040161040a906115e3565b60405180910390fd5b600a80546002919060ff19166001835b0217905550565b60026001540361044c5760405162461bcd60e51b815260040161040a90611618565b60026001556000600a5460ff16600281111561046a5761046a611562565b1461047457600080fd5b600082116104c45760405162461bcd60e51b815260206004820152601e60248201527f416d6f756e74206d757374206265206d6f7265207468616e207a65726f210000604482015260640161040a565b6104cd81610f13565b6105195760405162461bcd60e51b815260206004820152601f60248201527f546f6b656e2069732063757272656e746c79206e6f7420616c6c6f7765642100604482015260640161040a565b60008061052583610f7c565b600954919350915061053882600a611749565b6105428487611755565b61054c9190611774565b6008546105599190611796565b106105975760405162461bcd60e51b815260206004820152600e60248201526d546f6f206d756368206d6f6e657960901b604482015260640161040a565b60006105a482600a611749565b6105b78668056bc75e2d63100000611755565b6105c19190611774565b90506105d86001600160a01b038516333088611127565b6105e23385611198565b60006105ed33610d02565b1161063557600580546001810182556000919091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b031916331790555b73a0b86991c6218b36c1d19d4a2e9eb0ce3606eb47196001600160a01b038516016106dd576001600160a01b0384166000908152600260209081526040808320338452909152902054610689908290611796565b6001600160a01b03851660009081526002602090815260408083203384529091529020556106b882600a611749565b6106c28483611755565b6106cc9190611774565b6008546106d99190611796565b6008555b73dac17f958d2ee523a2206206994597c13d831ec6196001600160a01b03851601610785576001600160a01b0384166000908152600260209081526040808320338452909152902054610731908290611796565b6001600160a01b038516600090815260026020908152604080832033845290915290205561076082600a611749565b61076a8483611755565b6107749190611774565b6008546107819190611796565b6008555b736b175474e89094c44da98b954eedeac495271d0e196001600160a01b0385160161082d576001600160a01b03841660009081526002602090815260408083203384529091529020546107d9908690611796565b6001600160a01b038516600090815260026020908152604080832033845290915290205561080882600a611749565b6108128487611755565b61081c9190611774565b6008546108299190611796565b6008555b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc1196001600160a01b038516016108d5576001600160a01b0384166000908152600260209081526040808320338452909152902054610881908690611796565b6001600160a01b03851660009081526002602090815260408083203384529091529020556108b082600a611749565b6108ba8487611755565b6108c49190611774565b6008546108d19190611796565b6008555b505060018055505050565b6000546001600160a01b0316331461090a5760405162461bcd60e51b815260040161040a906115e3565b600a80546001919060ff19168280610423565b6000546001600160a01b031633146109475760405162461bcd60e51b815260040161040a906115e3565b600680546001810182556000919091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b0392909216919091179055565b600080546001600160a01b031633146109c45760405162461bcd60e51b815260040161040a906115e3565b5060095490565b6001600160a01b0382166000908152600360205260408120546109f057506000610a4c565b6000806109fc84610f7c565b9092509050610a0c81600a611749565b6001600160a01b038086166000908152600260209081526040808320938a1683529290522054610a3d908490611755565b610a479190611774565b925050505b92915050565b60068181548110610a6257600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546001600160a01b03163314610aa65760405162461bcd60e51b815260040161040a906115e3565b600a80546000919060ff1916600183610423565b6000546001600160a01b03163314610ae45760405162461bcd60e51b815260040161040a906115e3565b600260015403610b065760405162461bcd60e51b815260040161040a90611618565b60026001556000600a5460ff166002811115610b2457610b24611562565b14610b2e57600080fd5b60005b600554811015610bfe57600060058281548110610b5057610b506117ae565b60009182526020822001546001600160a01b03169150610b6f82610d02565b60075460405163a9059cbb60e01b81526001600160a01b0385811660048301526024820184905292935091169063a9059cbb906044016020604051808303816000875af1158015610bc4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be891906117c4565b5050508080610bf6906117e6565b915050610b31565b5060018055565b6000546001600160a01b03163314610c2f5760405162461bcd60e51b815260040161040a906115e3565b610c396000611204565b565b6000546001600160a01b03163314610c655760405162461bcd60e51b815260040161040a906115e3565b6001600160a01b03918216600090815260046020526040902080546001600160a01b03191691909216179055565b6000546001600160a01b03163314610cbd5760405162461bcd60e51b815260040161040a906115e3565b600260015403610cdf5760405162461bcd60e51b815260040161040a90611618565b600260015581610cf96001600160a01b0382163384611254565b50506001805550565b6001600160a01b0381166000908152600360205260408120548190610d5d5760405162461bcd60e51b81526020600482015260116024820152704e6f20746f6b656e73207374616b65642160781b604482015260640161040a565b60005b600654811015610db957610d9b8460068381548110610d8157610d816117ae565b6000918252602090912001546001600160a01b03166109cb565b610da59083611796565b915080610db1816117e6565b915050610d60565b5092915050565b600260015403610de25760405162461bcd60e51b815260040161040a90611618565b60026001908155600a5460ff166002811115610e0057610e00611562565b14610e0a57600080fd5b6001600160a01b038116600090815260026020908152604080832033845290915290205480610e7b5760405162461bcd60e51b815260206004820152601f60248201527f5374616b696e672062616c616e63652063616e6e6f74206265207a65726f2100604482015260640161040a565b610e8f6001600160a01b0383163383611254565b6001600160a01b038216600090815260026020908152604080832033845282528083208390556003909152902054610ec9906001906117ff565b33600090815260036020526040902055505060018055565b600080546001600160a01b03163314610f0c5760405162461bcd60e51b815260040161040a906115e3565b5060085490565b6000805b600654811015610f7357826001600160a01b031660068281548110610f3e57610f3e6117ae565b6000918252602090912001546001600160a01b031603610f615750600192915050565b80610f6b816117e6565b915050610f17565b50600092915050565b6001600160a01b038082166000908152600460208190526040808320548151633fabe5a360e21b815291519394859491169283928592849263feaf968c928082019260a09290918290030181865afa158015610fdc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110009190611830565b5050509150506000826001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611046573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106a9190611880565b919760ff909216965090945050505050565b6000546001600160a01b031633146110a65760405162461bcd60e51b815260040161040a906115e3565b6001600160a01b03811661110b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161040a565b61111481611204565b50565b60058181548110610a6257600080fd5b6040516001600160a01b03808516602483015283166044820152606481018290526111929085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611289565b50505050565b6001600160a01b03808216600090815260026020908152604080832093861683529290522054611200576001600160a01b0382166000908152600360205260409020546111e6906001611796565b6001600160a01b0383166000908152600360205260409020555b5050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040516001600160a01b03831660248201526044810182905261128490849063a9059cbb60e01b9060640161115b565b505050565b60006112de826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661135b9092919063ffffffff16565b80519091501561128457808060200190518101906112fc91906117c4565b6112845760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161040a565b606061136a8484600085611374565b90505b9392505050565b6060824710156113d55760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161040a565b843b6114235760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161040a565b600080866001600160a01b0316858760405161143f91906118cf565b60006040518083038185875af1925050503d806000811461147c576040519150601f19603f3d011682016040523d82523d6000602084013e611481565b606091505b509150915061149182828661149c565b979650505050505050565b606083156114ab57508161136d565b8251156114bb5782518084602001fd5b8160405162461bcd60e51b815260040161040a91906118eb565b80356001600160a01b03811681146114ec57600080fd5b919050565b6000806040838503121561150457600080fd5b82359150611514602084016114d5565b90509250929050565b60006020828403121561152f57600080fd5b61136d826114d5565b6000806040838503121561154b57600080fd5b611554836114d5565b9150611514602084016114d5565b634e487b7160e01b600052602160045260246000fd5b602081016003831061159a57634e487b7160e01b600052602160045260246000fd5b91905290565b6000602082840312156115b257600080fd5b5035919050565b600080604083850312156115cc57600080fd5b6115d5836114d5565b946020939093013593505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156116a05781600019048211156116865761168661164f565b8085161561169357918102915b93841c939080029061166a565b509250929050565b6000826116b757506001610a4c565b816116c457506000610a4c565b81600181146116da57600281146116e457611700565b6001915050610a4c565b60ff8411156116f5576116f561164f565b50506001821b610a4c565b5060208310610133831016604e8410600b8410161715611723575081810a610a4c565b61172d8383611665565b80600019048211156117415761174161164f565b029392505050565b600061136d83836116a8565b600081600019048311821515161561176f5761176f61164f565b500290565b60008261179157634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156117a9576117a961164f565b500190565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156117d657600080fd5b8151801515811461136d57600080fd5b6000600182016117f8576117f861164f565b5060010190565b6000828210156118115761181161164f565b500390565b805169ffffffffffffffffffff811681146114ec57600080fd5b600080600080600060a0868803121561184857600080fd5b61185186611816565b945060208601519350604086015192506060860151915061187460808701611816565b90509295509295909350565b60006020828403121561189257600080fd5b815160ff8116811461136d57600080fd5b60005b838110156118be5781810151838201526020016118a6565b838111156111925750506000910152565b600082516118e18184602087016118a3565b9190910192915050565b602081526000825180602084015261190a8160408501602087016118a3565b601f01601f1916919091016040019291505056fea2646970667358221220f6baf53a8926674d4b306a864df827aa62160bf3de79fe77f8e11530c3ebd71a64736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000097624e29c2b66e84c3ca0e14c1acdabc507c3641
-----Decoded View---------------
Arg [0] : _timeTokenAddress (address): 0x97624e29c2B66E84C3CA0E14C1acDabc507c3641
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000097624e29c2b66e84c3ca0e14c1acdabc507c3641
Deployed Bytecode Sourcemap
192:6815:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100:87;;;:::i;:::-;;2007:2279;;;;;;:::i;:::-;;:::i;1007:87::-;;;:::i;6527:102::-;;;;;;:::i;:::-;;:::i;1361:85::-;;;:::i;:::-;;;788:25:8;;;776:2;761:18;1361:85:7;;;;;;;;5737:349;;;;;;:::i;:::-;;:::i;379:56::-;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;379:56:7;;;;;;-1:-1:-1;;;;;1253:32:8;;;1235:51;;1223:2;1208:18;379:56:7;1089:203:8;245:69:7;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;600:19;;;;;;698:28;;;;;;;;;;;;;;;;:::i;471:30::-;;;;;;:::i;:::-;;:::i;918:83::-;;;:::i;4292:433::-;;;:::i;1596:92:4:-;;;:::i;1193:162:7:-;;;;;;:::i;:::-;;:::i;964:85:4:-;1010:7;1036:6;-1:-1:-1;;;;;1036:6:4;964:85;;6092:211:7;;;;;;:::i;:::-;;:::i;5161:570::-;;;;;;:::i;:::-;;:::i;320:53::-;;;;;;:::i;:::-;;;;;;;;;;;;;;4731:424;;;;;;:::i;:::-;;:::i;568:26::-;;;;;;1452:96;;;:::i;6635:370::-;;;;;;:::i;:::-;;:::i;:::-;;;2385:14:8;;2378:22;2360:41;;2348:2;2333:18;6635:370:7;2220:187:8;539:23:7;;;;;-1:-1:-1;;;;;539:23:7;;;1554:447;;;;;;:::i;:::-;;:::i;:::-;;;;2808:25:8;;;2864:2;2849:18;;2842:34;;;;2781:18;1554:447:7;2634:248:8;1837:189:4;;;;;;:::i;:::-;;:::i;441:24:7:-;;;;;;:::i;:::-;;:::i;1100:87::-;1010:7:4;1036:6;-1:-1:-1;;;;;1036:6:4;665:10:2;1176:23:4;1168:68;;;;-1:-1:-1;;;1168:68:4;;;;;;;:::i;:::-;;;;;;;;;1150:10:7::1;:30:::0;;1163:17:::1;::::0;1150:10;-1:-1:-1;;1150:30:7::1;::::0;1163:17;1150:30:::1;;;;;;1100:87::o:0;2007:2279::-;1680:1:5;2259:7;;:19;2251:63;;;;-1:-1:-1;;;2251:63:5;;;;;;;:::i;:::-;1680:1;2389:7;:18;2113:15:7::1;2099:10;::::0;::::1;;:29;::::0;::::1;;;;;;:::i;:::-;;2091:38;;;::::0;::::1;;2157:1;2147:7;:11;2139:54;;;::::0;-1:-1:-1;;;2139:54:7;;3810:2:8;2139:54:7::1;::::0;::::1;3792:21:8::0;3849:2;3829:18;;;3822:30;3888:32;3868:18;;;3861:60;3938:18;;2139:54:7::1;3608:354:8::0;2139:54:7::1;2211:22;2226:6;2211:14;:22::i;:::-;2203:66;;;::::0;-1:-1:-1;;;2203:66:7;;4169:2:8;2203:66:7::1;::::0;::::1;4151:21:8::0;4208:2;4188:18;;;4181:30;4247:33;4227:18;;;4220:61;4298:18;;2203:66:7::1;3967:355:8::0;2203:66:7::1;2280:13;2295:16:::0;2315:21:::1;2329:6;2315:13;:21::i;:::-;2422:4;::::0;2279:57;;-1:-1:-1;2279:57:7;-1:-1:-1;2404:12:7::1;2279:57:::0;2404:2:::1;:12;:::i;:::-;2383:15;2393:5:::0;2383:7;:15:::1;:::i;:::-;2382:36;;;;:::i;:::-;2367:11;;:52;;;;:::i;:::-;:59;2346:120;;;::::0;-1:-1:-1;;;2346:120:7;;6563:2:8;2346:120:7::1;::::0;::::1;6545:21:8::0;6602:2;6582:18;;;6575:30;-1:-1:-1;;;6621:18:8;;;6614:44;6675:18;;2346:120:7::1;6361:338:8::0;2346:120:7::1;2476:16;2520:12;2524:8:::0;2520:2:::1;:12;:::i;:::-;2497:18;:7:::0;2508:6:::1;2497:18;:::i;:::-;2496:37;;;;:::i;:::-;2476:58:::0;-1:-1:-1;2544:67:7::1;-1:-1:-1::0;;;;;2544:31:7;::::1;2576:10;2596:4;2603:7:::0;2544:31:::1;:67::i;:::-;2621:44;2646:10;2658:6;2621:24;:44::i;:::-;2712:1;2679:29;2697:10;2679:17;:29::i;:::-;:34;2675:89;;2729:7;:24:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;2729:24:7;;;;;::::1;::::0;;-1:-1:-1;;;;;;2729:24:7::1;2742:10;2729:24;::::0;;2675:89:::1;-1:-1:-1::0;;;;;;;2790:82:7;::::1;::::0;2773:371:::1;;-1:-1:-1::0;;;;;2950:22:7;::::1;;::::0;;;:14:::1;:22;::::0;;;;;;;2973:10:::1;2950:34:::0;;;;;;;;:61:::1;::::0;3003:8;;2950:61:::1;:::i;:::-;-1:-1:-1::0;;;;;2897:22:7;::::1;;::::0;;;:14:::1;:22;::::0;;;;;;;2920:10:::1;2897:34:::0;;;;;;;:114;3104:12:::1;3108:8:::0;3104:2:::1;:12;:::i;:::-;3081:16;3092:5:::0;3081:8;:16:::1;:::i;:::-;3079:39;;;;:::i;:::-;3064:11;;:55;;;;:::i;:::-;3025:11;:108:::0;2773:371:::1;-1:-1:-1::0;;;;;;;3170:82:7;::::1;::::0;3153:371:::1;;-1:-1:-1::0;;;;;3330:22:7;::::1;;::::0;;;:14:::1;:22;::::0;;;;;;;3353:10:::1;3330:34:::0;;;;;;;;:61:::1;::::0;3383:8;;3330:61:::1;:::i;:::-;-1:-1:-1::0;;;;;3277:22:7;::::1;;::::0;;;:14:::1;:22;::::0;;;;;;;3300:10:::1;3277:34:::0;;;;;;;:114;3484:12:::1;3488:8:::0;3484:2:::1;:12;:::i;:::-;3461:16;3472:5:::0;3461:8;:16:::1;:::i;:::-;3459:39;;;;:::i;:::-;3444:11;;:55;;;;:::i;:::-;3405:11;:108:::0;3153:371:::1;-1:-1:-1::0;;;;;;;3550:82:7;::::1;::::0;3533:369:::1;;-1:-1:-1::0;;;;;3710:22:7;::::1;;::::0;;;:14:::1;:22;::::0;;;;;;;3733:10:::1;3710:34:::0;;;;;;;;:60:::1;::::0;3763:7;;3710:60:::1;:::i;:::-;-1:-1:-1::0;;;;;3657:22:7;::::1;;::::0;;;:14:::1;:22;::::0;;;;;;;3680:10:::1;3657:34:::0;;;;;;;:113;3862:12:::1;3866:8:::0;3862:2:::1;:12;:::i;:::-;3840:15;3850:5:::0;3840:7;:15:::1;:::i;:::-;3838:38;;;;:::i;:::-;3823:11;;:54;;;;:::i;:::-;3784:11;:107:::0;3533:369:::1;-1:-1:-1::0;;;;;;;3928:82:7;::::1;::::0;3911:369:::1;;-1:-1:-1::0;;;;;4088:22:7;::::1;;::::0;;;:14:::1;:22;::::0;;;;;;;4111:10:::1;4088:34:::0;;;;;;;;:60:::1;::::0;4141:7;;4088:60:::1;:::i;:::-;-1:-1:-1::0;;;;;4035:22:7;::::1;;::::0;;;:14:::1;:22;::::0;;;;;;;4058:10:::1;4035:34:::0;;;;;;;:113;4240:12:::1;4244:8:::0;4240:2:::1;:12;:::i;:::-;4218:15;4228:5:::0;4218:7;:15:::1;:::i;:::-;4216:38;;;;:::i;:::-;4201:11;;:54;;;;:::i;:::-;4162:11;:107:::0;3911:369:::1;-1:-1:-1::0;;1637:1:5;2562:22;;-1:-1:-1;;;2007:2279:7:o;1007:87::-;1010:7:4;1036:6;-1:-1:-1;;;;;1036:6:4;665:10:2;1176:23:4;1168:68;;;;-1:-1:-1;;;1168:68:4;;;;;;;:::i;:::-;1057:10:7::1;:30:::0;;1070:17:::1;::::0;1057:10;-1:-1:-1;;1057:30:7::1;1070:17:::0;;1057:30:::1;::::0;6527:102;1010:7:4;1036:6;-1:-1:-1;;;;;1036:6:4;665:10:2;1176:23:4;1168:68;;;;-1:-1:-1;;;1168:68:4;;;;;;;:::i;:::-;6596:13:7::1;:26:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;6596:26:7;;;;;::::1;::::0;;-1:-1:-1;;;;;;6596:26:7::1;-1:-1:-1::0;;;;;6596:26:7;;;::::1;::::0;;;::::1;::::0;;6527:102::o;1361:85::-;1409:7;1036:6:4;;-1:-1:-1;;;;;1036:6:4;665:10:2;1176:23:4;1168:68;;;;-1:-1:-1;;;1168:68:4;;;;;;;:::i;:::-;-1:-1:-1;1435:4:7::1;::::0;1361:85;:::o;5737:349::-;-1:-1:-1;;;;;5873:25:7;;5846:7;5873:25;;;:18;:25;;;;;;5869:69;;-1:-1:-1;5926:1:7;5919:8;;5869:69;5948:13;5963:16;5983:21;5997:6;5983:13;:21::i;:::-;5947:57;;-1:-1:-1;5947:57:7;-1:-1:-1;6065:12:7;5947:57;6065:2;:12;:::i;:::-;-1:-1:-1;;;;;6023:22:7;;;;;;;:14;:22;;;;;;;;:29;;;;;;;;;;:37;;6055:5;;6023:37;:::i;:::-;6022:56;;;;:::i;:::-;6014:65;;;;5737:349;;;;;:::o;471:30::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;471:30:7;;-1:-1:-1;471:30:7;:::o;918:83::-;1010:7:4;1036:6;-1:-1:-1;;;;;1036:6:4;665:10:2;1176:23:4;1168:68;;;;-1:-1:-1;;;1168:68:4;;;;;;;:::i;:::-;966:10:7::1;:28:::0;;979:15:::1;::::0;966:10;-1:-1:-1;;966:28:7::1;::::0;979:15;966:28:::1;::::0;4292:433;1010:7:4;1036:6;-1:-1:-1;;;;;1036:6:4;665:10:2;1176:23:4;1168:68;;;;-1:-1:-1;;;1168:68:4;;;;;;;:::i;:::-;1680:1:5::1;2259:7;;:19:::0;2251:63:::1;;;;-1:-1:-1::0;;;2251:63:5::1;;;;;;;:::i;:::-;1680:1;2389:7;:18:::0;4377:15:7::2;4363:10;::::0;::::2;;:29;::::0;::::2;;;;;;:::i;:::-;;4355:38;;;::::0;::::2;;4421:20;4403:316;4474:7;:14:::0;4459:29;::::2;4403:316;;;4541:17;4561:7;4569:12;4561:21;;;;;;;;:::i;:::-;;::::0;;;::::2;::::0;;::::2;::::0;-1:-1:-1;;;;;4561:21:7::2;::::0;-1:-1:-1;4621:28:7::2;4561:21:::0;4621:17:::2;:28::i;:::-;4663:9;::::0;:45:::2;::::0;-1:-1:-1;;;4663:45:7;;-1:-1:-1;;;;;7028:32:8;;;4663:45:7::2;::::0;::::2;7010:51:8::0;7077:18;;;7070:34;;;4596:53:7;;-1:-1:-1;4663:9:7;::::2;::::0;:18:::2;::::0;6983::8;;4663:45:7::2;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;4527:192;;4502:14;;;;;:::i;:::-;;;;4403:316;;;-1:-1:-1::0;1637:1:5::1;2562:22:::0;;4292:433:7:o;1596:92:4:-;1010:7;1036:6;-1:-1:-1;;;;;1036:6:4;665:10:2;1176:23:4;1168:68;;;;-1:-1:-1;;;1168:68:4;;;;;;;:::i;:::-;1660:21:::1;1678:1;1660:9;:21::i;:::-;1596:92::o:0;1193:162:7:-;1010:7:4;1036:6;-1:-1:-1;;;;;1036:6:4;665:10:2;1176:23:4;1168:68;;;;-1:-1:-1;;;1168:68:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;1306:29:7;;::::1;;::::0;;;:21:::1;:29;::::0;;;;:42;;-1:-1:-1;;;;;;1306:42:7::1;::::0;;;::::1;;::::0;;1193:162::o;6092:211::-;1010:7:4;1036:6;-1:-1:-1;;;;;1036:6:4;665:10:2;1176:23:4;1168:68;;;;-1:-1:-1;;;1168:68:4;;;;;;;:::i;:::-;1680:1:5::1;2259:7;;:19:::0;2251:63:::1;;;;-1:-1:-1::0;;;2251:63:5::1;;;;;;;:::i;:::-;1680:1;2389:7;:18:::0;6240:6:7;6257:39:::2;-1:-1:-1::0;;;;;6257:18:7;::::2;6276:10;6288:7:::0;6257:18:::2;:39::i;:::-;-1:-1:-1::0;;1637:1:5::1;2562:22:::0;;-1:-1:-1;6092:211:7:o;5161:570::-;-1:-1:-1;;;;;5283:25:7;;5224:7;5283:25;;;:18;:25;;;;;;5224:7;;5275:59;;;;-1:-1:-1;;;5275:59:7;;7739:2:8;5275:59:7;;;7721:21:8;7778:2;7758:18;;;7751:30;-1:-1:-1;;;7797:18:8;;;7790:47;7854:18;;5275:59:7;7537:341:8;5275:59:7;5362:26;5344:354;5427:13;:20;5406:41;;5344:354;;;5564:123;5609:5;5636:13;5650:18;5636:33;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;5636:33:7;5564:23;:123::i;:::-;5535:152;;:10;:152;:::i;:::-;5506:181;-1:-1:-1;5461:20:7;;;;:::i;:::-;;;;5344:354;;;-1:-1:-1;5714:10:7;5161:570;-1:-1:-1;;5161:570:7:o;4731:424::-;1680:1:5;2259:7;;:19;2251:63;;;;-1:-1:-1;;;2251:63:5;;;;;;;:::i;:::-;1680:1;2389:7;:18;;;4806:10:7::1;::::0;::::1;;:31;::::0;::::1;;;;;;:::i;:::-;;4798:40;;;::::0;::::1;;-1:-1:-1::0;;;;;4866:22:7;::::1;4848:15;4866:22:::0;;;:14:::1;:22;::::0;;;;;;;4889:10:::1;4866:34:::0;;;;;;;;4918:11;4910:55:::1;;;::::0;-1:-1:-1;;;4910:55:7;;8085:2:8;4910:55:7::1;::::0;::::1;8067:21:8::0;8124:2;8104:18;;;8097:30;8163:33;8143:18;;;8136:61;8214:18;;4910:55:7::1;7883:355:8::0;4910:55:7::1;4975:48;-1:-1:-1::0;;;;;4975:27:7;::::1;5003:10;5015:7:::0;4975:27:::1;:48::i;:::-;-1:-1:-1::0;;;;;5033:22:7;::::1;5070:1;5033:22:::0;;;:14:::1;:22;::::0;;;;;;;5056:10:::1;5033:34:::0;;;;;;;:38;;;5114:18:::1;:30:::0;;;;;;:34:::1;::::0;5147:1:::1;::::0;5114:34:::1;:::i;:::-;5100:10;5081:30;::::0;;;:18:::1;:30;::::0;;;;:67;-1:-1:-1;;1637:1:5;2562:22;;4731:424:7:o;1452:96::-;1504:7;1036:6:4;;-1:-1:-1;;;;;1036:6:4;665:10:2;1176:23:4;1168:68;;;;-1:-1:-1;;;1168:68:4;;;;;;;:::i;:::-;-1:-1:-1;1530:11:7::1;::::0;1452:96;:::o;6635:370::-;6696:4;;6712:265;6795:13;:20;6774:41;;6712:265;;;6915:6;-1:-1:-1;;;;;6878:43:7;:13;6892:18;6878:33;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;6878:33:7;:43;6874:93;;-1:-1:-1;6948:4:7;;6635:370;-1:-1:-1;;6635:370:7:o;6874:93::-;6829:20;;;;:::i;:::-;;;;6712:265;;;-1:-1:-1;6993:5:7;;6635:370;-1:-1:-1;;6635:370:7:o;1554:447::-;-1:-1:-1;;;;;1697:29:7;;;1638:7;1697:29;;;:21;:29;;;;;;;;;1866:27;;-1:-1:-1;;;1866:27:7;;;;1638:7;;;;1697:29;;;;;1638:7;;1697:29;;1866:25;;:27;;;;;;;;;;;;;1697:29;1866:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1841:52;;;;;;1903:16;1930:9;-1:-1:-1;;;;;1930:18:7;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1977:5;;1922:29;;;;;-1:-1:-1;1977:5:7;;-1:-1:-1;;;;;1554:447:7:o;1837:189:4:-;1010:7;1036:6;-1:-1:-1;;;;;1036:6:4;665:10:2;1176:23:4;1168:68;;;;-1:-1:-1;;;1168:68:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;1925:22:4;::::1;1917:73;;;::::0;-1:-1:-1;;;1917:73:4;;9515:2:8;1917:73:4::1;::::0;::::1;9497:21:8::0;9554:2;9534:18;;;9527:30;9593:34;9573:18;;;9566:62;-1:-1:-1;;;9644:18:8;;;9637:36;9690:19;;1917:73:4::1;9313:402:8::0;1917:73:4::1;2000:19;2010:8;2000:9;:19::i;:::-;1837:189:::0;:::o;441:24:7:-;;;;;;;;;;;;827:241:6;992:68;;-1:-1:-1;;;;;9978:15:8;;;992:68:6;;;9960:34:8;10030:15;;10010:18;;;10003:43;10062:18;;;10055:34;;;965:96:6;;985:5;;-1:-1:-1;;;1015:27:6;9895:18:8;;992:68:6;;;;-1:-1:-1;;992:68:6;;;;;;;;;;;;;;-1:-1:-1;;;;;992:68:6;-1:-1:-1;;;;;;992:68:6;;;;;;;;;;965:19;:96::i;:::-;827:241;;;;:::o;6309:212:7:-;-1:-1:-1;;;;;6397:22:7;;;6430:1;6397:22;;;:14;:22;;;;;;;;:29;;;;;;;;;;6393:122;;-1:-1:-1;;;;;6475:25:7;;;;;;:18;:25;;;;;;:29;;6503:1;6475:29;:::i;:::-;-1:-1:-1;;;;;6447:25:7;;;;;;:18;:25;;;;;:57;6393:122;6309:212;;:::o;2032:169:4:-;2087:16;2106:6;;-1:-1:-1;;;;;2122:17:4;;;-1:-1:-1;;;;;;2122:17:4;;;;;;2154:40;;2106:6;;;;;;;2154:40;;2087:16;2154:40;2077:124;2032:169;:::o;616:205:6:-;755:58;;-1:-1:-1;;;;;7028:32:8;;755:58:6;;;7010:51:8;7077:18;;;7070:34;;;728:86:6;;748:5;;-1:-1:-1;;;778:23:6;6983:18:8;;755:58:6;6836:274:8;728:86:6;616:205;;;:::o;3122:706::-;3541:23;3567:69;3595:4;3567:69;;;;;;;;;;;;;;;;;3575:5;-1:-1:-1;;;;;3567:27:6;;;:69;;;;;:::i;:::-;3650:17;;3541:95;;-1:-1:-1;3650:21:6;3646:176;;3745:10;3734:30;;;;;;;;;;;;:::i;:::-;3726:85;;;;-1:-1:-1;;;3726:85:6;;10302:2:8;3726:85:6;;;10284:21:8;10341:2;10321:18;;;10314:30;10380:34;10360:18;;;10353:62;-1:-1:-1;;;10431:18:8;;;10424:40;10481:19;;3726:85:6;10100:406:8;3461:223:0;3594:12;3625:52;3647:6;3655:4;3661:1;3664:12;3625:21;:52::i;:::-;3618:59;;3461:223;;;;;;:::o;4548:500::-;4713:12;4770:5;4745:21;:30;;4737:81;;;;-1:-1:-1;;;4737:81:0;;10713:2:8;4737:81:0;;;10695:21:8;10752:2;10732:18;;;10725:30;10791:34;10771:18;;;10764:62;-1:-1:-1;;;10842:18:8;;;10835:36;10888:19;;4737:81:0;10511:402:8;4737:81:0;1034:20;;4828:60;;;;-1:-1:-1;;;4828:60:0;;11120:2:8;4828:60:0;;;11102:21:8;11159:2;11139:18;;;11132:30;11198:31;11178:18;;;11171:59;11247:18;;4828:60:0;10918:353:8;4828:60:0;4900:12;4914:23;4941:6;-1:-1:-1;;;;;4941:11:0;4960:5;4967:4;4941:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4899:73;;;;4989:52;5007:7;5016:10;5028:12;4989:17;:52::i;:::-;4982:59;4548:500;-1:-1:-1;;;;;;;4548:500:0:o;6950:692::-;7096:12;7124:7;7120:516;;;-1:-1:-1;7154:10:0;7147:17;;7120:516;7265:17;;:21;7261:365;;7459:10;7453:17;7519:15;7506:10;7502:2;7498:19;7491:44;7261:365;7598:12;7591:20;;-1:-1:-1;;;7591:20:0;;;;;;;;:::i;14:173:8:-;82:20;;-1:-1:-1;;;;;131:31:8;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;373:9;360:23;350:33;;402:38;436:2;425:9;421:18;402:38;:::i;:::-;392:48;;192:254;;;;;:::o;451:186::-;510:6;563:2;551:9;542:7;538:23;534:32;531:52;;;579:1;576;569:12;531:52;602:29;621:9;602:29;:::i;824:260::-;892:6;900;953:2;941:9;932:7;928:23;924:32;921:52;;;969:1;966;959:12;921:52;992:29;1011:9;992:29;:::i;:::-;982:39;;1040:38;1074:2;1063:9;1059:18;1040:38;:::i;1297:127::-;1358:10;1353:3;1349:20;1346:1;1339:31;1389:4;1386:1;1379:15;1413:4;1410:1;1403:15;1429:342;1575:2;1560:18;;1608:1;1597:13;;1587:144;;1653:10;1648:3;1644:20;1641:1;1634:31;1688:4;1685:1;1678:15;1716:4;1713:1;1706:15;1587:144;1740:25;;;1429:342;:::o;1776:180::-;1835:6;1888:2;1876:9;1867:7;1863:23;1859:32;1856:52;;;1904:1;1901;1894:12;1856:52;-1:-1:-1;1927:23:8;;1776:180;-1:-1:-1;1776:180:8:o;1961:254::-;2029:6;2037;2090:2;2078:9;2069:7;2065:23;2061:32;2058:52;;;2106:1;2103;2096:12;2058:52;2129:29;2148:9;2129:29;:::i;:::-;2119:39;2205:2;2190:18;;;;2177:32;;-1:-1:-1;;;1961:254:8:o;2887:356::-;3089:2;3071:21;;;3108:18;;;3101:30;3167:34;3162:2;3147:18;;3140:62;3234:2;3219:18;;2887:356::o;3248:355::-;3450:2;3432:21;;;3489:2;3469:18;;;3462:30;3528:33;3523:2;3508:18;;3501:61;3594:2;3579:18;;3248:355::o;4327:127::-;4388:10;4383:3;4379:20;4376:1;4369:31;4419:4;4416:1;4409:15;4443:4;4440:1;4433:15;4459:422;4548:1;4591:5;4548:1;4605:270;4626:7;4616:8;4613:21;4605:270;;;4685:4;4681:1;4677:6;4673:17;4667:4;4664:27;4661:53;;;4694:18;;:::i;:::-;4744:7;4734:8;4730:22;4727:55;;;4764:16;;;;4727:55;4843:22;;;;4803:15;;;;4605:270;;;4609:3;4459:422;;;;;:::o;4886:806::-;4935:5;4965:8;4955:80;;-1:-1:-1;5006:1:8;5020:5;;4955:80;5054:4;5044:76;;-1:-1:-1;5091:1:8;5105:5;;5044:76;5136:4;5154:1;5149:59;;;;5222:1;5217:130;;;;5129:218;;5149:59;5179:1;5170:10;;5193:5;;;5217:130;5254:3;5244:8;5241:17;5238:43;;;5261:18;;:::i;:::-;-1:-1:-1;;5317:1:8;5303:16;;5332:5;;5129:218;;5431:2;5421:8;5418:16;5412:3;5406:4;5403:13;5399:36;5393:2;5383:8;5380:16;5375:2;5369:4;5366:12;5362:35;5359:77;5356:159;;;-1:-1:-1;5468:19:8;;;5500:5;;5356:159;5547:34;5572:8;5566:4;5547:34;:::i;:::-;5617:6;5613:1;5609:6;5605:19;5596:7;5593:32;5590:58;;;5628:18;;:::i;:::-;5666:20;;4886:806;-1:-1:-1;;;4886:806:8:o;5697:131::-;5757:5;5786:36;5813:8;5807:4;5786:36;:::i;5833:168::-;5873:7;5939:1;5935;5931:6;5927:14;5924:1;5921:21;5916:1;5909:9;5902:17;5898:45;5895:71;;;5946:18;;:::i;:::-;-1:-1:-1;5986:9:8;;5833:168::o;6006:217::-;6046:1;6072;6062:132;;6116:10;6111:3;6107:20;6104:1;6097:31;6151:4;6148:1;6141:15;6179:4;6176:1;6169:15;6062:132;-1:-1:-1;6208:9:8;;6006:217::o;6228:128::-;6268:3;6299:1;6295:6;6292:1;6289:13;6286:39;;;6305:18;;:::i;:::-;-1:-1:-1;6341:9:8;;6228:128::o;6704:127::-;6765:10;6760:3;6756:20;6753:1;6746:31;6796:4;6793:1;6786:15;6820:4;6817:1;6810:15;7115:277;7182:6;7235:2;7223:9;7214:7;7210:23;7206:32;7203:52;;;7251:1;7248;7241:12;7203:52;7283:9;7277:16;7336:5;7329:13;7322:21;7315:5;7312:32;7302:60;;7358:1;7355;7348:12;7397:135;7436:3;7457:17;;;7454:43;;7477:18;;:::i;:::-;-1:-1:-1;7524:1:8;7513:13;;7397:135::o;8243:125::-;8283:4;8311:1;8308;8305:8;8302:34;;;8316:18;;:::i;:::-;-1:-1:-1;8353:9:8;;8243:125::o;8373:179::-;8451:13;;8504:22;8493:34;;8483:45;;8473:73;;8542:1;8539;8532:12;8557:473;8660:6;8668;8676;8684;8692;8745:3;8733:9;8724:7;8720:23;8716:33;8713:53;;;8762:1;8759;8752:12;8713:53;8785:39;8814:9;8785:39;:::i;:::-;8775:49;;8864:2;8853:9;8849:18;8843:25;8833:35;;8908:2;8897:9;8893:18;8887:25;8877:35;;8952:2;8941:9;8937:18;8931:25;8921:35;;8975:49;9019:3;9008:9;9004:19;8975:49;:::i;:::-;8965:59;;8557:473;;;;;;;;:::o;9035:273::-;9103:6;9156:2;9144:9;9135:7;9131:23;9127:32;9124:52;;;9172:1;9169;9162:12;9124:52;9204:9;9198:16;9254:4;9247:5;9243:16;9236:5;9233:27;9223:55;;9274:1;9271;9264:12;11276:258;11348:1;11358:113;11372:6;11369:1;11366:13;11358:113;;;11448:11;;;11442:18;11429:11;;;11422:39;11394:2;11387:10;11358:113;;;11489:6;11486:1;11483:13;11480:48;;;-1:-1:-1;;11524:1:8;11506:16;;11499:27;11276:258::o;11539:274::-;11668:3;11706:6;11700:13;11722:53;11768:6;11763:3;11756:4;11748:6;11744:17;11722:53;:::i;:::-;11791:16;;;;;11539:274;-1:-1:-1;;11539:274:8:o;11818:383::-;11967:2;11956:9;11949:21;11930:4;11999:6;11993:13;12042:6;12037:2;12026:9;12022:18;12015:34;12058:66;12117:6;12112:2;12101:9;12097:18;12092:2;12084:6;12080:15;12058:66;:::i;:::-;12185:2;12164:15;-1:-1:-1;;12160:29:8;12145:45;;;;12192:2;12141:54;;11818:383;-1:-1:-1;;11818:383:8:o
Swarm Source
ipfs://f6baf53a8926674d4b306a864df827aa62160bf3de79fe77f8e11530c3ebd71a
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.