Latest 25 from a total of 1,713 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Withdraw | 12354833 | 1783 days ago | IN | 0 ETH | 0.00120279 | ||||
| Get Reward | 12354824 | 1783 days ago | IN | 0 ETH | 0.00150639 | ||||
| Get Reward | 12324442 | 1787 days ago | IN | 0 ETH | 0.00508633 | ||||
| Withdraw | 12324439 | 1787 days ago | IN | 0 ETH | 0.00615722 | ||||
| Exit | 12316610 | 1788 days ago | IN | 0 ETH | 0.00491618 | ||||
| Get Reward | 12184247 | 1809 days ago | IN | 0 ETH | 0.00586513 | ||||
| Withdraw | 12174846 | 1810 days ago | IN | 0 ETH | 0.00752242 | ||||
| Exit | 12022284 | 1834 days ago | IN | 0 ETH | 0.0105358 | ||||
| Get Reward | 12019279 | 1834 days ago | IN | 0 ETH | 0.01034322 | ||||
| Exit | 12019265 | 1834 days ago | IN | 0 ETH | 0.01640104 | ||||
| Withdraw | 11994768 | 1838 days ago | IN | 0 ETH | 0.00717239 | ||||
| Get Reward | 11991342 | 1839 days ago | IN | 0 ETH | 0.00663282 | ||||
| Withdraw | 11991193 | 1839 days ago | IN | 0 ETH | 0.00710598 | ||||
| Exit | 11984021 | 1840 days ago | IN | 0 ETH | 0.00989079 | ||||
| Get Reward | 11952141 | 1845 days ago | IN | 0 ETH | 0.00454471 | ||||
| Withdraw | 11951858 | 1845 days ago | IN | 0 ETH | 0.00785422 | ||||
| Withdraw | 11949817 | 1845 days ago | IN | 0 ETH | 0.00432714 | ||||
| Get Reward | 11942460 | 1846 days ago | IN | 0 ETH | 0.00688797 | ||||
| Exit | 11941726 | 1846 days ago | IN | 0 ETH | 0.00786114 | ||||
| Get Reward | 11941661 | 1846 days ago | IN | 0 ETH | 0.00834209 | ||||
| Withdraw | 11930995 | 1848 days ago | IN | 0 ETH | 0.00711312 | ||||
| Exit | 11921024 | 1849 days ago | IN | 0 ETH | 0.02628868 | ||||
| Exit | 11918375 | 1850 days ago | IN | 0 ETH | 0.01431562 | ||||
| Exit | 11917428 | 1850 days ago | IN | 0 ETH | 0.02072556 | ||||
| Exit | 11917266 | 1850 days ago | IN | 0 ETH | 0.01496846 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ETHGMELPTokenSharePool
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-01-30
*/
// File: @openzeppelin/contracts/math/Math.sol
pragma solidity ^0.6.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a >= b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow, so we distribute
return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
}
}
// File: @openzeppelin/contracts/math/SafeMath.sol
pragma solidity ^0.6.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
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;
/**
* @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/utils/Address.sol
pragma solidity ^0.6.2;
/**
* @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 in 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");
return _functionCallWithValue(target, data, value, errorMessage);
}
function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
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;
/**
* @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/GSN/Context.sol
pragma solidity ^0.6.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
pragma solidity ^0.6.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.
*/
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 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/interfaces/IRewardDistributionRecipient.sol
pragma solidity ^0.6.0;
abstract contract IRewardDistributionRecipient is Ownable {
address public rewardDistribution;
function notifyRewardAmount(uint256 reward) external virtual;
modifier onlyRewardDistribution() {
require(
_msgSender() == rewardDistribution,
'Caller is not reward distribution'
);
_;
}
function setRewardDistribution(address _rewardDistribution)
external
virtual
onlyOwner
{
rewardDistribution = _rewardDistribution;
}
}
// File: contracts/token/LPTokenWrapper.sol
pragma solidity ^0.6.0;
contract LPTokenWrapper {
using SafeMath for uint256;
using SafeERC20 for IERC20;
IERC20 public lpt;
uint256 private _totalSupply;
mapping(address => uint256) private _balances;
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
function balanceOf(address account) public view returns (uint256) {
return _balances[account];
}
function stake(uint256 amount) public virtual {
_totalSupply = _totalSupply.add(amount);
_balances[msg.sender] = _balances[msg.sender].add(amount);
lpt.safeTransferFrom(msg.sender, address(this), amount);
}
function withdraw(uint256 amount) public virtual {
_totalSupply = _totalSupply.sub(amount);
_balances[msg.sender] = _balances[msg.sender].sub(amount);
lpt.safeTransfer(msg.sender, amount);
}
}
// File: contracts/distribution/ETHGMELPTokenSharePool.sol
pragma solidity ^0.6.0;
/**
*Submitted for verification at Etherscan.io on 2020-07-17
*/
/*
____ __ __ __ _
/ __/__ __ ___ / /_ / / ___ / /_ (_)__ __
_\ \ / // // _ \/ __// _ \/ -_)/ __// / \ \ /
/___/ \_, //_//_/\__//_//_/\__/ \__//_/ /_\_\
/___/
* Synthetix: BASISCASHRewards.sol
*
* Docs: https://docs.synthetix.io/
*
*
* MIT License
* ===========
*
* Copyright (c) 2020 Synthetix
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
*/
// File: @openzeppelin/contracts/math/Math.sol
// File: @openzeppelin/contracts/math/SafeMath.sol
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// File: @openzeppelin/contracts/utils/Address.sol
// File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol
// File: contracts/IRewardDistributionRecipient.sol
contract ETHGMELPTokenSharePool is
LPTokenWrapper,
IRewardDistributionRecipient
{
IERC20 public gmeToken;
uint256 public DURATION = 14 days;
uint256 public starttime;
uint256 public periodFinish = 0;
uint256 public rewardRate = 0;
uint256 public lastUpdateTime;
uint256 public rewardPerTokenStored;
mapping(address => uint256) public userRewardPerTokenPaid;
mapping(address => uint256) public rewards;
event RewardAdded(uint256 reward);
event Staked(address indexed user, uint256 amount);
event Withdrawn(address indexed user, uint256 amount);
event RewardPaid(address indexed user, uint256 reward);
constructor(
address gmeToken_,
address lptoken_,
uint256 starttime_
) public {
gmeToken = IERC20(gmeToken_);
lpt = IERC20(lptoken_);
starttime = starttime_;
}
modifier checkStart() {
require(
block.timestamp >= starttime,
'ETHGMELPTokenSharePool: not start'
);
_;
}
modifier updateReward(address account) {
rewardPerTokenStored = rewardPerToken();
lastUpdateTime = lastTimeRewardApplicable();
if (account != address(0)) {
rewards[account] = earned(account);
userRewardPerTokenPaid[account] = rewardPerTokenStored;
}
_;
}
function lastTimeRewardApplicable() public view returns (uint256) {
return Math.min(block.timestamp, periodFinish);
}
function rewardPerToken() public view returns (uint256) {
if (totalSupply() == 0) {
return rewardPerTokenStored;
}
return
rewardPerTokenStored.add(
lastTimeRewardApplicable()
.sub(lastUpdateTime)
.mul(rewardRate)
.mul(1e18)
.div(totalSupply())
);
}
function earned(address account) public view returns (uint256) {
return
balanceOf(account)
.mul(rewardPerToken().sub(userRewardPerTokenPaid[account]))
.div(1e18)
.add(rewards[account]);
}
// stake visibility is public as overriding LPTokenWrapper's stake() function
function stake(uint256 amount)
public
override
updateReward(msg.sender)
checkStart
{
require(amount > 0, 'ETHGMELPTokenSharePool: Cannot stake 0');
super.stake(amount);
emit Staked(msg.sender, amount);
}
function withdraw(uint256 amount)
public
override
updateReward(msg.sender)
checkStart
{
require(amount > 0, 'ETHGMELPTokenSharePool: Cannot withdraw 0');
super.withdraw(amount);
emit Withdrawn(msg.sender, amount);
}
function exit() external {
withdraw(balanceOf(msg.sender));
getReward();
}
function getReward() public updateReward(msg.sender) checkStart {
uint256 reward = earned(msg.sender);
if (reward > 0) {
rewards[msg.sender] = 0;
gmeToken.safeTransfer(msg.sender, reward);
emit RewardPaid(msg.sender, reward);
}
}
function notifyRewardAmount(uint256 reward)
external
override
onlyRewardDistribution
updateReward(address(0))
{
if (block.timestamp > starttime) {
if (block.timestamp >= periodFinish) {
// Set duration to 7 days after bootstrapping
DURATION = 7 days;
rewardRate = reward.div(DURATION);
} else {
uint256 remaining = periodFinish.sub(block.timestamp);
uint256 leftover = remaining.mul(rewardRate);
rewardRate = reward.add(leftover).div(DURATION);
}
lastUpdateTime = block.timestamp;
periodFinish = block.timestamp.add(DURATION);
emit RewardAdded(reward);
} else {
rewardRate = reward.div(DURATION);
lastUpdateTime = starttime;
periodFinish = starttime.add(DURATION);
emit RewardAdded(reward);
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"gmeToken_","type":"address"},{"internalType":"address","name":"lptoken_","type":"address"},{"internalType":"uint256","name":"starttime_","type":"uint256"}],"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[],"name":"DURATION","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":[{"internalType":"address","name":"account","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"exit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gmeToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpt","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"notifyRewardAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"periodFinish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardDistribution","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerTokenStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_rewardDistribution","type":"address"}],"name":"setRewardDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"starttime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","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":"userRewardPerTokenPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052621275006006556000600855600060095534801561002157600080fd5b506040516123693803806123698339818101604052606081101561004457600080fd5b8101908080519060200190929190805190602001909291908051906020019092919050505060006100796101a860201b60201c565b905080600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35082600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806007819055505050506101b0565b600033905090565b6121aa806101bf6000396000f3fe608060405234801561001057600080fd5b50600436106101725760003560e01c806380faa57d116100de578063c8f33c9111610097578063df136d6511610071578063df136d651461055b578063e9fad8ee14610579578063ebe2b12b14610583578063f2fde38b146105a157610172565b8063c8f33c91146104eb578063cd3daf9d14610509578063ce5fc8d01461052757610172565b806380faa57d146103c157806387d0463c146103df5780638b876347146104135780638da588971461046b5780638da5cb5b14610489578063a694fc3a146104bd57610172565b80632e1a7d4d116101305780632e1a7d4d146102db5780633c6b16ab146103095780633d18b9121461033757806370a0823114610341578063715018a6146103995780637b0a47ee146103a357610172565b80628cc262146101775780630700037d146101cf5780630d68b76114610227578063101114cf1461026b57806318160ddd1461029f5780631be05289146102bd575b600080fd5b6101b96004803603602081101561018d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506105e5565b6040518082815260200191505060405180910390f35b610211600480360360208110156101e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506106cc565b6040518082815260200191505060405180910390f35b6102696004803603602081101561023d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506106e4565b005b6102736107f2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6102a7610818565b6040518082815260200191505060405180910390f35b6102c5610822565b6040518082815260200191505060405180910390f35b610307600480360360208110156102f157600080fd5b8101908080359060200190929190505050610828565b005b6103356004803603602081101561031f57600080fd5b8101908080359060200190929190505050610a1b565b005b61033f610d27565b005b6103836004803603602081101561035757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f61565b6040518082815260200191505060405180910390f35b6103a1610faa565b005b6103ab611135565b6040518082815260200191505060405180910390f35b6103c961113b565b6040518082815260200191505060405180910390f35b6103e761114e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104556004803603602081101561042957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611174565b6040518082815260200191505060405180910390f35b61047361118c565b6040518082815260200191505060405180910390f35b610491611192565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104e9600480360360208110156104d357600080fd5b81019080803590602001909291905050506111bc565b005b6104f36113af565b6040518082815260200191505060405180910390f35b6105116113b5565b6040518082815260200191505060405180910390f35b61052f61144d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610563611471565b6040518082815260200191505060405180910390f35b610581611477565b005b61058b611492565b6040518082815260200191505060405180910390f35b6105e3600480360360208110156105b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611498565b005b60006106c5600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106b7670de0b6b3a76400006106a9610692600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106846113b5565b6116a890919063ffffffff16565b61069b88610f61565b6116f290919063ffffffff16565b61177890919063ffffffff16565b6117c290919063ffffffff16565b9050919050565b600d6020528060005260406000206000915090505481565b6106ec61184a565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600154905090565b60065481565b336108316113b5565b600b8190555061083f61113b565b600a81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461090c57610882816105e5565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600754421015610967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061212a6021913960400191505060405180910390fd5b600082116109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806120736029913960400191505060405180910390fd5b6109c982611852565b3373ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5836040518082815260200191505060405180910390a25050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610a5c61184a565b73ffffffffffffffffffffffffffffffffffffffff1614610ac8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806121096021913960400191505060405180910390fd5b6000610ad26113b5565b600b81905550610ae061113b565b600a81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bad57610b23816105e5565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600754421115610caa576008544210610bea5762093a80600681905550610bdf6006548361177890919063ffffffff16565b600981905550610c4c565b6000610c01426008546116a890919063ffffffff16565b90506000610c1a600954836116f290919063ffffffff16565b9050610c43600654610c3583876117c290919063ffffffff16565b61177890919063ffffffff16565b60098190555050505b42600a81905550610c68600654426117c290919063ffffffff16565b6008819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d826040518082815260200191505060405180910390a1610d23565b610cbf6006548361177890919063ffffffff16565b600981905550600754600a81905550610ce56006546007546117c290919063ffffffff16565b6008819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d826040518082815260200191505060405180910390a15b5050565b33610d306113b5565b600b81905550610d3e61113b565b600a81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e0b57610d81816105e5565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600754421015610e66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061212a6021913960400191505060405180910390fd5b6000610e71336105e5565b90506000811115610f5d576000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f0e3382600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166119509092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a25b5050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fb261184a565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611074576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60095481565b6000611149426008546119f2565b905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c6020528060005260406000206000915090505481565b60075481565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b336111c56113b5565b600b819055506111d361113b565b600a81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112a057611216816105e5565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6007544210156112fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061212a6021913960400191505060405180910390fd5b60008211611354576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806120c26026913960400191505060405180910390fd5b61135d82611a0b565b3373ffffffffffffffffffffffffffffffffffffffff167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d836040518082815260200191505060405180910390a25050565b600a5481565b6000806113c0610818565b14156113d057600b54905061144a565b6114476114366113de610818565b611428670de0b6b3a764000061141a60095461140c600a546113fe61113b565b6116a890919063ffffffff16565b6116f290919063ffffffff16565b6116f290919063ffffffff16565b61177890919063ffffffff16565b600b546117c290919063ffffffff16565b90505b90565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b61148861148333610f61565b610828565b611490610d27565b565b60085481565b6114a061184a565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611562576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061209c6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006116ea83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b0b565b905092915050565b6000808314156117055760009050611772565b600082840290508284828161171657fe5b041461176d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806120e86021913960400191505060405180910390fd5b809150505b92915050565b60006117ba83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611bcb565b905092915050565b600080828401905083811015611840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b611867816001546116a890919063ffffffff16565b6001819055506118bf81600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116a890919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061194d338260008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166119509092919063ffffffff16565b50565b6119ed8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611c91565b505050565b6000818310611a015781611a03565b825b905092915050565b611a20816001546117c290919063ffffffff16565b600181905550611a7881600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117c290919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b0833308360008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d80909392919063ffffffff16565b50565b6000838311158290611bb8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b7d578082015181840152602081019050611b62565b50505050905090810190601f168015611baa5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008083118290611c77576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c3c578082015181840152602081019050611c21565b50505050905090810190601f168015611c695780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581611c8357fe5b049050809150509392505050565b6060611cf3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611e419092919063ffffffff16565b9050600081511115611d7b57808060200190516020811015611d1457600080fd5b8101908080519060200190929190505050611d7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061214b602a913960400191505060405180910390fd5b5b505050565b611e3b846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611c91565b50505050565b6060611e508484600085611e59565b90509392505050565b6060611e648561205f565b611ed6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310611f265780518252602082019150602081019050602083039250611f03565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611f88576040519150601f19603f3d011682016040523d82523d6000602084013e611f8d565b606091505b50915091508115611fa2578092505050612057565b600081511115611fb55780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561201c578082015181840152602081019050612001565b50505050905090810190601f1680156120495780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b600080823b90506000811191505091905056fe455448474d454c50546f6b656e5368617265506f6f6c3a2043616e6e6f7420776974686472617720304f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455448474d454c50546f6b656e5368617265506f6f6c3a2043616e6e6f74207374616b652030536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7743616c6c6572206973206e6f742072657761726420646973747269627574696f6e455448474d454c50546f6b656e5368617265506f6f6c3a206e6f742073746172745361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220f6cd222460aa65c12afba37109f32cd2c377082f28f5c49a8913dfa506ce353364736f6c634300060c00330000000000000000000000009eb6be354d88fd88795a04de899a57a77c545590000000000000000000000000806e128faea66172e77ceb86821e0a1fcaf5a6690000000000000000000000000000000000000000000000000000000060162b40
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101725760003560e01c806380faa57d116100de578063c8f33c9111610097578063df136d6511610071578063df136d651461055b578063e9fad8ee14610579578063ebe2b12b14610583578063f2fde38b146105a157610172565b8063c8f33c91146104eb578063cd3daf9d14610509578063ce5fc8d01461052757610172565b806380faa57d146103c157806387d0463c146103df5780638b876347146104135780638da588971461046b5780638da5cb5b14610489578063a694fc3a146104bd57610172565b80632e1a7d4d116101305780632e1a7d4d146102db5780633c6b16ab146103095780633d18b9121461033757806370a0823114610341578063715018a6146103995780637b0a47ee146103a357610172565b80628cc262146101775780630700037d146101cf5780630d68b76114610227578063101114cf1461026b57806318160ddd1461029f5780631be05289146102bd575b600080fd5b6101b96004803603602081101561018d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506105e5565b6040518082815260200191505060405180910390f35b610211600480360360208110156101e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506106cc565b6040518082815260200191505060405180910390f35b6102696004803603602081101561023d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506106e4565b005b6102736107f2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6102a7610818565b6040518082815260200191505060405180910390f35b6102c5610822565b6040518082815260200191505060405180910390f35b610307600480360360208110156102f157600080fd5b8101908080359060200190929190505050610828565b005b6103356004803603602081101561031f57600080fd5b8101908080359060200190929190505050610a1b565b005b61033f610d27565b005b6103836004803603602081101561035757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f61565b6040518082815260200191505060405180910390f35b6103a1610faa565b005b6103ab611135565b6040518082815260200191505060405180910390f35b6103c961113b565b6040518082815260200191505060405180910390f35b6103e761114e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104556004803603602081101561042957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611174565b6040518082815260200191505060405180910390f35b61047361118c565b6040518082815260200191505060405180910390f35b610491611192565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104e9600480360360208110156104d357600080fd5b81019080803590602001909291905050506111bc565b005b6104f36113af565b6040518082815260200191505060405180910390f35b6105116113b5565b6040518082815260200191505060405180910390f35b61052f61144d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610563611471565b6040518082815260200191505060405180910390f35b610581611477565b005b61058b611492565b6040518082815260200191505060405180910390f35b6105e3600480360360208110156105b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611498565b005b60006106c5600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106b7670de0b6b3a76400006106a9610692600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106846113b5565b6116a890919063ffffffff16565b61069b88610f61565b6116f290919063ffffffff16565b61177890919063ffffffff16565b6117c290919063ffffffff16565b9050919050565b600d6020528060005260406000206000915090505481565b6106ec61184a565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600154905090565b60065481565b336108316113b5565b600b8190555061083f61113b565b600a81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461090c57610882816105e5565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600754421015610967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061212a6021913960400191505060405180910390fd5b600082116109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806120736029913960400191505060405180910390fd5b6109c982611852565b3373ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5836040518082815260200191505060405180910390a25050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610a5c61184a565b73ffffffffffffffffffffffffffffffffffffffff1614610ac8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806121096021913960400191505060405180910390fd5b6000610ad26113b5565b600b81905550610ae061113b565b600a81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bad57610b23816105e5565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600754421115610caa576008544210610bea5762093a80600681905550610bdf6006548361177890919063ffffffff16565b600981905550610c4c565b6000610c01426008546116a890919063ffffffff16565b90506000610c1a600954836116f290919063ffffffff16565b9050610c43600654610c3583876117c290919063ffffffff16565b61177890919063ffffffff16565b60098190555050505b42600a81905550610c68600654426117c290919063ffffffff16565b6008819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d826040518082815260200191505060405180910390a1610d23565b610cbf6006548361177890919063ffffffff16565b600981905550600754600a81905550610ce56006546007546117c290919063ffffffff16565b6008819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d826040518082815260200191505060405180910390a15b5050565b33610d306113b5565b600b81905550610d3e61113b565b600a81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e0b57610d81816105e5565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600754421015610e66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061212a6021913960400191505060405180910390fd5b6000610e71336105e5565b90506000811115610f5d576000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f0e3382600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166119509092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a25b5050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fb261184a565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611074576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60095481565b6000611149426008546119f2565b905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c6020528060005260406000206000915090505481565b60075481565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b336111c56113b5565b600b819055506111d361113b565b600a81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112a057611216816105e5565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6007544210156112fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061212a6021913960400191505060405180910390fd5b60008211611354576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806120c26026913960400191505060405180910390fd5b61135d82611a0b565b3373ffffffffffffffffffffffffffffffffffffffff167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d836040518082815260200191505060405180910390a25050565b600a5481565b6000806113c0610818565b14156113d057600b54905061144a565b6114476114366113de610818565b611428670de0b6b3a764000061141a60095461140c600a546113fe61113b565b6116a890919063ffffffff16565b6116f290919063ffffffff16565b6116f290919063ffffffff16565b61177890919063ffffffff16565b600b546117c290919063ffffffff16565b90505b90565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b61148861148333610f61565b610828565b611490610d27565b565b60085481565b6114a061184a565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611562576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061209c6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006116ea83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b0b565b905092915050565b6000808314156117055760009050611772565b600082840290508284828161171657fe5b041461176d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806120e86021913960400191505060405180910390fd5b809150505b92915050565b60006117ba83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611bcb565b905092915050565b600080828401905083811015611840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b611867816001546116a890919063ffffffff16565b6001819055506118bf81600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116a890919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061194d338260008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166119509092919063ffffffff16565b50565b6119ed8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611c91565b505050565b6000818310611a015781611a03565b825b905092915050565b611a20816001546117c290919063ffffffff16565b600181905550611a7881600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117c290919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b0833308360008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d80909392919063ffffffff16565b50565b6000838311158290611bb8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b7d578082015181840152602081019050611b62565b50505050905090810190601f168015611baa5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008083118290611c77576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c3c578082015181840152602081019050611c21565b50505050905090810190601f168015611c695780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581611c8357fe5b049050809150509392505050565b6060611cf3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611e419092919063ffffffff16565b9050600081511115611d7b57808060200190516020811015611d1457600080fd5b8101908080519060200190929190505050611d7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061214b602a913960400191505060405180910390fd5b5b505050565b611e3b846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611c91565b50505050565b6060611e508484600085611e59565b90509392505050565b6060611e648561205f565b611ed6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310611f265780518252602082019150602081019050602083039250611f03565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611f88576040519150601f19603f3d011682016040523d82523d6000602084013e611f8d565b606091505b50915091508115611fa2578092505050612057565b600081511115611fb55780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561201c578082015181840152602081019050612001565b50505050905090810190601f1680156120495780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b600080823b90506000811191505091905056fe455448474d454c50546f6b656e5368617265506f6f6c3a2043616e6e6f7420776974686472617720304f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455448474d454c50546f6b656e5368617265506f6f6c3a2043616e6e6f74207374616b652030536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7743616c6c6572206973206e6f742072657761726420646973747269627574696f6e455448474d454c50546f6b656e5368617265506f6f6c3a206e6f742073746172745361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220f6cd222460aa65c12afba37109f32cd2c377082f28f5c49a8913dfa506ce353364736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000009eb6be354d88fd88795a04de899a57a77c545590000000000000000000000000806e128faea66172e77ceb86821e0a1fcaf5a6690000000000000000000000000000000000000000000000000000000060162b40
-----Decoded View---------------
Arg [0] : gmeToken_ (address): 0x9eb6bE354d88fD88795a04DE899a57A77C545590
Arg [1] : lptoken_ (address): 0x806e128FAEa66172E77CEB86821E0a1FCAf5A669
Arg [2] : starttime_ (uint256): 1612065600
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000009eb6be354d88fd88795a04de899a57a77c545590
Arg [1] : 000000000000000000000000806e128faea66172e77ceb86821e0a1fcaf5a669
Arg [2] : 0000000000000000000000000000000000000000000000000000000060162b40
Deployed Bytecode Sourcemap
25618:4346:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27613:265;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26034:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22524:178;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22223:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23003:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25745:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28253:288;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28962:999;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28654:300;;;:::i;:::-;;23102:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21509:148;;;:::i;:::-;;25856:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27046:131;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25716:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25970:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25787:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20867:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27969:276;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25892:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27185:420;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22888:17;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25928:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28549:97;;;:::i;:::-;;25818:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21812:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27613:265;27667:7;27707:163;27853:7;:16;27861:7;27853:16;;;;;;;;;;;;;;;;27707:123;27825:4;27707:95;27748:53;27769:22;:31;27792:7;27769:31;;;;;;;;;;;;;;;;27748:16;:14;:16::i;:::-;:20;;:53;;;;:::i;:::-;27707:18;27717:7;27707:9;:18::i;:::-;:40;;:95;;;;:::i;:::-;:117;;:123;;;;:::i;:::-;:145;;:163;;;;:::i;:::-;27687:183;;27613:265;;;:::o;26034:42::-;;;;;;;;;;;;;;;;;:::o;22524:178::-;21089:12;:10;:12::i;:::-;21079:22;;:6;;;;;;;;;;;:22;;;21071:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22675:19:::1;22654:18;;:40;;;;;;;;;;;;;;;;;;22524:178:::0;:::o;22223:33::-;;;;;;;;;;;;;:::o;23003:91::-;23047:7;23074:12;;23067:19;;23003:91;:::o;25745:33::-;;;;:::o;28253:288::-;28343:10;26781:16;:14;:16::i;:::-;26758:20;:39;;;;26825:26;:24;:26::i;:::-;26808:14;:43;;;;26885:1;26866:21;;:7;:21;;;26862:157;;26923:15;26930:7;26923:6;:15::i;:::-;26904:7;:16;26912:7;26904:16;;;;;;;;;;;;;;;:34;;;;26987:20;;26953:22;:31;26976:7;26953:31;;;;;;;;;;;;;;;:54;;;;26862:157;26610:9:::1;;26591:15;:28;;26569:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28408:1:::2;28399:6;:10;28391:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28466:22;28481:6;28466:14;:22::i;:::-;28514:10;28504:29;;;28526:6;28504:29;;;;;;;;;;;;;;;;;;28253:288:::0;;:::o;28962:999::-;22417:18;;;;;;;;;;;22401:34;;:12;:10;:12::i;:::-;:34;;;22379:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29104:1:::1;26781:16;:14;:16::i;:::-;26758:20;:39;;;;26825:26;:24;:26::i;:::-;26808:14;:43;;;;26885:1;26866:21;;:7;:21;;;26862:157;;26923:15;26930:7;26923:6;:15::i;:::-;26904:7;:16;26912:7;26904:16;;;;;;;;;;;;;;;:34;;;;26987:20;;26953:22;:31;26976:7;26953:31;;;;;;;;;;;;;;;:54;;;;26862:157;29146:9:::2;;29128:15;:27;29124:830;;;29195:12;;29176:15;:31;29172:427;;29302:6;29291:8;:17;;;;29340:20;29351:8;;29340:6;:10;;:20;;;;:::i;:::-;29327:10;:33;;;;29172:427;;;29401:17;29421:33;29438:15;29421:12;;:16;;:33;;;;:::i;:::-;29401:53;;29473:16;29492:25;29506:10;;29492:9;:13;;:25;;;;:::i;:::-;29473:44;;29549:34;29574:8;;29549:20;29560:8;29549:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;29536:10;:47;;;;29172:427;;;29630:15;29613:14;:32;;;;29675:29;29695:8;;29675:15;:19;;:29;;;;:::i;:::-;29660:12;:44;;;;29724:19;29736:6;29724:19;;;;;;;;;;;;;;;;;;29124:830;;;29789:20;29800:8;;29789:6;:10;;:20;;;;:::i;:::-;29776:10;:33;;;;29841:9;;29824:14;:26;;;;29880:23;29894:8;;29880:9;;:13;;:23;;;;:::i;:::-;29865:12;:38;;;;29923:19;29935:6;29923:19;;;;;;;;;;;;;;;;;;29124:830;22507:1:::1;28962:999:::0;:::o;28654:300::-;28695:10;26781:16;:14;:16::i;:::-;26758:20;:39;;;;26825:26;:24;:26::i;:::-;26808:14;:43;;;;26885:1;26866:21;;:7;:21;;;26862:157;;26923:15;26930:7;26923:6;:15::i;:::-;26904:7;:16;26912:7;26904:16;;;;;;;;;;;;;;;:34;;;;26987:20;;26953:22;:31;26976:7;26953:31;;;;;;;;;;;;;;;:54;;;;26862:157;26610:9:::1;;26591:15;:28;;26569:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28729:14:::2;28746:18;28753:10;28746:6;:18::i;:::-;28729:35;;28788:1;28779:6;:10;28775:172;;;28828:1;28806:7;:19;28814:10;28806:19;;;;;;;;;;;;;;;:23;;;;28844:41;28866:10;28878:6;28844:8;;;;;;;;;;;:21;;;;:41;;;;;:::i;:::-;28916:10;28905:30;;;28928:6;28905:30;;;;;;;;;;;;;;;;;;28775:172;26691:1;28654:300:::0;:::o;23102:110::-;23159:7;23186:9;:18;23196:7;23186:18;;;;;;;;;;;;;;;;23179:25;;23102:110;;;:::o;21509:148::-;21089:12;:10;:12::i;:::-;21079:22;;:6;;;;;;;;;;;:22;;;21071:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21616:1:::1;21579:40;;21600:6;;;;;;;;;;;21579:40;;;;;;;;;;;;21647:1;21630:6;;:19;;;;;;;;;;;;;;;;;;21509:148::o:0;25856:29::-;;;;:::o;27046:131::-;27103:7;27130:39;27139:15;27156:12;;27130:8;:39::i;:::-;27123:46;;27046:131;:::o;25716:22::-;;;;;;;;;;;;;:::o;25970:57::-;;;;;;;;;;;;;;;;;:::o;25787:24::-;;;;:::o;20867:79::-;20905:7;20932:6;;;;;;;;;;;20925:13;;20867:79;:::o;27969:276::-;28056:10;26781:16;:14;:16::i;:::-;26758:20;:39;;;;26825:26;:24;:26::i;:::-;26808:14;:43;;;;26885:1;26866:21;;:7;:21;;;26862:157;;26923:15;26930:7;26923:6;:15::i;:::-;26904:7;:16;26912:7;26904:16;;;;;;;;;;;;;;;:34;;;;26987:20;;26953:22;:31;26976:7;26953:31;;;;;;;;;;;;;;;:54;;;;26862:157;26610:9:::1;;26591:15;:28;;26569:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28121:1:::2;28112:6;:10;28104:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28176:19;28188:6;28176:11;:19::i;:::-;28218:10;28211:26;;;28230:6;28211:26;;;;;;;;;;;;;;;;;;27969:276:::0;;:::o;25892:29::-;;;;:::o;27185:420::-;27232:7;27273:1;27256:13;:11;:13::i;:::-;:18;27252:78;;;27298:20;;27291:27;;;;27252:78;27360:237;27403:179;27568:13;:11;:13::i;:::-;27403:138;27536:4;27403:106;27498:10;;27403:68;27456:14;;27403:26;:24;:26::i;:::-;:52;;:68;;;;:::i;:::-;:94;;:106;;;;:::i;:::-;:132;;:138;;;;:::i;:::-;:164;;:179;;;;:::i;:::-;27360:20;;:24;;:237;;;;:::i;:::-;27340:257;;27185:420;;:::o;22888:17::-;;;;;;;;;;;;:::o;25928:35::-;;;;:::o;28549:97::-;28585:31;28594:21;28604:10;28594:9;:21::i;:::-;28585:8;:31::i;:::-;28627:11;:9;:11::i;:::-;28549:97::o;25818:31::-;;;;:::o;21812:244::-;21089:12;:10;:12::i;:::-;21079:22;;:6;;;;;;;;;;;:22;;;21071:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21921:1:::1;21901:22;;:8;:22;;;;21893:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22011:8;21982:38;;22003:6;;;;;;;;;;;21982:38;;;;;;;;;;;;22040:8;22031:6;;:17;;;;;;;;;;;;;;;;;;21812:244:::0;:::o;2236:136::-;2294:7;2321:43;2325:1;2328;2321:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;2314:50;;2236:136;;;;:::o;3126:471::-;3184:7;3434:1;3429;:6;3425:47;;;3459:1;3452:8;;;;3425:47;3484:9;3500:1;3496;:5;3484:17;;3529:1;3524;3520;:5;;;;;;:10;3512:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3588:1;3581:8;;;3126:471;;;;;:::o;4073:132::-;4131:7;4158:39;4162:1;4165;4158:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;4151:46;;4073:132;;;;:::o;1772:181::-;1830:7;1850:9;1866:1;1862;:5;1850:17;;1891:1;1886;:6;;1878:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944:1;1937:8;;;1772:181;;;;:::o;19423:106::-;19476:15;19511:10;19504:17;;19423:106;:::o;23466:222::-;23541:24;23558:6;23541:12;;:16;;:24;;;;:::i;:::-;23526:12;:39;;;;23600:33;23626:6;23600:9;:21;23610:10;23600:21;;;;;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;23576:9;:21;23586:10;23576:21;;;;;;;;;;;;;;;:57;;;;23644:36;23661:10;23673:6;23644:3;;;;;;;;;;:16;;;;:36;;;;;:::i;:::-;23466:222;:::o;15728:177::-;15811:86;15831:5;15861:23;;;15886:2;15890:5;15838:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15811:19;:86::i;:::-;15728:177;;;:::o;426:106::-;484:7;515:1;511;:5;:13;;523:1;511:13;;;519:1;511:13;504:20;;426:106;;;;:::o;23220:238::-;23292:24;23309:6;23292:12;;:16;;:24;;;;:::i;:::-;23277:12;:39;;;;23351:33;23377:6;23351:9;:21;23361:10;23351:21;;;;;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;23327:9;:21;23337:10;23327:21;;;;;;;;;;;;;;;:57;;;;23395:55;23416:10;23436:4;23443:6;23395:3;;;;;;;;;;:20;;;;:55;;;;;;:::i;:::-;23220:238;:::o;2675:192::-;2761:7;2794:1;2789;:6;;2797:12;2781:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2821:9;2837:1;2833;:5;2821:17;;2858:1;2851:8;;;2675:192;;;;;:::o;4701:278::-;4787:7;4819:1;4815;:5;4822:12;4807:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4846:9;4862:1;4858;:5;;;;;;4846:17;;4970:1;4963:8;;;4701:278;;;;;:::o;18033:761::-;18457:23;18483:69;18511:4;18483:69;;;;;;;;;;;;;;;;;18491:5;18483:27;;;;:69;;;;;:::i;:::-;18457:95;;18587:1;18567:10;:17;:21;18563:224;;;18709:10;18698:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18690:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18563:224;18033:761;;;:::o;15913:205::-;16014:96;16034:5;16064:27;;;16093:4;16099:2;16103:5;16041:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16014:19;:96::i;:::-;15913:205;;;;:::o;12711:196::-;12814:12;12846:53;12869:6;12877:4;12883:1;12886:12;12846:22;:53::i;:::-;12839:60;;12711:196;;;;;:::o;14088:979::-;14218:12;14251:18;14262:6;14251:10;:18::i;:::-;14243:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14377:12;14391:23;14418:6;:11;;14438:8;14449:4;14418:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14376:78;;;;14469:7;14465:595;;;14500:10;14493:17;;;;;;14465:595;14634:1;14614:10;:17;:21;14610:439;;;14877:10;14871:17;14938:15;14925:10;14921:2;14917:19;14910:44;14825:148;15020:12;15013:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14088:979;;;;;;;:::o;9793:422::-;9853:4;10061:12;10172:7;10160:20;10152:28;;10206:1;10199:4;:8;10192:15;;;9793:422;;;:::o
Swarm Source
ipfs://f6cd222460aa65c12afba37109f32cd2c377082f28f5c49a8913dfa506ce3533
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 32 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.