More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 260 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw For | 16080136 | 767 days ago | IN | 0 ETH | 0.00063168 | ||||
Withdraw For | 15003443 | 929 days ago | IN | 0 ETH | 0.00358637 | ||||
Provide For | 15003424 | 929 days ago | IN | 0 ETH | 0.00267579 | ||||
Withdraw For | 14672282 | 983 days ago | IN | 0 ETH | 0.00276748 | ||||
Provide For | 14672263 | 983 days ago | IN | 0 ETH | 0.00163027 | ||||
Withdraw For | 14509588 | 1008 days ago | IN | 0 ETH | 0.00230062 | ||||
Withdraw For | 14509241 | 1008 days ago | IN | 0 ETH | 0.00371012 | ||||
Withdraw For | 14508162 | 1009 days ago | IN | 0 ETH | 0.00444378 | ||||
Withdraw For | 14492224 | 1011 days ago | IN | 0 ETH | 0.0024026 | ||||
Withdraw For | 14462723 | 1016 days ago | IN | 0 ETH | 0.00228197 | ||||
Withdraw For | 14423851 | 1022 days ago | IN | 0 ETH | 0.00130672 | ||||
Withdraw For | 14414730 | 1023 days ago | IN | 0 ETH | 0.00094084 | ||||
Withdraw For | 14347502 | 1034 days ago | IN | 0 ETH | 0.0034438 | ||||
Withdraw For | 14333741 | 1036 days ago | IN | 0 ETH | 0.00129885 | ||||
Withdraw For | 14304224 | 1040 days ago | IN | 0 ETH | 0.00419927 | ||||
Withdraw For | 14289641 | 1043 days ago | IN | 0 ETH | 0.00273727 | ||||
Withdraw For | 14277020 | 1044 days ago | IN | 0 ETH | 0.00886123 | ||||
Withdraw For | 14270787 | 1045 days ago | IN | 0 ETH | 0.00578156 | ||||
Withdraw For | 14244988 | 1049 days ago | IN | 0 ETH | 0.00374605 | ||||
Withdraw For | 14229948 | 1052 days ago | IN | 0 ETH | 0.00348111 | ||||
Withdraw For | 14204697 | 1056 days ago | IN | 0 ETH | 0.00413497 | ||||
Withdraw For | 14152172 | 1064 days ago | IN | 0 ETH | 0.00247494 | ||||
Withdraw For | 14135220 | 1066 days ago | IN | 0 ETH | 0.00694119 | ||||
Withdraw For | 14095363 | 1073 days ago | IN | 0 ETH | 0.00917644 | ||||
Withdraw For | 14086098 | 1074 days ago | IN | 0 ETH | 0.0046002 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
RCOMBO
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-04-06 */ // File: @openzeppelin/contracts/utils/Context.sol pragma solidity >=0.6.0 <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 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. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual 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/access/Ownable.sol // SPDX-License-Identifier: GPL-3.0-or-later pragma solidity >=0.6.0 <0.8.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. * * 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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { 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 virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: contracts/hegic/GradualTokenSwap/contracts/ERC20Recovery.sol pragma solidity >=0.4.25 <0.9.0; abstract contract ERC20Recovery is Ownable{ using SafeERC20 for IERC20; function recoverERC20(IERC20 token) external onlyOwner { token.safeTransfer(owner(), token.balanceOf(address(this))); } } // File: contracts/hegic/GradualTokenSwap/contracts/GradualTokenSwap.sol pragma solidity 0.7.6; /** * @title GTS * @dev A token swap contract that gradually releases tokens on its balance */ contract GradualTokenSwap is ERC20Recovery { // solhint-disable not-rely-on-time using SafeMath for uint256; using SafeERC20 for IERC20; event Withdrawn(address account, uint256 amount); // Durations and timestamps in UNIX time, also in block.timestamp. uint256 public immutable start; uint256 public immutable duration; IERC20 public immutable rCOMBO; IERC20 public immutable COMBO; mapping(address => uint256) public released; mapping(address => uint256) public provided; /** * @dev Creates a contract that can be used for swapping rCOMBO into COMBO * @param _start UNIX time at which the unlock period starts * @param _duration Duration in seconds for unlocking tokens */ constructor( uint256 _start, uint256 _duration, IERC20 _rCOMBO, IERC20 _COMBO ) { if (_start == 0) _start = block.timestamp; require(_duration > 0, "GTS: duration is 0"); duration = _duration; start = _start; rCOMBO = _rCOMBO; COMBO = _COMBO; } /** * @dev Provide rCOMBO tokens to the contract for later exchange */ function provide(uint256 amount) external { rCOMBO.safeTransferFrom(msg.sender, address(this), amount); provided[msg.sender] = provided[msg.sender].add(amount); } /** * @dev Withdraw unlocked user's COMBO tokens */ function withdraw() external { uint256 amount = available(msg.sender); require(amount > 0, "GTS: You are have not unlocked tokens yet"); released[msg.sender] = released[msg.sender].add(amount); COMBO.safeTransfer(msg.sender, amount); emit Withdrawn(msg.sender, amount); } /** * @dev Calculates the amount of tokens that has already been unlocked but hasn't been swapped yet */ function available(address account) public view returns (uint256) { return unlocked(account).sub(released[account]); } /** * @dev Calculates the total amount of tokens that has already been unlocked */ function unlocked(address account) public view returns (uint256) { if (block.timestamp < start) return 0; if (block.timestamp >= start.add(duration)) { return provided[account]; } else { return provided[account].mul(block.timestamp.sub(start)).div(duration); } } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity >=0.6.2 <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; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol pragma solidity >=0.6.0 <0.8.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 IERC20;` 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)); } /** * @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' // 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. 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 // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity >=0.6.0 <0.8.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, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @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) { 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, reverting 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) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity >=0.6.0 <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); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: contracts/RCOMBO.sol pragma solidity 0.7.6; contract RCOMBO is ERC20, GradualTokenSwap { using SafeERC20 for IERC20; using SafeMath for uint256; constructor(uint256 _amount, uint256 _start) ERC20("Furucombo IOU COMBO Token", "rCOMBO") GradualTokenSwap( _start, 360 days, IERC20(address(this)), IERC20(0xfFffFffF2ba8F66D4e51811C5190992176930278) ) { uint256 supply = _amount * (10**uint256(decimals())); _mint(msg.sender, supply); } /** * @dev Provide RCOMBO tokens to the contract for later exchange * on `user`'s behalf. */ function provideFor(address user, uint256 amount) external { _transfer(_msgSender(), address(this), amount); provided[user] = provided[user].add(amount); } /** * @dev Withdraw unlocked user's COMBO tokens on `user`'s behalf. */ function withdrawFor(address user) external { uint256 amount = available(user); require(amount > 0, "GTS: You are have not unlocked tokens yet"); released[user] = released[user].add(amount); COMBO.safeTransfer(user, amount); emit Withdrawn(user, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_start","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[],"name":"COMBO","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"available","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"duration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"provide","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"provideFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"provided","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rCOMBO","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unlocked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"withdrawFor","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101006040523480156200001257600080fd5b5060405162001de438038062001de4833981810160405260408110156200003857600080fd5b508051602091820151604080518082018252601981527f46757275636f6d626f20494f5520434f4d424f20546f6b656e000000000000008186019081528251808401909352600683526572434f4d424f60d01b9583019590955280519394929384936301da9c0093309373ffffffff2ba8f66d4e51811c5190992176930278939092620000c9916003919062000379565b508051620000df90600490602084019062000379565b50506005805460ff19166012179055506000620000fb620001f6565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350836200015b574293505b60008311620001a6576040805162461bcd60e51b815260206004820152601260248201527104754533a206475726174696f6e20697320360741b604482015290519081900360640190fd5b60a0929092526080929092526001600160601b0319606092831b811660c052911b1660e0526000620001d7620001fa565b60ff16600a0a83029050620001ed338262000203565b50505062000425565b3390565b60055460ff1690565b6001600160a01b0382166200025f576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200026d6000838362000312565b62000289816002546200031760201b62000fc51790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620002bc91839062000fc562000317821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b60008282018381101562000372576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620003b15760008555620003fc565b82601f10620003cc57805160ff1916838001178555620003fc565b82800160010185558215620003fc579182015b82811115620003fc578251825591602001919060010190620003df565b506200040a9291506200040e565b5090565b5b808211156200040a57600081556001016200040f565b60805160a05160c05160601c60e05160601c61195b62000489600039806107be52806108ad5280610c4d52508061075e52806109fb5250806106185280610db45280610e02525080610d3a5280610d605280610d935280610e2a525061195b6000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f95780639eca672c11610097578063be9a655511610071578063be9a6555146104e0578063d1846d0c146104e8578063dd62ed3e1461050e578063f2fde38b1461053c576101a9565b80639eca672c14610462578063a457c2d714610488578063a9059cbb146104b4576101a9565b806395d89b41116100d357806395d89b41146103e85780639852595c146103f05780639ddb9ee1146104165780639e8c708e1461043c576101a9565b8063715018a6146103d05780637b4f50e6146103d85780638da5cb5b146103e0576101a9565b806323b872dd1161016657806331f27d101161014057806331f27d101461035257806339509351146103765780633ccfd60b146103a257806370a08231146103aa576101a9565b806323b872dd146102e15780632e2ebe0614610317578063313ce56714610334576101a9565b806306fdde03146101ae578063095ea7b31461022b5780630fb5a6b41461026b57806310098ad51461028557806318160ddd146102ab5780631b6261d2146102b3575b600080fd5b6101b6610562565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f05781810151838201526020016101d8565b50505050905090810190601f16801561021d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102576004803603604081101561024157600080fd5b506001600160a01b0381351690602001356105f8565b604080519115158252519081900360200190f35b610273610616565b60408051918252519081900360200190f35b6102736004803603602081101561029b57600080fd5b50356001600160a01b031661063a565b61027361066e565b6102df600480360360408110156102c957600080fd5b506001600160a01b038135169060200135610674565b005b610257600480360360608110156102f757600080fd5b506001600160a01b038135811691602081013590911690604001356106c9565b6102df6004803603602081101561032d57600080fd5b5035610751565b61033c6107b3565b6040805160ff9092168252519081900360200190f35b61035a6107bc565b604080516001600160a01b039092168252519081900360200190f35b6102576004803603604081101561038c57600080fd5b506001600160a01b0381351690602001356107e0565b6102df61082e565b610273600480360360208110156103c057600080fd5b50356001600160a01b031661091a565b6102df610935565b61035a6109f9565b61035a610a1d565b6101b6610a31565b6102736004803603602081101561040657600080fd5b50356001600160a01b0316610a92565b6102736004803603602081101561042c57600080fd5b50356001600160a01b0316610aa4565b6102df6004803603602081101561045257600080fd5b50356001600160a01b0316610ab6565b6102df6004803603602081101561047857600080fd5b50356001600160a01b0316610bbb565b6102576004803603604081101561049e57600080fd5b506001600160a01b038135169060200135610cbc565b610257600480360360408110156104ca57600080fd5b506001600160a01b038135169060200135610d24565b610273610d38565b610273600480360360208110156104fe57600080fd5b50356001600160a01b0316610d5c565b6102736004803603604081101561052457600080fd5b506001600160a01b0381358116916020013516610e7a565b6102df6004803603602081101561055257600080fd5b50356001600160a01b0316610ea5565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105ee5780601f106105c3576101008083540402835291602001916105ee565b820191906000526020600020905b8154815290600101906020018083116105d157829003601f168201915b5050505050905090565b600061060c61060561101f565b8484611023565b5060015b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6001600160a01b0381166000908152600660205260408120546106669061066084610d5c565b9061110f565b90505b919050565b60025490565b61068661067f61101f565b308361116c565b6001600160a01b0382166000908152600760205260409020546106a99082610fc5565b6001600160a01b0390921660009081526007602052604090209190915550565b60006106d684848461116c565b610746846106e261101f565b61074185604051806060016040528060288152602001611866602891396001600160a01b038a1660009081526001602052604081209061072061101f565b6001600160a01b0316815260208101919091526040016000205491906112c7565b611023565b5060015b9392505050565b6107866001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001633308461135e565b336000908152600760205260409020546107a09082610fc5565b3360009081526007602052604090205550565b60055460ff1690565b7f000000000000000000000000000000000000000000000000000000000000000081565b600061060c6107ed61101f565b8461074185600160006107fe61101f565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610fc5565b60006108393361063a565b90506000811161087a5760405162461bcd60e51b815260040180806020018281038252602981526020018061181c6029913960400191505060405180910390fd5b336000908152600660205260409020546108949082610fc5565b336000818152600660205260409020919091556108dc907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690836113be565b604080513381526020810183905281517f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5929181900390910190a150565b6001600160a01b031660009081526020819052604090205490565b61093d61101f565b6001600160a01b031661094e610a1d565b6001600160a01b0316146109a9576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b7f000000000000000000000000000000000000000000000000000000000000000081565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105ee5780601f106105c3576101008083540402835291602001916105ee565b60066020526000908152604090205481565b60076020526000908152604090205481565b610abe61101f565b6001600160a01b0316610acf610a1d565b6001600160a01b031614610b2a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610bb8610b35610a1d565b604080516370a0823160e01b815230600482015290516001600160a01b038516916370a08231916024808301926020929190829003018186803b158015610b7b57600080fd5b505afa158015610b8f573d6000803e3d6000fd5b505050506040513d6020811015610ba557600080fd5b50516001600160a01b03841691906113be565b50565b6000610bc68261063a565b905060008111610c075760405162461bcd60e51b815260040180806020018281038252602981526020018061181c6029913960400191505060405180910390fd5b6001600160a01b038216600090815260066020526040902054610c2a9082610fc5565b6001600160a01b03808416600090815260066020526040902091909155610c74907f00000000000000000000000000000000000000000000000000000000000000001683836113be565b604080516001600160a01b03841681526020810183905281517f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5929181900390910190a15050565b600061060c610cc961101f565b84610741856040518060600160405280602581526020016119016025913960016000610cf361101f565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906112c7565b600061060c610d3161101f565b848461116c565b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f0000000000000000000000000000000000000000000000000000000000000000421015610d8e57506000610669565b610dd87f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000610fc5565b4210610dfd57506001600160a01b038116600090815260076020526040902054610669565b610e737f0000000000000000000000000000000000000000000000000000000000000000610e6d610e4e427f000000000000000000000000000000000000000000000000000000000000000061110f565b6001600160a01b03861660009081526007602052604090205490611415565b9061146e565b9050610669565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610ead61101f565b6001600160a01b0316610ebe610a1d565b6001600160a01b031614610f19576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610f5e5760405162461bcd60e51b81526004018080602001828103825260268152602001806117886026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60008282018381101561074a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b0383166110685760405162461bcd60e51b81526004018080602001828103825260248152602001806118b36024913960400191505060405180910390fd5b6001600160a01b0382166110ad5760405162461bcd60e51b81526004018080602001828103825260228152602001806117ae6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600082821115611166576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b0383166111b15760405162461bcd60e51b815260040180806020018281038252602581526020018061188e6025913960400191505060405180910390fd5b6001600160a01b0382166111f65760405162461bcd60e51b81526004018080602001828103825260238152602001806117656023913960400191505060405180910390fd5b611201838383611410565b61123e816040518060600160405280602681526020016117d0602691396001600160a01b03861660009081526020819052604090205491906112c7565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461126d9082610fc5565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156113565760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561131b578181015183820152602001611303565b50505050905090810190601f1680156113485780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526113b89085906114d5565b50505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526114109084906114d5565b505050565b60008261142457506000610610565b8282028284828161143157fe5b041461074a5760405162461bcd60e51b81526004018080602001828103825260218152602001806118456021913960400191505060405180910390fd5b60008082116114c4576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816114cd57fe5b049392505050565b600061152a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166115869092919063ffffffff16565b8051909150156114105780806020019051602081101561154957600080fd5b50516114105760405162461bcd60e51b815260040180806020018281038252602a8152602001806118d7602a913960400191505060405180910390fd5b6060611595848460008561159d565b949350505050565b6060824710156115de5760405162461bcd60e51b81526004018080602001828103825260268152602001806117f66026913960400191505060405180910390fd5b6115e7856116f8565b611638576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b602083106116765780518252601f199092019160209182019101611657565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146116d8576040519150601f19603f3d011682016040523d82523d6000602084013e6116dd565b606091505b50915091506116ed8282866116fe565b979650505050505050565b3b151590565b6060831561170d57508161074a565b82511561171d5782518084602001fd5b60405162461bcd60e51b815260206004820181815284516024840152845185939192839260440191908501908083836000831561131b57818101518382015260200161130356fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4754533a20596f75206172652068617665206e6f7420756e6c6f636b656420746f6b656e7320796574536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f3ddded1d063da9a81fb634af394a0b168d5e308528db70113d9c0b73888dd3364736f6c6343000706003300000000000000000000000000000000000000000000000000000000004c4b4000000000000000000000000000000000000000000000000000000000603c2e80
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f95780639eca672c11610097578063be9a655511610071578063be9a6555146104e0578063d1846d0c146104e8578063dd62ed3e1461050e578063f2fde38b1461053c576101a9565b80639eca672c14610462578063a457c2d714610488578063a9059cbb146104b4576101a9565b806395d89b41116100d357806395d89b41146103e85780639852595c146103f05780639ddb9ee1146104165780639e8c708e1461043c576101a9565b8063715018a6146103d05780637b4f50e6146103d85780638da5cb5b146103e0576101a9565b806323b872dd1161016657806331f27d101161014057806331f27d101461035257806339509351146103765780633ccfd60b146103a257806370a08231146103aa576101a9565b806323b872dd146102e15780632e2ebe0614610317578063313ce56714610334576101a9565b806306fdde03146101ae578063095ea7b31461022b5780630fb5a6b41461026b57806310098ad51461028557806318160ddd146102ab5780631b6261d2146102b3575b600080fd5b6101b6610562565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f05781810151838201526020016101d8565b50505050905090810190601f16801561021d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102576004803603604081101561024157600080fd5b506001600160a01b0381351690602001356105f8565b604080519115158252519081900360200190f35b610273610616565b60408051918252519081900360200190f35b6102736004803603602081101561029b57600080fd5b50356001600160a01b031661063a565b61027361066e565b6102df600480360360408110156102c957600080fd5b506001600160a01b038135169060200135610674565b005b610257600480360360608110156102f757600080fd5b506001600160a01b038135811691602081013590911690604001356106c9565b6102df6004803603602081101561032d57600080fd5b5035610751565b61033c6107b3565b6040805160ff9092168252519081900360200190f35b61035a6107bc565b604080516001600160a01b039092168252519081900360200190f35b6102576004803603604081101561038c57600080fd5b506001600160a01b0381351690602001356107e0565b6102df61082e565b610273600480360360208110156103c057600080fd5b50356001600160a01b031661091a565b6102df610935565b61035a6109f9565b61035a610a1d565b6101b6610a31565b6102736004803603602081101561040657600080fd5b50356001600160a01b0316610a92565b6102736004803603602081101561042c57600080fd5b50356001600160a01b0316610aa4565b6102df6004803603602081101561045257600080fd5b50356001600160a01b0316610ab6565b6102df6004803603602081101561047857600080fd5b50356001600160a01b0316610bbb565b6102576004803603604081101561049e57600080fd5b506001600160a01b038135169060200135610cbc565b610257600480360360408110156104ca57600080fd5b506001600160a01b038135169060200135610d24565b610273610d38565b610273600480360360208110156104fe57600080fd5b50356001600160a01b0316610d5c565b6102736004803603604081101561052457600080fd5b506001600160a01b0381358116916020013516610e7a565b6102df6004803603602081101561055257600080fd5b50356001600160a01b0316610ea5565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105ee5780601f106105c3576101008083540402835291602001916105ee565b820191906000526020600020905b8154815290600101906020018083116105d157829003601f168201915b5050505050905090565b600061060c61060561101f565b8484611023565b5060015b92915050565b7f0000000000000000000000000000000000000000000000000000000001da9c0081565b6001600160a01b0381166000908152600660205260408120546106669061066084610d5c565b9061110f565b90505b919050565b60025490565b61068661067f61101f565b308361116c565b6001600160a01b0382166000908152600760205260409020546106a99082610fc5565b6001600160a01b0390921660009081526007602052604090209190915550565b60006106d684848461116c565b610746846106e261101f565b61074185604051806060016040528060288152602001611866602891396001600160a01b038a1660009081526001602052604081209061072061101f565b6001600160a01b0316815260208101919091526040016000205491906112c7565b611023565b5060015b9392505050565b6107866001600160a01b037f0000000000000000000000002dadc3582c0655e8d21b1519bac30bc40ab14e9a1633308461135e565b336000908152600760205260409020546107a09082610fc5565b3360009081526007602052604090205550565b60055460ff1690565b7f000000000000000000000000ffffffff2ba8f66d4e51811c519099217693027881565b600061060c6107ed61101f565b8461074185600160006107fe61101f565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610fc5565b60006108393361063a565b90506000811161087a5760405162461bcd60e51b815260040180806020018281038252602981526020018061181c6029913960400191505060405180910390fd5b336000908152600660205260409020546108949082610fc5565b336000818152600660205260409020919091556108dc907f000000000000000000000000ffffffff2ba8f66d4e51811c51909921769302786001600160a01b031690836113be565b604080513381526020810183905281517f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5929181900390910190a150565b6001600160a01b031660009081526020819052604090205490565b61093d61101f565b6001600160a01b031661094e610a1d565b6001600160a01b0316146109a9576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b7f0000000000000000000000002dadc3582c0655e8d21b1519bac30bc40ab14e9a81565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105ee5780601f106105c3576101008083540402835291602001916105ee565b60066020526000908152604090205481565b60076020526000908152604090205481565b610abe61101f565b6001600160a01b0316610acf610a1d565b6001600160a01b031614610b2a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610bb8610b35610a1d565b604080516370a0823160e01b815230600482015290516001600160a01b038516916370a08231916024808301926020929190829003018186803b158015610b7b57600080fd5b505afa158015610b8f573d6000803e3d6000fd5b505050506040513d6020811015610ba557600080fd5b50516001600160a01b03841691906113be565b50565b6000610bc68261063a565b905060008111610c075760405162461bcd60e51b815260040180806020018281038252602981526020018061181c6029913960400191505060405180910390fd5b6001600160a01b038216600090815260066020526040902054610c2a9082610fc5565b6001600160a01b03808416600090815260066020526040902091909155610c74907f000000000000000000000000ffffffff2ba8f66d4e51811c51909921769302781683836113be565b604080516001600160a01b03841681526020810183905281517f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5929181900390910190a15050565b600061060c610cc961101f565b84610741856040518060600160405280602581526020016119016025913960016000610cf361101f565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906112c7565b600061060c610d3161101f565b848461116c565b7f00000000000000000000000000000000000000000000000000000000603c2e8081565b60007f00000000000000000000000000000000000000000000000000000000603c2e80421015610d8e57506000610669565b610dd87f00000000000000000000000000000000000000000000000000000000603c2e807f0000000000000000000000000000000000000000000000000000000001da9c00610fc5565b4210610dfd57506001600160a01b038116600090815260076020526040902054610669565b610e737f0000000000000000000000000000000000000000000000000000000001da9c00610e6d610e4e427f00000000000000000000000000000000000000000000000000000000603c2e8061110f565b6001600160a01b03861660009081526007602052604090205490611415565b9061146e565b9050610669565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610ead61101f565b6001600160a01b0316610ebe610a1d565b6001600160a01b031614610f19576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610f5e5760405162461bcd60e51b81526004018080602001828103825260268152602001806117886026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60008282018381101561074a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b0383166110685760405162461bcd60e51b81526004018080602001828103825260248152602001806118b36024913960400191505060405180910390fd5b6001600160a01b0382166110ad5760405162461bcd60e51b81526004018080602001828103825260228152602001806117ae6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600082821115611166576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b0383166111b15760405162461bcd60e51b815260040180806020018281038252602581526020018061188e6025913960400191505060405180910390fd5b6001600160a01b0382166111f65760405162461bcd60e51b81526004018080602001828103825260238152602001806117656023913960400191505060405180910390fd5b611201838383611410565b61123e816040518060600160405280602681526020016117d0602691396001600160a01b03861660009081526020819052604090205491906112c7565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461126d9082610fc5565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156113565760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561131b578181015183820152602001611303565b50505050905090810190601f1680156113485780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526113b89085906114d5565b50505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526114109084906114d5565b505050565b60008261142457506000610610565b8282028284828161143157fe5b041461074a5760405162461bcd60e51b81526004018080602001828103825260218152602001806118456021913960400191505060405180910390fd5b60008082116114c4576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816114cd57fe5b049392505050565b600061152a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166115869092919063ffffffff16565b8051909150156114105780806020019051602081101561154957600080fd5b50516114105760405162461bcd60e51b815260040180806020018281038252602a8152602001806118d7602a913960400191505060405180910390fd5b6060611595848460008561159d565b949350505050565b6060824710156115de5760405162461bcd60e51b81526004018080602001828103825260268152602001806117f66026913960400191505060405180910390fd5b6115e7856116f8565b611638576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b602083106116765780518252601f199092019160209182019101611657565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146116d8576040519150601f19603f3d011682016040523d82523d6000602084013e6116dd565b606091505b50915091506116ed8282866116fe565b979650505050505050565b3b151590565b6060831561170d57508161074a565b82511561171d5782518084602001fd5b60405162461bcd60e51b815260206004820181815284516024840152845185939192839260440191908501908083836000831561131b57818101518382015260200161130356fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4754533a20596f75206172652068617665206e6f7420756e6c6f636b656420746f6b656e7320796574536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f3ddded1d063da9a81fb634af394a0b168d5e308528db70113d9c0b73888dd3364736f6c63430007060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000004c4b4000000000000000000000000000000000000000000000000000000000603c2e80
-----Decoded View---------------
Arg [0] : _amount (uint256): 5000000
Arg [1] : _start (uint256): 1614556800
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000004c4b40
Arg [1] : 00000000000000000000000000000000000000000000000000000000603c2e80
Deployed Bytecode Sourcemap
39556:1219:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30618:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32764:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32764:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;4216:33;;;:::i;:::-;;;;;;;;;;;;;;;;5818:132;;;;;;;;;;;;;;;;-1:-1:-1;5818:132:0;-1:-1:-1;;;;;5818:132:0;;:::i;31717:108::-;;;:::i;40191:178::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40191:178:0;;;;;;;;:::i;:::-;;33415:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33415:321:0;;;;;;;;;;;;;;;;;:::i;5105:185::-;;;;;;;;;;;;;;;;-1:-1:-1;5105:185:0;;:::i;31561:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4293:29;;;:::i;:::-;;;;-1:-1:-1;;;;;4293:29:0;;;;;;;;;;;;;;34145:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34145:218:0;;;;;;;;:::i;5367:321::-;;;:::i;31888:127::-;;;;;;;;;;;;;;;;-1:-1:-1;31888:127:0;-1:-1:-1;;;;;31888:127:0;;:::i;2794:148::-;;;:::i;4256:30::-;;;:::i;2143:87::-;;;:::i;30828:95::-;;;:::i;4331:43::-;;;;;;;;;;;;;;;;-1:-1:-1;4331:43:0;-1:-1:-1;;;;;4331:43:0;;:::i;4381:::-;;;;;;;;;;;;;;;;-1:-1:-1;4381:43:0;-1:-1:-1;;;;;4381:43:0;;:::i;3543:133::-;;;;;;;;;;;;;;;;-1:-1:-1;3543:133:0;-1:-1:-1;;;;;3543:133:0;;:::i;40466:306::-;;;;;;;;;;;;;;;;-1:-1:-1;40466:306:0;-1:-1:-1;;;;;40466:306:0;;:::i;34866:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34866:269:0;;;;;;;;:::i;32228:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32228:175:0;;;;;;;;:::i;4179:30::-;;;:::i;6058:346::-;;;;;;;;;;;;;;;;-1:-1:-1;6058:346:0;-1:-1:-1;;;;;6058:346:0;;:::i;32466:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32466:151:0;;;;;;;;;;:::i;3097:244::-;;;;;;;;;;;;;;;;-1:-1:-1;3097:244:0;-1:-1:-1;;;;;3097:244:0;;:::i;30618:91::-;30696:5;30689:12;;;;;;;;-1:-1:-1;;30689:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30663:13;;30689:12;;30696:5;;30689:12;;30696:5;30689:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30618:91;:::o;32764:169::-;32847:4;32864:39;32873:12;:10;:12::i;:::-;32887:7;32896:6;32864:8;:39::i;:::-;-1:-1:-1;32921:4:0;32764:169;;;;;:::o;4216:33::-;;;:::o;5818:132::-;-1:-1:-1;;;;;5924:17:0;;5875:7;5924:17;;;:8;:17;;;;;;5902:40;;:17;5933:7;5902:8;:17::i;:::-;:21;;:40::i;:::-;5895:47;;5818:132;;;;:::o;31717:108::-;31805:12;;31717:108;:::o;40191:178::-;40261:46;40271:12;:10;:12::i;:::-;40293:4;40300:6;40261:9;:46::i;:::-;-1:-1:-1;;;;;40335:14:0;;;;;;:8;:14;;;;;;:26;;40354:6;40335:18;:26::i;:::-;-1:-1:-1;;;;;40318:14:0;;;;;;;:8;:14;;;;;:43;;;;-1:-1:-1;40191:178:0:o;33415:321::-;33521:4;33538:36;33548:6;33556:9;33567:6;33538:9;:36::i;:::-;33585:121;33594:6;33602:12;:10;:12::i;:::-;33616:89;33654:6;33616:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33616:19:0;;;;;;:11;:19;;;;;;33636:12;:10;:12::i;:::-;-1:-1:-1;;;;;33616:33:0;;;;;;;;;;;;-1:-1:-1;33616:33:0;;;:89;:37;:89::i;:::-;33585:8;:121::i;:::-;-1:-1:-1;33724:4:0;33415:321;;;;;;:::o;5105:185::-;5158:58;-1:-1:-1;;;;;5158:6:0;:23;5182:10;5202:4;5209:6;5158:23;:58::i;:::-;5259:10;5250:20;;;;:8;:20;;;;;;:32;;5275:6;5250:24;:32::i;:::-;5236:10;5227:20;;;;:8;:20;;;;;:55;-1:-1:-1;5105:185:0:o;31561:91::-;31635:9;;;;31561:91;:::o;4293:29::-;;;:::o;34145:218::-;34233:4;34250:83;34259:12;:10;:12::i;:::-;34273:7;34282:50;34321:10;34282:11;:25;34294:12;:10;:12::i;:::-;-1:-1:-1;;;;;34282:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;34282:25:0;;;:34;;;;;;;;;;;:38;:50::i;5367:321::-;5407:14;5424:21;5434:10;5424:9;:21::i;:::-;5407:38;;5473:1;5464:6;:10;5456:64;;;;-1:-1:-1;;;5456:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5563:10;5554:20;;;;:8;:20;;;;;;:32;;5579:6;5554:24;:32::i;:::-;5540:10;5531:20;;;;:8;:20;;;;;:55;;;;5597:38;;:5;-1:-1:-1;;;;;5597:18:0;;5628:6;5597:18;:38::i;:::-;5651:29;;;5661:10;5651:29;;;;;;;;;;;;;;;;;;;;;5367:321;:::o;31888:127::-;-1:-1:-1;;;;;31989:18:0;31962:7;31989:18;;;;;;;;;;;;31888:127::o;2794:148::-;2374:12;:10;:12::i;:::-;-1:-1:-1;;;;;2363:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2363:23:0;;2355:68;;;;;-1:-1:-1;;;2355:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2885:6:::1;::::0;2864:40:::1;::::0;2901:1:::1;::::0;2885:6:::1;::::0;::::1;-1:-1:-1::0;;;;;2885:6:0::1;::::0;2864:40:::1;::::0;2901:1;;2864:40:::1;2915:6;:19:::0;;-1:-1:-1;;;;;;2915:19:0::1;::::0;;2794:148::o;4256:30::-;;;:::o;2143:87::-;2216:6;;;;;-1:-1:-1;;;;;2216:6:0;;2143:87::o;30828:95::-;30908:7;30901:14;;;;;;;;-1:-1:-1;;30901:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30875:13;;30901:14;;30908:7;;30901:14;;30908:7;30901:14;;;;;;;;;;;;;;;;;;;;;;;;4331:43;;;;;;;;;;;;;:::o;4381:::-;;;;;;;;;;;;;:::o;3543:133::-;2374:12;:10;:12::i;:::-;-1:-1:-1;;;;;2363:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2363:23:0;;2355:68;;;;;-1:-1:-1;;;2355:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3609:59:::1;3628:7;:5;:7::i;:::-;3637:30;::::0;;-1:-1:-1;;;3637:30:0;;3661:4:::1;3637:30;::::0;::::1;::::0;;;-1:-1:-1;;;;;3637:15:0;::::1;::::0;::::1;::::0;:30;;;;;::::1;::::0;;;;;;;;:15;:30;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;3637:30:0;-1:-1:-1;;;;;3609:18:0;::::1;::::0;:59;:18:::1;:59::i;:::-;3543:133:::0;:::o;40466:306::-;40521:14;40538:15;40548:4;40538:9;:15::i;:::-;40521:32;;40581:1;40572:6;:10;40564:64;;;;-1:-1:-1;;;40564:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40656:14:0;;;;;;:8;:14;;;;;;:26;;40675:6;40656:18;:26::i;:::-;-1:-1:-1;;;;;40639:14:0;;;;;;;:8;:14;;;;;:43;;;;40693:32;;:5;:18;40648:4;40718:6;40693:18;:32::i;:::-;40741:23;;;-1:-1:-1;;;;;40741:23:0;;;;;;;;;;;;;;;;;;;;;;;40466:306;;:::o;34866:269::-;34959:4;34976:129;34985:12;:10;:12::i;:::-;34999:7;35008:96;35047:15;35008:96;;;;;;;;;;;;;;;;;:11;:25;35020:12;:10;:12::i;:::-;-1:-1:-1;;;;;35008:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;35008:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;32228:175::-;32314:4;32331:42;32341:12;:10;:12::i;:::-;32355:9;32366:6;32331:9;:42::i;4179:30::-;;;:::o;6058:346::-;6114:7;6156:5;6138:15;:23;6134:37;;;-1:-1:-1;6170:1:0;6163:8;;6134:37;6205:19;:5;6215:8;6205:9;:19::i;:::-;6186:15;:38;6182:215;;-1:-1:-1;;;;;;6248:17:0;;;;;;:8;:17;;;;;;6241:24;;6182:215;6322:63;6376:8;6322:49;6344:26;:15;6364:5;6344:19;:26::i;:::-;-1:-1:-1;;;;;6322:17:0;;;;;;:8;:17;;;;;;;:21;:49::i;:::-;:53;;:63::i;:::-;6298:87;;;;32466:151;-1:-1:-1;;;;;32582:18:0;;;32555:7;32582:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;32466:151::o;3097:244::-;2374:12;:10;:12::i;:::-;-1:-1:-1;;;;;2363:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2363:23:0;;2355:68;;;;;-1:-1:-1;;;2355:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3186:22:0;::::1;3178:73;;;;-1:-1:-1::0;;;3178:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3288:6;::::0;3267:38:::1;::::0;-1:-1:-1;;;;;3267:38:0;;::::1;::::0;3288:6:::1;::::0;::::1;;::::0;3267:38:::1;::::0;;;::::1;3316:6;:17:::0;;-1:-1:-1;;;;;3316:17:0;;::::1;;;-1:-1:-1::0;;;;;;3316:17:0;;::::1;::::0;;;::::1;::::0;;3097:244::o;20974:179::-;21032:7;21064:5;;;21088:6;;;;21080:46;;;;;-1:-1:-1;;;21080:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;634:106;722:10;634:106;:::o;38013:346::-;-1:-1:-1;;;;;38115:19:0;;38107:68;;;;-1:-1:-1;;;38107:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38194:21:0;;38186:68;;;;-1:-1:-1;;;38186:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38267:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;38319:32;;;;;;;;;;;;;;;;;38013:346;;;:::o;21436:158::-;21494:7;21527:1;21522;:6;;21514:49;;;;;-1:-1:-1;;;21514:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21581:5:0;;;21436:158::o;35625:539::-;-1:-1:-1;;;;;35731:20:0;;35723:70;;;;-1:-1:-1;;;35723:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35812:23:0;;35804:71;;;;-1:-1:-1;;;35804:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35888:47;35909:6;35917:9;35928:6;35888:20;:47::i;:::-;35968:71;35990:6;35968:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35968:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;35948:17:0;;;:9;:17;;;;;;;;;;;:91;;;;36073:20;;;;;;;:32;;36098:6;36073:24;:32::i;:::-;-1:-1:-1;;;;;36050:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;36121:35;;;;;;;36050:20;;36121:35;;;;;;;;;;;;;35625:539;;;:::o;23801:166::-;23887:7;23923:12;23915:6;;;;23907:29;;;;-1:-1:-1;;;23907:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;23954:5:0;;;23801:166::o;15291:205::-;15419:68;;;-1:-1:-1;;;;;15419:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15419:68:0;-1:-1:-1;;;15419:68:0;;;15392:96;;15412:5;;15392:19;:96::i;:::-;15291:205;;;;:::o;15106:177::-;15216:58;;;-1:-1:-1;;;;;15216:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15216:58:0;-1:-1:-1;;;15216:58:0;;;15189:86;;15209:5;;15189:19;:86::i;:::-;15106:177;;;:::o;21853:220::-;21911:7;21935:6;21931:20;;-1:-1:-1;21950:1:0;21943:8;;21931:20;21974:5;;;21978:1;21974;:5;:1;21998:5;;;;;:10;21990:56;;;;-1:-1:-1;;;21990:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22551:153;22609:7;22641:1;22637;:5;22629:44;;;;;-1:-1:-1;;;22629:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22695:1;22691;:5;;;;;;;22551:153;-1:-1:-1;;;22551:153:0:o;17411:761::-;17835:23;17861:69;17889:4;17861:69;;;;;;;;;;;;;;;;;17869:5;-1:-1:-1;;;;;17861:27:0;;;:69;;;;;:::i;:::-;17945:17;;17835:95;;-1:-1:-1;17945:21:0;17941:224;;18087:10;18076:30;;;;;;;;;;;;;;;-1:-1:-1;18076:30:0;18068:85;;;;-1:-1:-1;;;18068:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10101:195;10204:12;10236:52;10258:6;10266:4;10272:1;10275:12;10236:21;:52::i;:::-;10229:59;10101:195;-1:-1:-1;;;;10101:195:0:o;11153:530::-;11280:12;11338:5;11313:21;:30;;11305:81;;;;-1:-1:-1;;;11305:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11405:18;11416:6;11405:10;:18::i;:::-;11397:60;;;;;-1:-1:-1;;;11397:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;11531:12;11545:23;11572:6;-1:-1:-1;;;;;11572:11:0;11592:5;11600:4;11572:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;11572:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11530:75;;;;11623:52;11641:7;11650:10;11662:12;11623:17;:52::i;:::-;11616:59;11153:530;-1:-1:-1;;;;;;;11153:530:0:o;7183:422::-;7550:20;7589:8;;;7183:422::o;13693:742::-;13808:12;13837:7;13833:595;;;-1:-1:-1;13868:10:0;13861:17;;13833:595;13982:17;;:21;13978:439;;14245:10;14239:17;14306:15;14293:10;14289:2;14285:19;14278:44;14193:148;14381:20;;-1:-1:-1;;;14381:20:0;;;;;;;;;;;;;;;;;14388:12;;14381:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://f3ddded1d063da9a81fb634af394a0b168d5e308528db70113d9c0b73888dd33
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.004229 | 810,444.7338 | $3,427.26 |
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.