ETH Price: $3,409.59 (-1.55%)
Gas: 8 Gwei

Token

LinkPool Owners LINK (lpoLINK)
 

Overview

Max Total Supply

1,173,807,180,875,177,725,976 lpoLINK

Holders

697

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Filtered by Token Holder
jdunk2.eth
Balance
214,744,462,145,474,036 lpoLINK

Value
$0.00
0x44443cf6e3551109746b42150336c513e6e08e9b
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OwnersRewardsPool

Compiler Version
v0.7.4+commit.3f05b770

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-04-16
*/

// Sources flattened with hardhat v2.1.1 https://hardhat.org

// File @openzeppelin/contracts/math/[email protected]



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/[email protected]

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/utils/[email protected]

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/[email protected]

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/utils/[email protected]

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor () internal {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


// File @openzeppelin/contracts/utils/[email protected]

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/GSN/[email protected]

pragma solidity >=0.6.0 <0.8.0;


// File contracts/v7/tokens/VirtualERC20.sol

pragma solidity 0.7.4;




contract VirtualERC20 is IERC20, Context {
    using SafeMath for uint256;
    using Address for address;

    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    constructor(string memory tokenName, string memory tokenSymbol) {
        _name = tokenName;
        _symbol = tokenSymbol;
        _decimals = 18;
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    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;
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), 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");

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    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);
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

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/v7/interfaces/IERC677Receiver.sol

pragma solidity 0.7.4;

interface ERC677Receiver {
    function onTokenTransfer(address _sender, uint256 _value, bytes calldata _data) external;
}


// File contracts/v7/interfaces/IERC677.sol


pragma solidity 0.7.4;

interface IERC677 is IERC20 {
    function transferAndCall(address _to, uint256 _value, bytes calldata _data) external returns (bool success);
}


// File contracts/v7/tokens/ERC677.sol


pragma solidity 0.7.4;


contract ERC677 is IERC677, ERC20 {
    constructor(string memory tokenName, string memory tokenSymbol) ERC20(tokenName, tokenSymbol) {}

    function transferAndCall(
        address _to,
        uint256 _value,
        bytes calldata _data
    ) public override returns (bool success) {
        super.transfer(_to, _value);
        if (isContract(_to)) {
            contractFallback(_to, _value, _data);
        }
        return true;
    }

    function contractFallback(
        address _to,
        uint256 _value,
        bytes calldata _data
    ) private {
        ERC677Receiver receiver = ERC677Receiver(_to);
        receiver.onTokenTransfer(msg.sender, _value, _data);
    }

    function isContract(address _addr) private view returns (bool hasCode) {
        uint256 length;
        assembly {
            length := extcodesize(_addr)
        }
        return length > 0;
    }
}


// File contracts/v7/tokens/VirtualERC677.sol


pragma solidity 0.7.4;


contract VirtualERC677 is IERC677, VirtualERC20 {
    constructor(string memory tokenName, string memory tokenSymbol) VirtualERC20(tokenName, tokenSymbol) {}

    function transferAndCall(
        address _to,
        uint256 _value,
        bytes calldata _data
    ) public override returns (bool success) {
        super.transfer(_to, _value);
        if (isContract(_to)) {
            contractFallback(_to, _value, _data);
        }
        return true;
    }

    function contractFallback(
        address _to,
        uint256 _value,
        bytes calldata _data
    ) private {
        ERC677Receiver receiver = ERC677Receiver(_to);
        receiver.onTokenTransfer(msg.sender, _value, _data);
    }

    function isContract(address _addr) private view returns (bool hasCode) {
        uint256 length;
        assembly {
            length := extcodesize(_addr)
        }
        return length > 0;
    }
}


// File contracts/v7/RewardsPool.sol


pragma solidity 0.7.4;



/**
 * @title RewardsPool
 * @dev Handles rewards distribution of an asset based on a staking derivative token
 * that represents a user's staked balance
 */
contract RewardsPool is VirtualERC677, ReentrancyGuard {
    using SafeMath for uint256;
    using SafeERC20 for IERC677;

    uint256 public constant UINT_MAX_VALUE = uint256(-1);

    IERC677 public stakingDerivative;
    IERC677 public rewardsToken;
    uint256 public rewardPerToken;

    mapping(address => uint256) public userRewardPerTokenPaid;

    event Withdrawn(address indexed user, uint256 amount);

    constructor(
        address _stakingDerivative,
        address _rewardsToken,
        string memory _tokenName,
        string memory _tokenSymbol
    ) VirtualERC677(_tokenName, _tokenSymbol) {
        rewardsToken = IERC677(_rewardsToken);
        stakingDerivative = IERC677(_stakingDerivative);
    }

    /**
     * @dev calculates a user's total unclaimed rewards (principal balance + newly earned rewards)
     * @param _account user to calculate rewards for
     * @return user's total unclaimed rewards
     **/
    function balanceOf(address _account) public view virtual override returns (uint256) {
        return
            stakingDerivative.balanceOf(_account).mul(rewardPerToken.sub(userRewardPerTokenPaid[_account])).div(1e18).add(
                super.balanceOf(_account)
            );
    }

    /**
     * @dev updates a user's principal reward balance
     * @param _account user to update for
     **/
    function updateReward(address _account) external nonReentrant {
        _updateReward(_account);
    }

    /**
     * @dev withdraws a user's earned rewards
     * @param _amount amount to withdraw
     **/
    function withdraw(uint256 _amount) public virtual nonReentrant {
        require(_amount > 0, "Amount must be > 0");

        _updateReward(msg.sender);
        _burn(msg.sender, _amount);
        rewardsToken.safeTransfer(msg.sender, _amount);
        emit Withdrawn(msg.sender, _amount);
    }

    /**
     * @dev updates rewardPerToken
     * @param _reward deposited reward amount
     **/
    function _updateRewardPerToken(uint256 _reward) internal {
        require(stakingDerivative.totalSupply() > 0, "Staked amount must be > 0");
        rewardPerToken = rewardPerToken.add(_reward.mul(1e18).div(stakingDerivative.totalSupply()));
    }

    /**
     * @dev updates a user's principal reward balance
     * @param _account user to update for
     **/
    function _updateReward(address _account) internal virtual {
        uint256 toMint = balanceOf(_account).sub(super.balanceOf(_account));
        if (toMint > 0) {
            _mint(_account, toMint);
        }
        userRewardPerTokenPaid[_account] = rewardPerToken;
    }

    /**
     * @dev transfers unclaimed rewards from one user to another
     * @param _from user to transfer from
     * @param _to user to transfer to
     * @param _amount amount to transfer
     **/
    function _transfer(
        address _from,
        address _to,
        uint256 _amount
    ) internal virtual override {
        _updateReward(_from);
        super._transfer(_from, _to, _amount);
    }
}


// File contracts/v7/OwnersRewardsPool.sol


pragma solidity 0.7.4;


/**
 * @title OwnersRewardsPool
 * @dev Handles distribution of pool owners rewards
 */
contract OwnersRewardsPool is RewardsPool {
    using SafeMath for uint256;
    using SafeERC20 for IERC677;

    address public poolOwners;
    uint256 public distributedRewards;

    event RewardDistributed(address indexed sender, uint256 amountStaked, uint256 amount);

    constructor(
        address _poolOwners,
        address _rewardsToken,
        string memory _dTokenName,
        string memory _dTokenSymbol
    ) RewardsPool(_poolOwners, _rewardsToken, _dTokenName, _dTokenSymbol) {
        poolOwners = _poolOwners;
    }

    /**
     * @dev withdraws a user's earned rewards
     * @param _amount amount to withdraw
     **/
    function withdraw(uint256 _amount) public virtual override {
        uint256 toWithdraw = _amount;

        if (_amount == UINT_MAX_VALUE) {
            toWithdraw = balanceOf(msg.sender);
        }

        distributedRewards -= toWithdraw;
        super.withdraw(toWithdraw);
    }

    /**
     * @dev withdraws all of a user's earned rewards
     * @param _account user to withdraw for
     **/
    function withdraw(address _account) external virtual nonReentrant {
        require(msg.sender == poolOwners, "PoolOwners only");

        uint256 toWithdraw = balanceOf(_account);

        if (toWithdraw > 0) {
            _updateReward(_account);
            _burn(_account, toWithdraw);
            distributedRewards -= toWithdraw;
            rewardsToken.safeTransfer(_account, toWithdraw);
            emit Withdrawn(_account, toWithdraw);
        }
    }

    /**
     * @dev ERC677 implementation that automatically calls distributeRewards
     * @param _sender of the token transfer
     * @param _value of the token transfer
     **/
    function onTokenTransfer(
        address _sender,
        uint256 _value,
        bytes calldata
    ) external nonReentrant {
        require(msg.sender == address(rewardsToken), "Sender must be rewards token");
        require(_value > 0, "Cannot deposit 0");
        distributeRewards();
    }

    /**
     * @dev distributes new rewards that have been deposited
     **/
    function distributeRewards() public {
        require(stakingDerivative.totalSupply() > 0, "Cannot distribute when nothing is staked");
        uint256 toDistribute = rewardsToken.balanceOf(address(this)).sub(distributedRewards);
        distributedRewards += toDistribute;
        _updateRewardPerToken(toDistribute);
        emit RewardDistributed(msg.sender, stakingDerivative.totalSupply(), toDistribute);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_poolOwners","type":"address"},{"internalType":"address","name":"_rewardsToken","type":"address"},{"internalType":"string","name":"_dTokenName","type":"string"},{"internalType":"string","name":"_dTokenSymbol","type":"string"}],"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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountStaked","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardDistributed","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":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[],"name":"UINT_MAX_VALUE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"distributeRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distributedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onTokenTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"poolOwners","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":"rewardsToken","outputs":[{"internalType":"contract IERC677","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingDerivative","outputs":[{"internalType":"contract IERC677","name":"","type":"address"}],"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":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"success","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":"_account","type":"address"}],"name":"updateReward","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"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001e5338038062001e53833981810160405260808110156200003757600080fd5b815160208301516040808501805191519395929483019291846401000000008211156200006357600080fd5b9083019060208201858111156200007957600080fd5b82516401000000008111828201881017156200009457600080fd5b82525081516020918201929091019080838360005b83811015620000c3578181015183820152602001620000a9565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011557600080fd5b9083019060208201858111156200012b57600080fd5b82516401000000008111828201881017156200014657600080fd5b82525081516020918201929091019080838360005b83811015620001755781810151838201526020016200015b565b50505050905090810190601f168015620001a35780820380516001836020036101000a031916815260200191505b5060405250505083838383818181818160039080519060200190620001ca92919062000244565b508051620001e090600490602084019062000244565b505060058054601260ff19909116179055505060016006555050600880546001600160a01b03199081166001600160a01b03948516179091556007805482169484169490941790935550600b805490921695169490941790935550620002f0915050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200027c5760008555620002c7565b82601f106200029757805160ff1916838001178555620002c7565b82800160010185558215620002c7579182015b82811115620002c7578251825591602001919060010190620002aa565b50620002d5929150620002d9565b5090565b5b80821115620002d55760008155600101620002da565b611b5380620003006000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063c375fcfa1161007c578063c375fcfa1461046a578063cd3daf9d14610472578063d0fc81d21461047a578063d1af0c7d14610482578063dd62ed3e1461048a578063f3e14f1e146104b857610137565b806370a08231146103655780638b8763471461038b57806395d89b41146103b1578063a4c0ed36146103b9578063a9059cbb1461043e57610137565b80634000aea0116100ff5780634000aea01461026857806351cff8d9146102ed578063632447c91461031357806369b78772146103395780636f4a2cd01461035d57610137565b806306fdde031461013c578063095ea7b3146101b957806318160ddd146101f957806323b872dd146102135780632e1a7d4d14610249575b600080fd5b6101446104c0565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e5600480360360408110156101cf57600080fd5b506001600160a01b038135169060200135610556565b604080519115158252519081900360200190f35b610201610574565b60408051918252519081900360200190f35b6101e56004803603606081101561022957600080fd5b506001600160a01b0381358116916020810135909116906040013561057a565b6102666004803603602081101561025f57600080fd5b5035610602565b005b6101e56004803603606081101561027e57600080fd5b6001600160a01b03823516916020810135918101906060810160408201356401000000008111156102ae57600080fd5b8201836020820111156102c057600080fd5b803590602001918460018302840111640100000000831117156102e257600080fd5b50909250905061062f565b6102666004803603602081101561030357600080fd5b50356001600160a01b0316610661565b6102666004803603602081101561032957600080fd5b50356001600160a01b031661078c565b6103416107e8565b604080516001600160a01b039092168252519081900360200190f35b6102666107f7565b6102016004803603602081101561037b57600080fd5b50356001600160a01b03166109ff565b610201600480360360208110156103a157600080fd5b50356001600160a01b0316610ad0565b610144610ae2565b610266600480360360608110156103cf57600080fd5b6001600160a01b03823516916020810135918101906060810160408201356401000000008111156103ff57600080fd5b82018360208201111561041157600080fd5b8035906020019184600183028401116401000000008311171561043357600080fd5b509092509050610b43565b6101e56004803603604081101561045457600080fd5b506001600160a01b038135169060200135610c48565b610341610c5c565b610201610c6b565b610201610c71565b610341610c77565b610201600480360360408110156104a057600080fd5b506001600160a01b0381358116916020013516610c86565b610201610cb1565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561054c5780601f106105215761010080835404028352916020019161054c565b820191906000526020600020905b81548152906001019060200180831161052f57829003601f168201915b5050505050905090565b600061056a610563610cb7565b8484610cbb565b5060015b92915050565b60025490565b6000610587848484610da7565b6105f784610593610cb7565b6105f285604051806060016040528060288152602001611a62602891396001600160a01b038a166000908152600160205260408120906105d1610cb7565b6001600160a01b031681526020810191909152604001600020549190610dc0565b610cbb565b5060015b9392505050565b8060001981141561061957610616336109ff565b90505b600c8054829003905561062b81610e57565b5050565b600061063b8585610c48565b5061064585610f51565b156106565761065685858585610f57565b506001949350505050565b600260065414156106a7576040805162461bcd60e51b815260206004820152601f6024820152600080516020611969833981519152604482015290519081900360640190fd5b6002600655600b546001600160a01b031633146106fd576040805162461bcd60e51b815260206004820152600f60248201526e506f6f6c4f776e657273206f6e6c7960881b604482015290519081900360640190fd5b6000610708826109ff565b905080156107835761071982611000565b610723828261104f565b600c80548290039055600854610743906001600160a01b0316838361113f565b6040805182815290516001600160a01b038416917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a25b50506001600655565b600260065414156107d2576040805162461bcd60e51b815260206004820152601f6024820152600080516020611969833981519152604482015290519081900360640190fd5b60026006556107e081611000565b506001600655565b6007546001600160a01b031681565b600754604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561083c57600080fd5b505afa158015610850573d6000803e3d6000fd5b505050506040513d602081101561086657600080fd5b5051116108a45760405162461bcd60e51b8152600401808060200182810382526028815260200180611a196028913960400191505060405180910390fd5b600c54600854604080516370a0823160e01b8152306004820152905160009361092d9390926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b1580156108fb57600080fd5b505afa15801561090f573d6000803e3d6000fd5b505050506040513d602081101561092557600080fd5b505190611191565b600c8054820190559050610940816111ee565b336001600160a01b03167f53118bff2fb56701752f5bf54053d24fb83cec92f9f6ce664b90c38a2991caa4600760009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156109b957600080fd5b505afa1580156109cd573d6000803e3d6000fd5b505050506040513d60208110156109e357600080fd5b505160408051918252602082018590528051918290030190a250565b600061056e610a0d83611352565b6001600160a01b0384166000908152600a6020526040902054600954610aca91670de0b6b3a764000091610ac491610a459190611191565b600754604080516370a0823160e01b81526001600160a01b038b81166004830152915191909216916370a08231916024808301926020929190829003018186803b158015610a9257600080fd5b505afa158015610aa6573d6000803e3d6000fd5b505050506040513d6020811015610abc57600080fd5b50519061136d565b906113c6565b9061142d565b600a6020526000908152604090205481565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561054c5780601f106105215761010080835404028352916020019161054c565b60026006541415610b89576040805162461bcd60e51b815260206004820152601f6024820152600080516020611969833981519152604482015290519081900360640190fd5b60026006556008546001600160a01b03163314610bed576040805162461bcd60e51b815260206004820152601c60248201527f53656e646572206d757374206265207265776172647320746f6b656e00000000604482015290519081900360640190fd5b60008311610c35576040805162461bcd60e51b815260206004820152601060248201526f043616e6e6f74206465706f73697420360841b604482015290519081900360640190fd5b610c3d6107f7565b505060016006555050565b600061056a610c55610cb7565b8484610da7565b600b546001600160a01b031681565b60095481565b60001981565b6008546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600c5481565b3390565b6001600160a01b038316610d005760405162461bcd60e51b8152600401808060200182810382526024815260200180611ad06024913960400191505060405180910390fd5b6001600160a01b038216610d455760405162461bcd60e51b81526004018080602001828103825260228152602001806119ab6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b610db083611000565b610dbb838383611487565b505050565b60008184841115610e4f5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610e14578181015183820152602001610dfc565b50505050905090810190601f168015610e415780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60026006541415610e9d576040805162461bcd60e51b815260206004820152601f6024820152600080516020611969833981519152604482015290519081900360640190fd5b600260065580610ee9576040805162461bcd60e51b81526020600482015260126024820152710416d6f756e74206d757374206265203e20360741b604482015290519081900360640190fd5b610ef233611000565b610efc338261104f565b600854610f13906001600160a01b0316338361113f565b60408051828152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a2506001600655565b3b151590565b604051635260769b60e11b81523360048201818152602483018690526060604484019081526064840185905287936001600160a01b0385169363a4c0ed369390928992899289929091608401848480828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b158015610fe157600080fd5b505af1158015610ff5573d6000803e3d6000fd5b505050505050505050565b600061101d61100e83611352565b611017846109ff565b90611191565b9050801561102f5761102f82826115d7565b506009546001600160a01b039091166000908152600a6020526040902055565b6001600160a01b0382166110945760405162461bcd60e51b8152600401808060200182810382526021815260200180611a8a6021913960400191505060405180910390fd5b6110d181604051806060016040528060228152602001611989602291396001600160a01b0385166000908152602081905260409020549190610dc0565b6001600160a01b0383166000908152602081905260409020556002546110f79082611191565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610dbb9084906116bb565b6000828211156111e8576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600754604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561123357600080fd5b505afa158015611247573d6000803e3d6000fd5b505050506040513d602081101561125d57600080fd5b5051116112b1576040805162461bcd60e51b815260206004820152601960248201527f5374616b656420616d6f756e74206d757374206265203e203000000000000000604482015290519081900360640190fd5b61134c611343600760009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561130557600080fd5b505afa158015611319573d6000803e3d6000fd5b505050506040513d602081101561132f57600080fd5b5051610ac484670de0b6b3a764000061136d565b6009549061142d565b60095550565b6001600160a01b031660009081526020819052604090205490565b60008261137c5750600061056e565b8282028284828161138957fe5b04146105fb5760405162461bcd60e51b8152600401808060200182810382526021815260200180611a416021913960400191505060405180910390fd5b600080821161141c576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161142557fe5b049392505050565b6000828201838110156105fb576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0383166114cc5760405162461bcd60e51b8152600401808060200182810382526025815260200180611aab6025913960400191505060405180910390fd5b6001600160a01b0382166115115760405162461bcd60e51b81526004018080602001828103825260238152602001806119466023913960400191505060405180910390fd5b61154e816040518060600160405280602681526020016119cd602691396001600160a01b0386166000908152602081905260409020549190610dc0565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461157d908261142d565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6001600160a01b038216611632576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b60025461163f908261142d565b6002556001600160a01b038216600090815260208190526040902054611665908261142d565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6060611710826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661176c9092919063ffffffff16565b805190915015610dbb5780806020019051602081101561172f57600080fd5b5051610dbb5760405162461bcd60e51b815260040180806020018281038252602a815260200180611af4602a913960400191505060405180910390fd5b606061177b8484600085611783565b949350505050565b6060824710156117c45760405162461bcd60e51b81526004018080602001828103825260268152602001806119f36026913960400191505060405180910390fd5b6117cd85610f51565b61181e576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061185d5780518252601f19909201916020918201910161183e565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146118bf576040519150601f19603f3d011682016040523d82523d6000602084013e6118c4565b606091505b50915091506118d48282866118df565b979650505050505050565b606083156118ee5750816105fb565b8251156118fe5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315610e14578181015183820152602001610dfc56fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735265656e7472616e637947756172643a207265656e7472616e742063616c6c0045524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c43616e6e6f742064697374726962757465207768656e206e6f7468696e67206973207374616b6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220d09a0434eae6659e91b42fc10215f446ea985d07f5eb909accf0a7f0193ffea664736f6c634300070400330000000000000000000000000aa3d1c7838e20790a196d56899fe0bc8b23700f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000144c696e6b506f6f6c204f776e657273204c494e4b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000076c706f4c494e4b00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063c375fcfa1161007c578063c375fcfa1461046a578063cd3daf9d14610472578063d0fc81d21461047a578063d1af0c7d14610482578063dd62ed3e1461048a578063f3e14f1e146104b857610137565b806370a08231146103655780638b8763471461038b57806395d89b41146103b1578063a4c0ed36146103b9578063a9059cbb1461043e57610137565b80634000aea0116100ff5780634000aea01461026857806351cff8d9146102ed578063632447c91461031357806369b78772146103395780636f4a2cd01461035d57610137565b806306fdde031461013c578063095ea7b3146101b957806318160ddd146101f957806323b872dd146102135780632e1a7d4d14610249575b600080fd5b6101446104c0565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e5600480360360408110156101cf57600080fd5b506001600160a01b038135169060200135610556565b604080519115158252519081900360200190f35b610201610574565b60408051918252519081900360200190f35b6101e56004803603606081101561022957600080fd5b506001600160a01b0381358116916020810135909116906040013561057a565b6102666004803603602081101561025f57600080fd5b5035610602565b005b6101e56004803603606081101561027e57600080fd5b6001600160a01b03823516916020810135918101906060810160408201356401000000008111156102ae57600080fd5b8201836020820111156102c057600080fd5b803590602001918460018302840111640100000000831117156102e257600080fd5b50909250905061062f565b6102666004803603602081101561030357600080fd5b50356001600160a01b0316610661565b6102666004803603602081101561032957600080fd5b50356001600160a01b031661078c565b6103416107e8565b604080516001600160a01b039092168252519081900360200190f35b6102666107f7565b6102016004803603602081101561037b57600080fd5b50356001600160a01b03166109ff565b610201600480360360208110156103a157600080fd5b50356001600160a01b0316610ad0565b610144610ae2565b610266600480360360608110156103cf57600080fd5b6001600160a01b03823516916020810135918101906060810160408201356401000000008111156103ff57600080fd5b82018360208201111561041157600080fd5b8035906020019184600183028401116401000000008311171561043357600080fd5b509092509050610b43565b6101e56004803603604081101561045457600080fd5b506001600160a01b038135169060200135610c48565b610341610c5c565b610201610c6b565b610201610c71565b610341610c77565b610201600480360360408110156104a057600080fd5b506001600160a01b0381358116916020013516610c86565b610201610cb1565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561054c5780601f106105215761010080835404028352916020019161054c565b820191906000526020600020905b81548152906001019060200180831161052f57829003601f168201915b5050505050905090565b600061056a610563610cb7565b8484610cbb565b5060015b92915050565b60025490565b6000610587848484610da7565b6105f784610593610cb7565b6105f285604051806060016040528060288152602001611a62602891396001600160a01b038a166000908152600160205260408120906105d1610cb7565b6001600160a01b031681526020810191909152604001600020549190610dc0565b610cbb565b5060015b9392505050565b8060001981141561061957610616336109ff565b90505b600c8054829003905561062b81610e57565b5050565b600061063b8585610c48565b5061064585610f51565b156106565761065685858585610f57565b506001949350505050565b600260065414156106a7576040805162461bcd60e51b815260206004820152601f6024820152600080516020611969833981519152604482015290519081900360640190fd5b6002600655600b546001600160a01b031633146106fd576040805162461bcd60e51b815260206004820152600f60248201526e506f6f6c4f776e657273206f6e6c7960881b604482015290519081900360640190fd5b6000610708826109ff565b905080156107835761071982611000565b610723828261104f565b600c80548290039055600854610743906001600160a01b0316838361113f565b6040805182815290516001600160a01b038416917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a25b50506001600655565b600260065414156107d2576040805162461bcd60e51b815260206004820152601f6024820152600080516020611969833981519152604482015290519081900360640190fd5b60026006556107e081611000565b506001600655565b6007546001600160a01b031681565b600754604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561083c57600080fd5b505afa158015610850573d6000803e3d6000fd5b505050506040513d602081101561086657600080fd5b5051116108a45760405162461bcd60e51b8152600401808060200182810382526028815260200180611a196028913960400191505060405180910390fd5b600c54600854604080516370a0823160e01b8152306004820152905160009361092d9390926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b1580156108fb57600080fd5b505afa15801561090f573d6000803e3d6000fd5b505050506040513d602081101561092557600080fd5b505190611191565b600c8054820190559050610940816111ee565b336001600160a01b03167f53118bff2fb56701752f5bf54053d24fb83cec92f9f6ce664b90c38a2991caa4600760009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156109b957600080fd5b505afa1580156109cd573d6000803e3d6000fd5b505050506040513d60208110156109e357600080fd5b505160408051918252602082018590528051918290030190a250565b600061056e610a0d83611352565b6001600160a01b0384166000908152600a6020526040902054600954610aca91670de0b6b3a764000091610ac491610a459190611191565b600754604080516370a0823160e01b81526001600160a01b038b81166004830152915191909216916370a08231916024808301926020929190829003018186803b158015610a9257600080fd5b505afa158015610aa6573d6000803e3d6000fd5b505050506040513d6020811015610abc57600080fd5b50519061136d565b906113c6565b9061142d565b600a6020526000908152604090205481565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561054c5780601f106105215761010080835404028352916020019161054c565b60026006541415610b89576040805162461bcd60e51b815260206004820152601f6024820152600080516020611969833981519152604482015290519081900360640190fd5b60026006556008546001600160a01b03163314610bed576040805162461bcd60e51b815260206004820152601c60248201527f53656e646572206d757374206265207265776172647320746f6b656e00000000604482015290519081900360640190fd5b60008311610c35576040805162461bcd60e51b815260206004820152601060248201526f043616e6e6f74206465706f73697420360841b604482015290519081900360640190fd5b610c3d6107f7565b505060016006555050565b600061056a610c55610cb7565b8484610da7565b600b546001600160a01b031681565b60095481565b60001981565b6008546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600c5481565b3390565b6001600160a01b038316610d005760405162461bcd60e51b8152600401808060200182810382526024815260200180611ad06024913960400191505060405180910390fd5b6001600160a01b038216610d455760405162461bcd60e51b81526004018080602001828103825260228152602001806119ab6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b610db083611000565b610dbb838383611487565b505050565b60008184841115610e4f5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610e14578181015183820152602001610dfc565b50505050905090810190601f168015610e415780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60026006541415610e9d576040805162461bcd60e51b815260206004820152601f6024820152600080516020611969833981519152604482015290519081900360640190fd5b600260065580610ee9576040805162461bcd60e51b81526020600482015260126024820152710416d6f756e74206d757374206265203e20360741b604482015290519081900360640190fd5b610ef233611000565b610efc338261104f565b600854610f13906001600160a01b0316338361113f565b60408051828152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a2506001600655565b3b151590565b604051635260769b60e11b81523360048201818152602483018690526060604484019081526064840185905287936001600160a01b0385169363a4c0ed369390928992899289929091608401848480828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b158015610fe157600080fd5b505af1158015610ff5573d6000803e3d6000fd5b505050505050505050565b600061101d61100e83611352565b611017846109ff565b90611191565b9050801561102f5761102f82826115d7565b506009546001600160a01b039091166000908152600a6020526040902055565b6001600160a01b0382166110945760405162461bcd60e51b8152600401808060200182810382526021815260200180611a8a6021913960400191505060405180910390fd5b6110d181604051806060016040528060228152602001611989602291396001600160a01b0385166000908152602081905260409020549190610dc0565b6001600160a01b0383166000908152602081905260409020556002546110f79082611191565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610dbb9084906116bb565b6000828211156111e8576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600754604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561123357600080fd5b505afa158015611247573d6000803e3d6000fd5b505050506040513d602081101561125d57600080fd5b5051116112b1576040805162461bcd60e51b815260206004820152601960248201527f5374616b656420616d6f756e74206d757374206265203e203000000000000000604482015290519081900360640190fd5b61134c611343600760009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561130557600080fd5b505afa158015611319573d6000803e3d6000fd5b505050506040513d602081101561132f57600080fd5b5051610ac484670de0b6b3a764000061136d565b6009549061142d565b60095550565b6001600160a01b031660009081526020819052604090205490565b60008261137c5750600061056e565b8282028284828161138957fe5b04146105fb5760405162461bcd60e51b8152600401808060200182810382526021815260200180611a416021913960400191505060405180910390fd5b600080821161141c576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161142557fe5b049392505050565b6000828201838110156105fb576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0383166114cc5760405162461bcd60e51b8152600401808060200182810382526025815260200180611aab6025913960400191505060405180910390fd5b6001600160a01b0382166115115760405162461bcd60e51b81526004018080602001828103825260238152602001806119466023913960400191505060405180910390fd5b61154e816040518060600160405280602681526020016119cd602691396001600160a01b0386166000908152602081905260409020549190610dc0565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461157d908261142d565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6001600160a01b038216611632576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b60025461163f908261142d565b6002556001600160a01b038216600090815260208190526040902054611665908261142d565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6060611710826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661176c9092919063ffffffff16565b805190915015610dbb5780806020019051602081101561172f57600080fd5b5051610dbb5760405162461bcd60e51b815260040180806020018281038252602a815260200180611af4602a913960400191505060405180910390fd5b606061177b8484600085611783565b949350505050565b6060824710156117c45760405162461bcd60e51b81526004018080602001828103825260268152602001806119f36026913960400191505060405180910390fd5b6117cd85610f51565b61181e576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061185d5780518252601f19909201916020918201910161183e565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146118bf576040519150601f19603f3d011682016040523d82523d6000602084013e6118c4565b606091505b50915091506118d48282866118df565b979650505050505050565b606083156118ee5750816105fb565b8251156118fe5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315610e14578181015183820152602001610dfc56fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735265656e7472616e637947756172643a207265656e7472616e742063616c6c0045524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c43616e6e6f742064697374726962757465207768656e206e6f7468696e67206973207374616b6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220d09a0434eae6659e91b42fc10215f446ea985d07f5eb909accf0a7f0193ffea664736f6c63430007040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000aa3d1c7838e20790a196d56899fe0bc8b23700f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000144c696e6b506f6f6c204f776e657273204c494e4b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000076c706f4c494e4b00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _poolOwners (address): 0x0aA3d1c7838e20790A196d56899fE0Bc8B23700F
Arg [1] : _rewardsToken (address): 0x514910771AF9Ca656af840dff83E8264EcF986CA
Arg [2] : _dTokenName (string): LinkPool Owners LINK
Arg [3] : _dTokenSymbol (string): lpoLINK

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000aa3d1c7838e20790a196d56899fe0bc8b23700f
Arg [1] : 000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [5] : 4c696e6b506f6f6c204f776e657273204c494e4b000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 6c706f4c494e4b00000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46534:2572:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26544:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27315:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27315:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;26730:100;;;:::i;:::-;;;;;;;;;;;;;;;;27492:405;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27492:405:0;;;;;;;;;;;;;;;;;:::i;47202:292::-;;;;;;;;;;;;;;;;-1:-1:-1;47202:292:0;;:::i;:::-;;42232:311;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42232:311:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42232:311:0;;-1:-1:-1;42232:311:0;-1:-1:-1;42232:311:0;:::i;47620:474::-;;;;;;;;;;;;;;;;-1:-1:-1;47620:474:0;-1:-1:-1;;;;;47620:474:0;;:::i;44642:104::-;;;;;;;;;;;;;;;;-1:-1:-1;44642:104:0;-1:-1:-1;;;;;44642:104:0;;:::i;43445:32::-;;;:::i;:::-;;;;-1:-1:-1;;;;;43445:32:0;;;;;;;;;;;;;;48682:421;;;:::i;44226:291::-;;;;;;;;;;;;;;;;-1:-1:-1;44226:291:0;-1:-1:-1;;;;;44226:291:0;;:::i;43556:57::-;;;;;;;;;;;;;;;;-1:-1:-1;43556:57:0;-1:-1:-1;;;;;43556:57:0;;:::i;26635:87::-;;;:::i;48288:305::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48288:305:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48288:305:0;;-1:-1:-1;48288:305:0;-1:-1:-1;48288:305:0;:::i;26973:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26973:175:0;;;;;;;;:::i;46652:25::-;;;:::i;43518:29::-;;;:::i;43384:52::-;;;:::i;43484:27::-;;;:::i;27156:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27156:151:0;;;;;;;;;;:::i;46684:33::-;;;:::i;26544:83::-;26614:5;26607:12;;;;;;;;-1:-1:-1;;26607:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26581:13;;26607:12;;26614:5;;26607:12;;26614:5;26607:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26544:83;:::o;27315:169::-;27398:4;27415:39;27424:12;:10;:12::i;:::-;27438:7;27447:6;27415:8;:39::i;:::-;-1:-1:-1;27472:4:0;27315:169;;;;;:::o;26730:100::-;26810:12;;26730:100;:::o;27492:405::-;27632:4;27649:36;27659:6;27667:9;27678:6;27649:9;:36::i;:::-;27696:171;27719:6;27740:12;:10;:12::i;:::-;27767:89;27805:6;27767:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27767:19:0;;;;;;:11;:19;;;;;;27787:12;:10;:12::i;:::-;-1:-1:-1;;;;;27767:33:0;;;;;;;;;;;;-1:-1:-1;27767:33:0;;;:89;:37;:89::i;:::-;27696:8;:171::i;:::-;-1:-1:-1;27885:4:0;27492:405;;;;;;:::o;47202:292::-;47293:7;-1:-1:-1;;47317:25:0;;47313:92;;;47372:21;47382:10;47372:9;:21::i;:::-;47359:34;;47313:92;47417:18;:32;;;;;;;47460:26;47439:10;47460:14;:26::i;:::-;47202:292;;:::o;42232:311::-;42367:12;42392:27;42407:3;42412:6;42392:14;:27::i;:::-;;42434:15;42445:3;42434:10;:15::i;:::-;42430:84;;;42466:36;42483:3;42488:6;42496:5;;42466:16;:36::i;:::-;-1:-1:-1;42531:4:0;42232:311;;;;;;:::o;47620:474::-;23883:1;24489:7;;:19;;24481:63;;;;;-1:-1:-1;;;24481:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24481:63:0;;;;;;;;;;;;;;;23883:1;24622:7;:18;47719:10:::1;::::0;-1:-1:-1;;;;;47719:10:0::1;47705;:24;47697:52;;;::::0;;-1:-1:-1;;;47697:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;47697:52:0;;;;;;;;;;;;;::::1;;47762:18;47783:19;47793:8;47783:9;:19::i;:::-;47762:40:::0;-1:-1:-1;47819:14:0;;47815:272:::1;;47850:23;47864:8;47850:13;:23::i;:::-;47888:27;47894:8;47904:10;47888:5;:27::i;:::-;47930:18;:32:::0;;;;::::1;::::0;;47977:12:::1;::::0;:47:::1;::::0;-1:-1:-1;;;;;47977:12:0::1;48003:8:::0;47952:10;47977:25:::1;:47::i;:::-;48044:31;::::0;;;;;;;-1:-1:-1;;;;;48044:31:0;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;47815:272;-1:-1:-1::0;;23839:1:0;24801:7;:22;47620:474::o;44642:104::-;23883:1;24489:7;;:19;;24481:63;;;;;-1:-1:-1;;;24481:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24481:63:0;;;;;;;;;;;;;;;23883:1;24622:7;:18;44715:23:::1;44729:8:::0;44715:13:::1;:23::i;:::-;-1:-1:-1::0;23839:1:0;24801:7;:22;44642:104::o;43445:32::-;;;-1:-1:-1;;;;;43445:32:0;;:::o;48682:421::-;48737:17;;:31;;;-1:-1:-1;;;48737:31:0;;;;48771:1;;-1:-1:-1;;;;;48737:17:0;;:29;;:31;;;;;;;;;;;;;;:17;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48737:31:0;:35;48729:88;;;;-1:-1:-1;;;48729:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48893:18;;48851:12;;:37;;;-1:-1:-1;;;48851:37:0;;48882:4;48851:37;;;;;;48828:20;;48851:61;;48893:18;;-1:-1:-1;;;;;48851:12:0;;;;:22;;:37;;;;;;;;;;;;;;;:12;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48851:37:0;;:41;:61::i;:::-;48923:18;:34;;;;;;48828:84;-1:-1:-1;48968:35:0;48828:84;48968:21;:35::i;:::-;49037:10;-1:-1:-1;;;;;49019:76:0;;49049:17;;;;;;;;;-1:-1:-1;;;;;49049:17:0;-1:-1:-1;;;;;49049:29:0;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49049:31:0;49019:76;;;;;;49049:31;49019:76;;;;;;;;;;;;;;48682:421;:::o;44226:291::-;44301:7;44341:168;44469:25;44485:8;44469:15;:25::i;:::-;-1:-1:-1;;;;;44402:32:0;;;;;;:22;:32;;;;;;44383:14;;44341:105;;44441:4;;44341:95;;44383:52;;:14;:18;:52::i;:::-;44341:17;;:37;;;-1:-1:-1;;;44341:37:0;;-1:-1:-1;;;;;44341:37:0;;;;;;;;;:17;;;;;:27;;:37;;;;;;;;;;;;;;:17;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44341:37:0;;:41;:95::i;:::-;:99;;:105::i;:::-;:109;;:168::i;43556:57::-;;;;;;;;;;;;;:::o;26635:87::-;26707:7;26700:14;;;;;;;;-1:-1:-1;;26700:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26674:13;;26700:14;;26707:7;;26700:14;;26707:7;26700:14;;;;;;;;;;;;;;;;;;;;;;;;48288:305;23883:1;24489:7;;:19;;24481:63;;;;;-1:-1:-1;;;24481:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24481:63:0;;;;;;;;;;;;;;;23883:1;24622:7;:18;48459:12:::1;::::0;-1:-1:-1;;;;;48459:12:0::1;48437:10;:35;48429:76;;;::::0;;-1:-1:-1;;;48429:76:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;48533:1;48524:6;:10;48516:39;;;::::0;;-1:-1:-1;;;48516:39:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;48516:39:0;;;;;;;;;;;;;::::1;;48566:19;:17;:19::i;:::-;-1:-1:-1::0;;23839:1:0;24801:7;:22;-1:-1:-1;;48288:305:0:o;26973:175::-;27059:4;27076:42;27086:12;:10;:12::i;:::-;27100:9;27111:6;27076:9;:42::i;46652:25::-;;;-1:-1:-1;;;;;46652:25:0;;:::o;43518:29::-;;;;:::o;43384:52::-;-1:-1:-1;;43384:52:0;:::o;43484:27::-;;;-1:-1:-1;;;;;43484:27:0;;:::o;27156:151::-;-1:-1:-1;;;;;27272:18:0;;;27245:7;27272:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;27156:151::o;46684:33::-;;;;:::o;25478:106::-;25566:10;25478:106;:::o;29114:380::-;-1:-1:-1;;;;;29250:19:0;;29242:68;;;;-1:-1:-1;;;29242:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29329:21:0;;29321:68;;;;-1:-1:-1;;;29321:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29402:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;29454:32;;;;;;;;;;;;;;;;;29114:380;;;:::o;46147:210::-;46282:20;46296:5;46282:13;:20::i;:::-;46313:36;46329:5;46336:3;46341:7;46313:15;:36::i;:::-;46147:210;;;:::o;5694:166::-;5780:7;5816:12;5808:6;;;;5800:29;;;;-1:-1:-1;;;5800:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5847:5:0;;;5694:166::o;44862:302::-;23883:1;24489:7;;:19;;24481:63;;;;;-1:-1:-1;;;24481:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24481:63:0;;;;;;;;;;;;;;;23883:1;24622:7;:18;44944:11;44936:42:::1;;;::::0;;-1:-1:-1;;;44936:42:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;44936:42:0;;;;;;;;;;;;;::::1;;44991:25;45005:10;44991:13;:25::i;:::-;45027:26;45033:10;45045:7;45027:5;:26::i;:::-;45064:12;::::0;:46:::1;::::0;-1:-1:-1;;;;;45064:12:0::1;45090:10;45102:7:::0;45064:25:::1;:46::i;:::-;45126:30;::::0;;;;;;;45136:10:::1;::::0;45126:30:::1;::::0;;;;;::::1;::::0;;::::1;-1:-1:-1::0;23839:1:0;24801:7;:22;44862:302::o;42804:205::-;42945:18;42991:10;;;42804:205::o;42551:245::-;42737:51;;-1:-1:-1;;;42737:51:0;;42762:10;42737:51;;;;;;;;;;;;;;;;;;;;;;;;;42722:3;;-1:-1:-1;;;;;42737:24:0;;;;;42762:10;;42774:6;;42782:5;;;;42737:51;;;;42782:5;;;;42737:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42551:245;;;;;:::o;45650:280::-;45719:14;45736:50;45760:25;45776:8;45760:15;:25::i;:::-;45736:19;45746:8;45736:9;:19::i;:::-;:23;;:50::i;:::-;45719:67;-1:-1:-1;45801:10:0;;45797:66;;45828:23;45834:8;45844:6;45828:5;:23::i;:::-;-1:-1:-1;45908:14:0;;-1:-1:-1;;;;;45873:32:0;;;;;;;:22;:32;;;;;:49;45650:280::o;28229:356::-;-1:-1:-1;;;;;28313:21:0;;28305:67;;;;-1:-1:-1;;;28305:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28406:68;28429:6;28406:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28406:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;28385:18:0;;:9;:18;;;;;;;;;;:89;28500:12;;:24;;28517:6;28500:16;:24::i;:::-;28485:12;:39;28540:37;;;;;;;;28566:1;;-1:-1:-1;;;;;28540:37:0;;;;;;;;;;;;28229:356;;:::o;19054:177::-;19164:58;;;-1:-1:-1;;;;;19164:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19164:58:0;-1:-1:-1;;;19164:58:0;;;19137:86;;19157:5;;19137:19;:86::i;3329:158::-;3387:7;3420:1;3415;:6;;3407:49;;;;;-1:-1:-1;;;3407:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3474:5:0;;;3329:158::o;45274:251::-;45350:17;;:31;;;-1:-1:-1;;;45350:31:0;;;;45384:1;;-1:-1:-1;;;;;45350:17:0;;:29;;:31;;;;;;;;;;;;;;:17;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45350:31:0;:35;45342:73;;;;;-1:-1:-1;;;45342:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;45443:74;45462:54;45484:17;;;;;;;;;-1:-1:-1;;;;;45484:17:0;-1:-1:-1;;;;;45484:29:0;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45484:31:0;45462:17;:7;45474:4;45462:11;:17::i;:54::-;45443:14;;;:18;:74::i;:::-;45426:14;:91;-1:-1:-1;45274:251:0:o;26838:127::-;-1:-1:-1;;;;;26939:18:0;26912:7;26939:18;;;;;;;;;;;;26838:127::o;3746:220::-;3804:7;3828:6;3824:20;;-1:-1:-1;3843:1:0;3836:8;;3824:20;3867:5;;;3871:1;3867;:5;:1;3891:5;;;;;:10;3883:56;;;;-1:-1:-1;;;3883:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4444:153;4502:7;4534:1;4530;:5;4522:44;;;;;-1:-1:-1;;;4522:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4588:1;4584;:5;;;;;;;4444:153;-1:-1:-1;;;4444:153:0:o;2867:179::-;2925:7;2957:5;;;2981:6;;;;2973:46;;;;;-1:-1:-1;;;2973:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;28593:513;-1:-1:-1;;;;;28733:20:0;;28725:70;;;;-1:-1:-1;;;28725:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28814:23:0;;28806:71;;;;-1:-1:-1;;;28806:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28910;28932:6;28910:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28910:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;28890:17:0;;;:9;:17;;;;;;;;;;;:91;;;;29015:20;;;;;;;:32;;29040:6;29015:24;:32::i;:::-;-1:-1:-1;;;;;28992:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;29063:35;;;;;;;28992:20;;29063:35;;;;;;;;;;;;;28593:513;;;:::o;27905:316::-;-1:-1:-1;;;;;27989:21:0;;27981:65;;;;;-1:-1:-1;;;27981:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;28074:12;;:24;;28091:6;28074:16;:24::i;:::-;28059:12;:39;-1:-1:-1;;;;;28130:18:0;;:9;:18;;;;;;;;;;;:30;;28153:6;28130:22;:30::i;:::-;-1:-1:-1;;;;;28109:18:0;;:9;:18;;;;;;;;;;;:51;;;;28176:37;;;;;;;28109:18;;:9;;28176:37;;;;;;;;;;27905:316;;:::o;21359:761::-;21783:23;21809:69;21837:4;21809:69;;;;;;;;;;;;;;;;;21817:5;-1:-1:-1;;;;;21809:27:0;;;:69;;;;;:::i;:::-;21893:17;;21783:95;;-1:-1:-1;21893:21:0;21889:224;;22035:10;22024:30;;;;;;;;;;;;;;;-1:-1:-1;22024:30:0;22016:85;;;;-1:-1:-1;;;22016:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14045:195;14148:12;14180:52;14202:6;14210:4;14216:1;14219:12;14180:21;:52::i;:::-;14173:59;14045:195;-1:-1:-1;;;;14045:195:0:o;15097:530::-;15224:12;15282:5;15257:21;:30;;15249:81;;;;-1:-1:-1;;;15249:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15349:18;15360:6;15349:10;:18::i;:::-;15341:60;;;;;-1:-1:-1;;;15341:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15475:12;15489:23;15516:6;-1:-1:-1;;;;;15516:11:0;15536:5;15544:4;15516:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;15516:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15474:75;;;;15567:52;15585:7;15594:10;15606:12;15567:17;:52::i;:::-;15560:59;15097:530;-1:-1:-1;;;;;;;15097:530:0:o;17637:742::-;17752:12;17781:7;17777:595;;;-1:-1:-1;17812:10:0;17805:17;;17777:595;17926:17;;:21;17922:439;;18189:10;18183:17;18250:15;18237:10;18233:2;18229:19;18222:44;18137:148;18325:20;;-1:-1:-1;;;18325:20:0;;;;;;;;;;;;;;;;;18332:12;;18325:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

ipfs://d09a0434eae6659e91b42fc10215f446ea985d07f5eb909accf0a7f0193ffea6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.