ETH Price: $2,603.29 (+1.08%)

Token

Sweets (SWEETS)
 

Overview

Max Total Supply

712,110 SWEETS

Holders

193

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
SushiSwap: SWEETS
Balance
386,124.093952435263722343 SWEETS

Value
$0.00
0x642cb5f3f1bd91c4e0b4bffc9f65e1d0878bd3eb
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:
YieldToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-06
*/

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

// SPDX-License-Identifier: NONE

pragma solidity 0.6.12;



// Part: INFTs

interface INFTs {
	function ownerOf(uint256 _user) external view returns(address);
    function balanceOf(address _address) external view returns(uint256);
    function tokenOfOwnerByIndex(address _address,uint256 _index) external view returns(uint256);
}

// Part: OpenZeppelin/[email protected]/Address

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// Part: OpenZeppelin/[email protected]/Context

/*
 * @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;
    }
}

// Part: OpenZeppelin/[email protected]/IERC20

/**
 * @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);
}

// Part: OpenZeppelin/[email protected]/SafeMath

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// Part: OpenZeppelin/[email protected]/ERC20

/**
 * @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;
    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;

    /**
     * @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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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 {
        _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: YieldToken.sol

contract YieldToken is ERC20("Sweets", "SWEETS") {
	using SafeMath for uint256;

uint256 constant public rewardtimeframe = 86400; //86400
	uint256 constant public BASE_RATE = 10 ether; 
	uint256 constant public BASE_RATEresult = 10; 
	uint256 constant public INITIAL_ISSUANCE = 300 ether;

	    bool public isPauseEnabled;
        uint256 public specialmultiplayer = 5; 

	uint256 constant public END = 4110215600;

	mapping(uint256 => uint256) public rewards;
	mapping(uint256 => uint256) public lastUpdate;
    mapping(uint256 => address) public nftownercheck;
	mapping(address => bool) private _burnList;

    mapping(uint256 => bool) private _specialsnft;
	
	address private _owner;

	INFTs public  NFTsContract;

event Changespecialmultiplayer(uint256 _specialmultiplayer);
	event RewardPaid(address indexed user, uint256 reward);
	event ChangeIsPausedEnabled(bool _isPauseEnabled);

	constructor(address _nfts) public{
		NFTsContract = INFTs(_nfts);
		_owner = _msgSender();
	}


	function min(uint256 a, uint256 b) internal pure returns (uint256) {
		return a < b ? a : b;
	}

function startwork(uint256 _nft) external {
     require(msg.sender == address(NFTsContract.ownerOf(_nft)), "You are not the owner of this Baby");
     require(!isPauseEnabled, "Staking is on pause");
     require(lastUpdate[_nft] < 1 || nftownercheck[_nft] != msg.sender, "Baby is already playing");
		uint256 time = min(block.timestamp, END);
        nftownercheck[_nft] = msg.sender;
			lastUpdate[_nft] = time;
	}

    function AddrgetReward(address _address) external {
require(_address == msg.sender, "You can only claim your own tokens");
require(NFTsContract.balanceOf(_address) > 0, "Your baby isn't playing");
require(!isPauseEnabled, "Staking is on pause");

    uint256 nfts = NFTsContract.balanceOf(_address);
    uint256 ramount = 0;
uint256 time = min(block.timestamp, END);
 
for (uint256 ind = 0; ind < nfts; ind++) {
    uint256 _nft = NFTsContract.tokenOfOwnerByIndex(_address,ind);
if(nftownercheck[_nft] == msg.sender) {
    uint256 nftdate =lastUpdate[_nft];
    if(_specialsnft[_nft]) {
ramount = ramount + (uint(time - nftdate) / rewardtimeframe * (BASE_RATE * specialmultiplayer)); //daily 
    } else {
    ramount = ramount + (uint(time - nftdate) / rewardtimeframe * BASE_RATE); //daily 
    }
}

}
require(ramount > 9, "Your baby need to play more");
for (uint256 ind = 0; ind < nfts; ind++) {
    uint256 _nft = NFTsContract.tokenOfOwnerByIndex(_address,ind);
lastUpdate[_nft] = time;
}
_mint(msg.sender, ramount);
emit RewardPaid(msg.sender, ramount);			
	}


function addToBurnList(address[] calldata _addresses) external
    {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        for (uint256 ind = 0; ind < _addresses.length; ind++) {
            require(
                _addresses[ind] != address(0),
                "Message: Can't add a zero address"
            );
            if (_burnList[_addresses[ind]] == false) {
                _burnList[_addresses[ind]] = true;
            }
        }
    }
	
	function isOnBurnList(address _address) external view returns (bool) {
        return _burnList[_address];
    }

function removeFromBurnList(address[] calldata _addresses) external
    {
        	    require(_owner == _msgSender(), "Ownable: caller is not the owner");
        for (uint256 ind = 0; ind < _addresses.length; ind++) {
            require(
                _addresses[ind] != address(0),
                "Message: Can't remove a zero address"
            );
            if (_burnList[_addresses[ind]] == true) {
                _burnList[_addresses[ind]] = false;
            }
        }
    }

    function addTospecialsnft(uint256[] calldata _nfts) external
    {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        for (uint256 ind = 0; ind < _nfts.length; ind++) {
            require(
                _nfts[ind] != 0,
                "Message: Can't add a zero address"
            );
            if (_specialsnft[_nfts[ind]] == false) {
                _specialsnft[_nfts[ind]] = true;
            }
        }
    }
	
	function isOnspecialsnft(uint256 _nft) external view returns (bool) {
        return _specialsnft[_nft];
    }

function removeFromspecialsnft(uint256[] calldata _nfts) external
    {
        	    require(_owner == _msgSender(), "Ownable: caller is not the owner");
        for (uint256 ind = 0; ind < _nfts.length; ind++) {
            require(
                _nfts[ind] != 0,
                "Message: Can't remove a zero address"
            );
            if (_specialsnft[_nfts[ind]] == true) {
                _specialsnft[_nfts[ind]] = false;
            }
        }
    }

function AddrgetTotalClaimable(address _address) external view returns(uint256) {
    require(_address == msg.sender, "You can only claim your own tokens");
require(NFTsContract.balanceOf(_address) > 0, "Your baby isn't playing");

    uint256 nfts = NFTsContract.balanceOf(_address);
    uint256 ramount = 0;
uint256 time = min(block.timestamp, END);
 
for (uint256 ind = 0; ind < nfts; ind++) {
    uint256 _nft = NFTsContract.tokenOfOwnerByIndex(_address,ind);
if(nftownercheck[_nft] == msg.sender) {
    uint256 nftdate =lastUpdate[_nft];
    if(_specialsnft[_nft]) {
ramount = ramount + (uint(time - nftdate) / rewardtimeframe * (BASE_RATEresult * specialmultiplayer)); //daily 
 } else {
ramount = ramount + (uint(time - nftdate) / rewardtimeframe * BASE_RATEresult); //daily 
 }

}

}
return ramount;
	}


	function getTotalClaimable(uint256 _nft) external view returns(uint256) {
        require(nftownercheck[_nft] == msg.sender, "Your baby isn't playing");
        require(lastUpdate[_nft] > 0, "Your baby isn't playing");
		uint256 time = min(block.timestamp, END);
        
		uint256 nftdate =lastUpdate[_nft];
        uint256 ramount = 0;
if(_specialsnft[_nft]) {
		ramount = uint(time - nftdate) / rewardtimeframe * (BASE_RATEresult * specialmultiplayer); //daily 
        } else {
 ramount = uint(time - nftdate) / rewardtimeframe * BASE_RATEresult; //daily 
        }

		return ramount;
		
	}
	
	  function setisPauseEnabled(bool _isPauseEnabled) external {
          require(_owner == _msgSender(), "Ownable: caller is not the owner");
        isPauseEnabled = _isPauseEnabled;
        emit ChangeIsPausedEnabled(_isPauseEnabled);
    }

    function setnftpowerreward(uint256 _newreward) external {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        specialmultiplayer = _newreward;
        emit Changespecialmultiplayer(specialmultiplayer);
    }
    
    	function burn(address _from, uint256 _amount) external {
    	    require(_burnList[msg.sender] == true," Caller is not on the burn list");
    	    //require(_owner == _msgSender() || msg.sender == address(partner), "Ownable: caller is not the owner");
    	    _amount = _amount * 1 ether;
		_burn(_from, _amount);
	}
	
	
	function omint(address _to, uint256 coins) external {
	    require(_burnList[msg.sender] == true," Caller is not on the mint list");
	    coins = coins * 1 ether;
        			_mint(_to, coins);
			emit RewardPaid(_to, coins);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_nfts","type":"address"}],"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":false,"internalType":"bool","name":"_isPauseEnabled","type":"bool"}],"name":"ChangeIsPausedEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_specialmultiplayer","type":"uint256"}],"name":"Changespecialmultiplayer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"AddrgetReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"AddrgetTotalClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BASE_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BASE_RATEresult","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"END","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_ISSUANCE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFTsContract","outputs":[{"internalType":"contract INFTs","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addToBurnList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_nfts","type":"uint256[]"}],"name":"addTospecialsnft","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nft","type":"uint256"}],"name":"getTotalClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isOnBurnList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nft","type":"uint256"}],"name":"isOnspecialsnft","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPauseEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lastUpdate","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":"uint256","name":"","type":"uint256"}],"name":"nftownercheck","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"coins","type":"uint256"}],"name":"omint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeFromBurnList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_nfts","type":"uint256[]"}],"name":"removeFromspecialsnft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardtimeframe","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPauseEnabled","type":"bool"}],"name":"setisPauseEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newreward","type":"uint256"}],"name":"setnftpowerreward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"specialmultiplayer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nft","type":"uint256"}],"name":"startwork","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

608060405260056006553480156200001657600080fd5b506040516200267538038062002675833981810160405260208110156200003c57600080fd5b505160408051808201825260068082526553776565747360d01b602083810191825284518086019095529184526553574545545360d01b9184019190915281519192916200008d9160039162000105565b508051620000a390600490602084019062000105565b50506005805460ff1916601217905550600d80546001600160a01b0383166001600160a01b0319909116179055620000da62000101565b600c80546001600160a01b0319166001600160a01b039290921691909117905550620001a1565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200014857805160ff191683800117855562000178565b8280016001018555821562000178579182015b82811115620001785782518255916020019190600101906200015b565b50620001869291506200018a565b5090565b5b808211156200018657600081556001016200018b565b6124c480620001b16000396000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c80637f87d06011610125578063ac026d8f116100ad578063e3a84eb71161007c578063e3a84eb7146106ed578063efe7a504146106f5578063f120280f146106fd578063f2e47f751461076b578063f301af42146107d95761021c565b8063ac026d8f14610650578063ac3451d41461067c578063ade5e0d5146106a2578063dd62ed3e146106bf5761021c565b806395d89b41116100f457806395d89b411461055657806399763d1b1461055e5780639dc29fac146105cc578063a457c2d7146105f8578063a9059cbb146106245761021c565b80637f87d0601461050a57806380bc242f146105295780638a495107146105315780639083ee48146105395761021c565b806331518778116101a857806344a6b86c1161017757806344a6b86c1461047c5780636fe28e951461048457806370a08231146104a1578063796ac34a146104c75780637be2dc7c146104e45761021c565b806331518778146103bb57806337764c871461042b578063395093511461044857806341910f90146104745761021c565b806318160ddd116101ef57806318160ddd1461033157806323b872dd146103395780632a91090d1461036f5780632c7c985014610377578063313ce5671461039d5761021c565b806306fdde0314610221578063095ea7b31461029e5780630bc5dec4146102de5780630c974fe21461030d575b600080fd5b6102296107f6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026357818101518382015260200161024b565b50505050905090810190601f1680156102905780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102ca600480360360408110156102b457600080fd5b506001600160a01b03813516906020013561088c565b604080519115158252519081900360200190f35b6102fb600480360360208110156102f457600080fd5b50356108a9565b60408051918252519081900360200190f35b6103156108bb565b604080516001600160a01b039092168252519081900360200190f35b6102fb6108ca565b6102ca6004803603606081101561034f57600080fd5b506001600160a01b038135811691602081013590911690604001356108d0565b6102ca610957565b6102ca6004803603602081101561038d57600080fd5b50356001600160a01b0316610965565b6103a5610983565b6040805160ff9092168252519081900360200190f35b610429600480360360208110156103d157600080fd5b810190602081018135600160201b8111156103eb57600080fd5b8201836020820111156103fd57600080fd5b803590602001918460208302840111600160201b8311171561041e57600080fd5b50909250905061098c565b005b6104296004803603602081101561044157600080fd5b5035610af4565b6102ca6004803603604081101561045e57600080fd5b506001600160a01b038135169060200135610b87565b6102fb610bd5565b6102fb610be1565b6102ca6004803603602081101561049a57600080fd5b5035610bee565b6102fb600480360360208110156104b757600080fd5b50356001600160a01b0316610c03565b6102fb600480360360208110156104dd57600080fd5b5035610c1e565b610429600480360360208110156104fa57600080fd5b50356001600160a01b0316610d3d565b6104296004803603602081101561052057600080fd5b5035151561118d565b6102fb611234565b6102fb61123b565b6103156004803603602081101561054f57600080fd5b5035611240565b61022961125b565b6104296004803603602081101561057457600080fd5b810190602081018135600160201b81111561058e57600080fd5b8201836020820111156105a057600080fd5b803590602001918460208302840111600160201b831117156105c157600080fd5b5090925090506112bc565b610429600480360360408110156105e257600080fd5b506001600160a01b0381351690602001356113e9565b6102ca6004803603604081101561060e57600080fd5b506001600160a01b03813516906020013561146a565b6102ca6004803603604081101561063a57600080fd5b506001600160a01b0381351690602001356114d2565b6104296004803603604081101561066657600080fd5b506001600160a01b0381351690602001356114e6565b6102fb6004803603602081101561069257600080fd5b50356001600160a01b03166115a6565b610429600480360360208110156106b857600080fd5b503561185b565b6102fb600480360360408110156106d557600080fd5b506001600160a01b0381358116916020013516611a31565b6102fb611a5c565b6102fb611a62565b6104296004803603602081101561071357600080fd5b810190602081018135600160201b81111561072d57600080fd5b82018360208201111561073f57600080fd5b803590602001918460208302840111600160201b8311171561076057600080fd5b509092509050611a6a565b6104296004803603602081101561078157600080fd5b810190602081018135600160201b81111561079b57600080fd5b8201836020820111156107ad57600080fd5b803590602001918460208302840111600160201b831117156107ce57600080fd5b509092509050611bd5565b6102fb600480360360208110156107ef57600080fd5b5035611d08565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108825780601f1061085757610100808354040283529160200191610882565b820191906000526020600020905b81548152906001019060200180831161086557829003601f168201915b5050505050905090565b60006108a0610899611d1a565b8484611d1e565b50600192915050565b60086020526000908152604090205481565b600d546001600160a01b031681565b60025490565b60006108dd848484611e0a565b61094d846108e9611d1a565b61094885604051806060016040528060288152602001612372602891396001600160a01b038a16600090815260016020526040812090610927611d1a565b6001600160a01b031681526020810191909152604001600020549190611f65565b611d1e565b5060019392505050565b600554610100900460ff1681565b6001600160a01b03166000908152600a602052604090205460ff1690565b60055460ff1690565b610994611d1a565b600c546001600160a01b039081169116146109e4576040805162461bcd60e51b8152602060048201819052602482015260008051602061239a833981519152604482015290519081900360640190fd5b60005b81811015610aef5760008383838181106109fd57fe5b905060200201356001600160a01b03166001600160a01b03161415610a535760405162461bcd60e51b815260040180806020018281038252602181526020018061232b6021913960400191505060405180910390fd5b600a6000848484818110610a6357fe5b602090810292909201356001600160a01b03168352508101919091526040016000205460ff16610ae7576001600a6000858585818110610a9f57fe5b905060200201356001600160a01b03166001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6001016109e7565b505050565b610afc611d1a565b600c546001600160a01b03908116911614610b4c576040805162461bcd60e51b8152602060048201819052602482015260008051602061239a833981519152604482015290519081900360640190fd5b60068190556040805182815290517fb2ca8106134bb9408379b7fae66f388876de85ee3a64e9cc2032356201a2790a9181900360200190a150565b60006108a0610b94611d1a565b846109488560016000610ba5611d1a565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611ffc565b678ac7230489e8000081565b681043561a882930000081565b6000908152600b602052604090205460ff1690565b6001600160a01b031660009081526020819052604090205490565b6000818152600960205260408120546001600160a01b03163314610c83576040805162461bcd60e51b8152602060048201526017602482015276596f757220626162792069736e277420706c6179696e6760481b604482015290519081900360640190fd5b600082815260086020526040902054610cdd576040805162461bcd60e51b8152602060048201526017602482015276596f757220626162792069736e277420706c6179696e6760481b604482015290519081900360640190fd5b6000610ced4263f4fce9b061205d565b600084815260086020908152604080832054600b9092528220549293509160ff1615610d285750600654620151808284030402600a02610d35565b506201518081830304600a025b949350505050565b6001600160a01b0381163314610d845760405162461bcd60e51b81526004018080602001828103825260228152602001806124486022913960400191505060405180910390fd5b600d54604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b158015610dd557600080fd5b505afa158015610de9573d6000803e3d6000fd5b505050506040513d6020811015610dff57600080fd5b505111610e4d576040805162461bcd60e51b8152602060048201526017602482015276596f757220626162792069736e277420706c6179696e6760481b604482015290519081900360640190fd5b600554610100900460ff1615610ea0576040805162461bcd60e51b81526020600482015260136024820152725374616b696e67206973206f6e20706175736560681b604482015290519081900360640190fd5b600d54604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b158015610ef157600080fd5b505afa158015610f05573d6000803e3d6000fd5b505050506040513d6020811015610f1b57600080fd5b50519050600080610f304263f4fce9b061205d565b905060005b8381101561104757600d5460408051632f745c5960e01b81526001600160a01b0388811660048301526024820185905291516000939290921691632f745c5991604480820192602092909190829003018186803b158015610f9557600080fd5b505afa158015610fa9573d6000803e3d6000fd5b505050506040513d6020811015610fbf57600080fd5b50516000818152600960205260409020549091506001600160a01b031633141561103e57600081815260086020908152604080832054600b9092529091205460ff161561102557600654678ac7230489e80000026201518082860304028501945061103c565b678ac7230489e80000620151808286030402850194505b505b50600101610f35565b506009821161109d576040805162461bcd60e51b815260206004820152601b60248201527f596f75722062616279206e65656420746f20706c6179206d6f72650000000000604482015290519081900360640190fd5b60005b8381101561114657600d5460408051632f745c5960e01b81526001600160a01b0388811660048301526024820185905291516000939290921691632f745c5991604480820192602092909190829003018186803b15801561110057600080fd5b505afa158015611114573d6000803e3d6000fd5b505050506040513d602081101561112a57600080fd5b50516000908152600860205260409020839055506001016110a0565b506111513383612073565b60408051838152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a250505050565b611195611d1a565b600c546001600160a01b039081169116146111e5576040805162461bcd60e51b8152602060048201819052602482015260008051602061239a833981519152604482015290519081900360640190fd5b60058054821515610100810261ff00199092169190911790915560408051918252517f6c737c3860d0b11cf7881e1ca8256bc907fadfa5cbae1a5d760130239f97bb129181900360200190a150565b6201518081565b600a81565b6009602052600090815260409020546001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108825780601f1061085757610100808354040283529160200191610882565b6112c4611d1a565b600c546001600160a01b03908116911614611314576040805162461bcd60e51b8152602060048201819052602482015260008051602061239a833981519152604482015290519081900360640190fd5b60005b81811015610aef5782828281811061132b57fe5b90506020020135600014156113715760405162461bcd60e51b815260040180806020018281038252602181526020018061232b6021913960400191505060405180910390fd5b600b600084848481811061138157fe5b602090810292909201358352508101919091526040016000205460ff166113e1576001600b60008585858181106113b457fe5b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600101611317565b336000908152600a602052604090205460ff161515600114611452576040805162461bcd60e51b815260206004820152601f60248201527f2043616c6c6572206973206e6f74206f6e20746865206275726e206c69737400604482015290519081900360640190fd5b670de0b6b3a7640000026114668282612163565b5050565b60006108a0611477611d1a565b846109488560405180606001604052806025815260200161246a60259139600160006114a1611d1a565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611f65565b60006108a06114df611d1a565b8484611e0a565b336000908152600a602052604090205460ff16151560011461154f576040805162461bcd60e51b815260206004820152601f60248201527f2043616c6c6572206973206e6f74206f6e20746865206d696e74206c69737400604482015290519081900360640190fd5b670de0b6b3a7640000026115638282612073565b6040805182815290516001600160a01b038416917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25050565b60006001600160a01b03821633146115ef5760405162461bcd60e51b81526004018080602001828103825260228152602001806124486022913960400191505060405180910390fd5b600d54604080516370a0823160e01b81526001600160a01b038581166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561164057600080fd5b505afa158015611654573d6000803e3d6000fd5b505050506040513d602081101561166a57600080fd5b5051116116b8576040805162461bcd60e51b8152602060048201526017602482015276596f757220626162792069736e277420706c6179696e6760481b604482015290519081900360640190fd5b600d54604080516370a0823160e01b81526001600160a01b038581166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561170957600080fd5b505afa15801561171d573d6000803e3d6000fd5b505050506040513d602081101561173357600080fd5b505190506000806117484263f4fce9b061205d565b905060005b8381101561185157600d5460408051632f745c5960e01b81526001600160a01b0389811660048301526024820185905291516000939290921691632f745c5991604480820192602092909190829003018186803b1580156117ad57600080fd5b505afa1580156117c1573d6000803e3d6000fd5b505050506040513d60208110156117d757600080fd5b50516000818152600960205260409020549091506001600160a01b031633141561184857600081815260086020908152604080832054600b9092529091205460ff161561183657600654600a0262015180828603040285019450611846565b600a620151808286030402850194505b505b5060010161174d565b5090949350505050565b600d54604080516331a9108f60e11b81526004810184905290516001600160a01b0390921691636352211e91602480820192602092909190829003018186803b1580156118a757600080fd5b505afa1580156118bb573d6000803e3d6000fd5b505050506040513d60208110156118d157600080fd5b50516001600160a01b031633146119195760405162461bcd60e51b81526004018080602001828103825260228152602001806122c56022913960400191505060405180910390fd5b600554610100900460ff161561196c576040805162461bcd60e51b81526020600482015260136024820152725374616b696e67206973206f6e20706175736560681b604482015290519081900360640190fd5b600081815260086020526040902054600111806119a057506000818152600960205260409020546001600160a01b03163314155b6119f1576040805162461bcd60e51b815260206004820152601760248201527f4261627920697320616c726561647920706c6179696e67000000000000000000604482015290519081900360640190fd5b6000611a014263f4fce9b061205d565b600092835260096020908152604080852080546001600160a01b0319163317905560089091529092209190915550565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60065481565b63f4fce9b081565b611a72611d1a565b600c546001600160a01b03908116911614611ac2576040805162461bcd60e51b8152602060048201819052602482015260008051602061239a833981519152604482015290519081900360640190fd5b60005b81811015610aef576000838383818110611adb57fe5b905060200201356001600160a01b03166001600160a01b03161415611b315760405162461bcd60e51b81526004018080602001828103825260248152602001806124006024913960400191505060405180910390fd5b600a6000848484818110611b4157fe5b602090810292909201356001600160a01b031683525081019190915260400160002054600160ff90911615151415611bcd576000600a6000858585818110611b8557fe5b905060200201356001600160a01b03166001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600101611ac5565b611bdd611d1a565b600c546001600160a01b03908116911614611c2d576040805162461bcd60e51b8152602060048201819052602482015260008051602061239a833981519152604482015290519081900360640190fd5b60005b81811015610aef57828282818110611c4457fe5b9050602002013560001415611c8a5760405162461bcd60e51b81526004018080602001828103825260248152602001806124006024913960400191505060405180910390fd5b600b6000848484818110611c9a57fe5b602090810292909201358352508101919091526040016000205460ff16151560011415611d00576000600b6000858585818110611cd357fe5b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600101611c30565b60076020526000908152604090205481565b3390565b6001600160a01b038316611d635760405162461bcd60e51b81526004018080602001828103825260248152602001806124246024913960400191505060405180910390fd5b6001600160a01b038216611da85760405162461bcd60e51b81526004018080602001828103825260228152602001806123096022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611e4f5760405162461bcd60e51b81526004018080602001828103825260258152602001806123db6025913960400191505060405180910390fd5b6001600160a01b038216611e945760405162461bcd60e51b81526004018080602001828103825260238152602001806122a26023913960400191505060405180910390fd5b611e9f838383610aef565b611edc8160405180606001604052806026815260200161234c602691396001600160a01b0386166000908152602081905260409020549190611f65565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611f0b9082611ffc565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115611ff45760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611fb9578181015183820152602001611fa1565b50505050905090810190601f168015611fe65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015612056576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600081831061206c5781612056565b5090919050565b6001600160a01b0382166120ce576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6120da60008383610aef565b6002546120e79082611ffc565b6002556001600160a01b03821660009081526020819052604090205461210d9082611ffc565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166121a85760405162461bcd60e51b81526004018080602001828103825260218152602001806123ba6021913960400191505060405180910390fd5b6121b482600083610aef565b6121f1816040518060600160405280602281526020016122e7602291396001600160a01b0385166000908152602081905260409020549190611f65565b6001600160a01b038316600090815260208190526040902055600254612217908261225f565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600061205683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f6556fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373596f7520617265206e6f7420746865206f776e6572206f662074686973204261627945524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f20616464726573734d6573736167653a2043616e2774206164642061207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734d6573736167653a2043616e27742072656d6f76652061207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373596f752063616e206f6e6c7920636c61696d20796f7572206f776e20746f6b656e7345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203cdf6398ecf02d5003134294a607484174d8d5a851bbe8d20e3615747229dd5d64736f6c634300060c003300000000000000000000000065f18d5c9faa70f1dd1617d287c8970c18c54dbd

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061021c5760003560e01c80637f87d06011610125578063ac026d8f116100ad578063e3a84eb71161007c578063e3a84eb7146106ed578063efe7a504146106f5578063f120280f146106fd578063f2e47f751461076b578063f301af42146107d95761021c565b8063ac026d8f14610650578063ac3451d41461067c578063ade5e0d5146106a2578063dd62ed3e146106bf5761021c565b806395d89b41116100f457806395d89b411461055657806399763d1b1461055e5780639dc29fac146105cc578063a457c2d7146105f8578063a9059cbb146106245761021c565b80637f87d0601461050a57806380bc242f146105295780638a495107146105315780639083ee48146105395761021c565b806331518778116101a857806344a6b86c1161017757806344a6b86c1461047c5780636fe28e951461048457806370a08231146104a1578063796ac34a146104c75780637be2dc7c146104e45761021c565b806331518778146103bb57806337764c871461042b578063395093511461044857806341910f90146104745761021c565b806318160ddd116101ef57806318160ddd1461033157806323b872dd146103395780632a91090d1461036f5780632c7c985014610377578063313ce5671461039d5761021c565b806306fdde0314610221578063095ea7b31461029e5780630bc5dec4146102de5780630c974fe21461030d575b600080fd5b6102296107f6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026357818101518382015260200161024b565b50505050905090810190601f1680156102905780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102ca600480360360408110156102b457600080fd5b506001600160a01b03813516906020013561088c565b604080519115158252519081900360200190f35b6102fb600480360360208110156102f457600080fd5b50356108a9565b60408051918252519081900360200190f35b6103156108bb565b604080516001600160a01b039092168252519081900360200190f35b6102fb6108ca565b6102ca6004803603606081101561034f57600080fd5b506001600160a01b038135811691602081013590911690604001356108d0565b6102ca610957565b6102ca6004803603602081101561038d57600080fd5b50356001600160a01b0316610965565b6103a5610983565b6040805160ff9092168252519081900360200190f35b610429600480360360208110156103d157600080fd5b810190602081018135600160201b8111156103eb57600080fd5b8201836020820111156103fd57600080fd5b803590602001918460208302840111600160201b8311171561041e57600080fd5b50909250905061098c565b005b6104296004803603602081101561044157600080fd5b5035610af4565b6102ca6004803603604081101561045e57600080fd5b506001600160a01b038135169060200135610b87565b6102fb610bd5565b6102fb610be1565b6102ca6004803603602081101561049a57600080fd5b5035610bee565b6102fb600480360360208110156104b757600080fd5b50356001600160a01b0316610c03565b6102fb600480360360208110156104dd57600080fd5b5035610c1e565b610429600480360360208110156104fa57600080fd5b50356001600160a01b0316610d3d565b6104296004803603602081101561052057600080fd5b5035151561118d565b6102fb611234565b6102fb61123b565b6103156004803603602081101561054f57600080fd5b5035611240565b61022961125b565b6104296004803603602081101561057457600080fd5b810190602081018135600160201b81111561058e57600080fd5b8201836020820111156105a057600080fd5b803590602001918460208302840111600160201b831117156105c157600080fd5b5090925090506112bc565b610429600480360360408110156105e257600080fd5b506001600160a01b0381351690602001356113e9565b6102ca6004803603604081101561060e57600080fd5b506001600160a01b03813516906020013561146a565b6102ca6004803603604081101561063a57600080fd5b506001600160a01b0381351690602001356114d2565b6104296004803603604081101561066657600080fd5b506001600160a01b0381351690602001356114e6565b6102fb6004803603602081101561069257600080fd5b50356001600160a01b03166115a6565b610429600480360360208110156106b857600080fd5b503561185b565b6102fb600480360360408110156106d557600080fd5b506001600160a01b0381358116916020013516611a31565b6102fb611a5c565b6102fb611a62565b6104296004803603602081101561071357600080fd5b810190602081018135600160201b81111561072d57600080fd5b82018360208201111561073f57600080fd5b803590602001918460208302840111600160201b8311171561076057600080fd5b509092509050611a6a565b6104296004803603602081101561078157600080fd5b810190602081018135600160201b81111561079b57600080fd5b8201836020820111156107ad57600080fd5b803590602001918460208302840111600160201b831117156107ce57600080fd5b509092509050611bd5565b6102fb600480360360208110156107ef57600080fd5b5035611d08565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108825780601f1061085757610100808354040283529160200191610882565b820191906000526020600020905b81548152906001019060200180831161086557829003601f168201915b5050505050905090565b60006108a0610899611d1a565b8484611d1e565b50600192915050565b60086020526000908152604090205481565b600d546001600160a01b031681565b60025490565b60006108dd848484611e0a565b61094d846108e9611d1a565b61094885604051806060016040528060288152602001612372602891396001600160a01b038a16600090815260016020526040812090610927611d1a565b6001600160a01b031681526020810191909152604001600020549190611f65565b611d1e565b5060019392505050565b600554610100900460ff1681565b6001600160a01b03166000908152600a602052604090205460ff1690565b60055460ff1690565b610994611d1a565b600c546001600160a01b039081169116146109e4576040805162461bcd60e51b8152602060048201819052602482015260008051602061239a833981519152604482015290519081900360640190fd5b60005b81811015610aef5760008383838181106109fd57fe5b905060200201356001600160a01b03166001600160a01b03161415610a535760405162461bcd60e51b815260040180806020018281038252602181526020018061232b6021913960400191505060405180910390fd5b600a6000848484818110610a6357fe5b602090810292909201356001600160a01b03168352508101919091526040016000205460ff16610ae7576001600a6000858585818110610a9f57fe5b905060200201356001600160a01b03166001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6001016109e7565b505050565b610afc611d1a565b600c546001600160a01b03908116911614610b4c576040805162461bcd60e51b8152602060048201819052602482015260008051602061239a833981519152604482015290519081900360640190fd5b60068190556040805182815290517fb2ca8106134bb9408379b7fae66f388876de85ee3a64e9cc2032356201a2790a9181900360200190a150565b60006108a0610b94611d1a565b846109488560016000610ba5611d1a565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611ffc565b678ac7230489e8000081565b681043561a882930000081565b6000908152600b602052604090205460ff1690565b6001600160a01b031660009081526020819052604090205490565b6000818152600960205260408120546001600160a01b03163314610c83576040805162461bcd60e51b8152602060048201526017602482015276596f757220626162792069736e277420706c6179696e6760481b604482015290519081900360640190fd5b600082815260086020526040902054610cdd576040805162461bcd60e51b8152602060048201526017602482015276596f757220626162792069736e277420706c6179696e6760481b604482015290519081900360640190fd5b6000610ced4263f4fce9b061205d565b600084815260086020908152604080832054600b9092528220549293509160ff1615610d285750600654620151808284030402600a02610d35565b506201518081830304600a025b949350505050565b6001600160a01b0381163314610d845760405162461bcd60e51b81526004018080602001828103825260228152602001806124486022913960400191505060405180910390fd5b600d54604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b158015610dd557600080fd5b505afa158015610de9573d6000803e3d6000fd5b505050506040513d6020811015610dff57600080fd5b505111610e4d576040805162461bcd60e51b8152602060048201526017602482015276596f757220626162792069736e277420706c6179696e6760481b604482015290519081900360640190fd5b600554610100900460ff1615610ea0576040805162461bcd60e51b81526020600482015260136024820152725374616b696e67206973206f6e20706175736560681b604482015290519081900360640190fd5b600d54604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b158015610ef157600080fd5b505afa158015610f05573d6000803e3d6000fd5b505050506040513d6020811015610f1b57600080fd5b50519050600080610f304263f4fce9b061205d565b905060005b8381101561104757600d5460408051632f745c5960e01b81526001600160a01b0388811660048301526024820185905291516000939290921691632f745c5991604480820192602092909190829003018186803b158015610f9557600080fd5b505afa158015610fa9573d6000803e3d6000fd5b505050506040513d6020811015610fbf57600080fd5b50516000818152600960205260409020549091506001600160a01b031633141561103e57600081815260086020908152604080832054600b9092529091205460ff161561102557600654678ac7230489e80000026201518082860304028501945061103c565b678ac7230489e80000620151808286030402850194505b505b50600101610f35565b506009821161109d576040805162461bcd60e51b815260206004820152601b60248201527f596f75722062616279206e65656420746f20706c6179206d6f72650000000000604482015290519081900360640190fd5b60005b8381101561114657600d5460408051632f745c5960e01b81526001600160a01b0388811660048301526024820185905291516000939290921691632f745c5991604480820192602092909190829003018186803b15801561110057600080fd5b505afa158015611114573d6000803e3d6000fd5b505050506040513d602081101561112a57600080fd5b50516000908152600860205260409020839055506001016110a0565b506111513383612073565b60408051838152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a250505050565b611195611d1a565b600c546001600160a01b039081169116146111e5576040805162461bcd60e51b8152602060048201819052602482015260008051602061239a833981519152604482015290519081900360640190fd5b60058054821515610100810261ff00199092169190911790915560408051918252517f6c737c3860d0b11cf7881e1ca8256bc907fadfa5cbae1a5d760130239f97bb129181900360200190a150565b6201518081565b600a81565b6009602052600090815260409020546001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108825780601f1061085757610100808354040283529160200191610882565b6112c4611d1a565b600c546001600160a01b03908116911614611314576040805162461bcd60e51b8152602060048201819052602482015260008051602061239a833981519152604482015290519081900360640190fd5b60005b81811015610aef5782828281811061132b57fe5b90506020020135600014156113715760405162461bcd60e51b815260040180806020018281038252602181526020018061232b6021913960400191505060405180910390fd5b600b600084848481811061138157fe5b602090810292909201358352508101919091526040016000205460ff166113e1576001600b60008585858181106113b457fe5b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600101611317565b336000908152600a602052604090205460ff161515600114611452576040805162461bcd60e51b815260206004820152601f60248201527f2043616c6c6572206973206e6f74206f6e20746865206275726e206c69737400604482015290519081900360640190fd5b670de0b6b3a7640000026114668282612163565b5050565b60006108a0611477611d1a565b846109488560405180606001604052806025815260200161246a60259139600160006114a1611d1a565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611f65565b60006108a06114df611d1a565b8484611e0a565b336000908152600a602052604090205460ff16151560011461154f576040805162461bcd60e51b815260206004820152601f60248201527f2043616c6c6572206973206e6f74206f6e20746865206d696e74206c69737400604482015290519081900360640190fd5b670de0b6b3a7640000026115638282612073565b6040805182815290516001600160a01b038416917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25050565b60006001600160a01b03821633146115ef5760405162461bcd60e51b81526004018080602001828103825260228152602001806124486022913960400191505060405180910390fd5b600d54604080516370a0823160e01b81526001600160a01b038581166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561164057600080fd5b505afa158015611654573d6000803e3d6000fd5b505050506040513d602081101561166a57600080fd5b5051116116b8576040805162461bcd60e51b8152602060048201526017602482015276596f757220626162792069736e277420706c6179696e6760481b604482015290519081900360640190fd5b600d54604080516370a0823160e01b81526001600160a01b038581166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561170957600080fd5b505afa15801561171d573d6000803e3d6000fd5b505050506040513d602081101561173357600080fd5b505190506000806117484263f4fce9b061205d565b905060005b8381101561185157600d5460408051632f745c5960e01b81526001600160a01b0389811660048301526024820185905291516000939290921691632f745c5991604480820192602092909190829003018186803b1580156117ad57600080fd5b505afa1580156117c1573d6000803e3d6000fd5b505050506040513d60208110156117d757600080fd5b50516000818152600960205260409020549091506001600160a01b031633141561184857600081815260086020908152604080832054600b9092529091205460ff161561183657600654600a0262015180828603040285019450611846565b600a620151808286030402850194505b505b5060010161174d565b5090949350505050565b600d54604080516331a9108f60e11b81526004810184905290516001600160a01b0390921691636352211e91602480820192602092909190829003018186803b1580156118a757600080fd5b505afa1580156118bb573d6000803e3d6000fd5b505050506040513d60208110156118d157600080fd5b50516001600160a01b031633146119195760405162461bcd60e51b81526004018080602001828103825260228152602001806122c56022913960400191505060405180910390fd5b600554610100900460ff161561196c576040805162461bcd60e51b81526020600482015260136024820152725374616b696e67206973206f6e20706175736560681b604482015290519081900360640190fd5b600081815260086020526040902054600111806119a057506000818152600960205260409020546001600160a01b03163314155b6119f1576040805162461bcd60e51b815260206004820152601760248201527f4261627920697320616c726561647920706c6179696e67000000000000000000604482015290519081900360640190fd5b6000611a014263f4fce9b061205d565b600092835260096020908152604080852080546001600160a01b0319163317905560089091529092209190915550565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60065481565b63f4fce9b081565b611a72611d1a565b600c546001600160a01b03908116911614611ac2576040805162461bcd60e51b8152602060048201819052602482015260008051602061239a833981519152604482015290519081900360640190fd5b60005b81811015610aef576000838383818110611adb57fe5b905060200201356001600160a01b03166001600160a01b03161415611b315760405162461bcd60e51b81526004018080602001828103825260248152602001806124006024913960400191505060405180910390fd5b600a6000848484818110611b4157fe5b602090810292909201356001600160a01b031683525081019190915260400160002054600160ff90911615151415611bcd576000600a6000858585818110611b8557fe5b905060200201356001600160a01b03166001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600101611ac5565b611bdd611d1a565b600c546001600160a01b03908116911614611c2d576040805162461bcd60e51b8152602060048201819052602482015260008051602061239a833981519152604482015290519081900360640190fd5b60005b81811015610aef57828282818110611c4457fe5b9050602002013560001415611c8a5760405162461bcd60e51b81526004018080602001828103825260248152602001806124006024913960400191505060405180910390fd5b600b6000848484818110611c9a57fe5b602090810292909201358352508101919091526040016000205460ff16151560011415611d00576000600b6000858585818110611cd357fe5b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600101611c30565b60076020526000908152604090205481565b3390565b6001600160a01b038316611d635760405162461bcd60e51b81526004018080602001828103825260248152602001806124246024913960400191505060405180910390fd5b6001600160a01b038216611da85760405162461bcd60e51b81526004018080602001828103825260228152602001806123096022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611e4f5760405162461bcd60e51b81526004018080602001828103825260258152602001806123db6025913960400191505060405180910390fd5b6001600160a01b038216611e945760405162461bcd60e51b81526004018080602001828103825260238152602001806122a26023913960400191505060405180910390fd5b611e9f838383610aef565b611edc8160405180606001604052806026815260200161234c602691396001600160a01b0386166000908152602081905260409020549190611f65565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611f0b9082611ffc565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115611ff45760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611fb9578181015183820152602001611fa1565b50505050905090810190601f168015611fe65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015612056576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600081831061206c5781612056565b5090919050565b6001600160a01b0382166120ce576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6120da60008383610aef565b6002546120e79082611ffc565b6002556001600160a01b03821660009081526020819052604090205461210d9082611ffc565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166121a85760405162461bcd60e51b81526004018080602001828103825260218152602001806123ba6021913960400191505060405180910390fd5b6121b482600083610aef565b6121f1816040518060600160405280602281526020016122e7602291396001600160a01b0385166000908152602081905260409020549190611f65565b6001600160a01b038316600090815260208190526040902055600254612217908261225f565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600061205683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f6556fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373596f7520617265206e6f7420746865206f776e6572206f662074686973204261627945524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f20616464726573734d6573736167653a2043616e2774206164642061207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734d6573736167653a2043616e27742072656d6f76652061207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373596f752063616e206f6e6c7920636c61696d20796f7572206f776e20746f6b656e7345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203cdf6398ecf02d5003134294a607484174d8d5a851bbe8d20e3615747229dd5d64736f6c634300060c0033

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

00000000000000000000000065f18d5c9faa70f1dd1617d287c8970c18c54dbd

-----Decoded View---------------
Arg [0] : _nfts (address): 0x65f18d5C9fAA70f1Dd1617d287c8970C18C54dbD

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000065f18d5c9faa70f1dd1617d287c8970c18c54dbd


Deployed Bytecode Sourcemap

26534:7387:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17692:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19798:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19798:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;27010:45;;;;;;;;;;;;;;;;-1:-1:-1;27010:45:0;;:::i;:::-;;;;;;;;;;;;;;;;27245:26;;;:::i;:::-;;;;-1:-1:-1;;;;;27245:26:0;;;;;;;;;;;;;;18767:100;;;:::i;20441:321::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20441:321:0;;;;;;;;;;;;;;;;;:::i;26837:26::-;;;:::i;29685:114::-;;;;;;;;;;;;;;;;-1:-1:-1;29685:114:0;-1:-1:-1;;;;;29685:114:0;;:::i;18619:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29187:492;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;29187:492:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;29187:492:0;;;;;;;;;;-1:-1:-1;29187:492:0;;-1:-1:-1;29187:492:0;-1:-1:-1;29187:492:0;:::i;:::-;;33096:244;;;;;;;;;;;;;;;;-1:-1:-1;33096:244:0;;:::i;21171:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21171:218:0;;;;;;;;:::i;26677:44::-;;;:::i;26775:52::-;;;:::i;30789:112::-;;;;;;;;;;;;;;;;-1:-1:-1;30789:112:0;;:::i;18930:119::-;;;;;;;;;;;;;;;;-1:-1:-1;18930:119:0;-1:-1:-1;;;;;18930:119:0;;:::i;32228:609::-;;;;;;;;;;;;;;;;-1:-1:-1;32228:609:0;;:::i;28088:1093::-;;;;;;;;;;;;;;;;-1:-1:-1;28088:1093:0;-1:-1:-1;;;;;28088:1093:0;;:::i;32845:243::-;;;;;;;;;;;;;;;;-1:-1:-1;32845:243:0;;;;:::i;26618:47::-;;;:::i;26726:44::-;;;:::i;27062:48::-;;;;;;;;;;;;;;;;-1:-1:-1;27062:48:0;;:::i;17894:87::-;;;:::i;30316:467::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;30316:467:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;30316:467:0;;;;;;;;;;-1:-1:-1;30316:467:0;;-1:-1:-1;30316:467:0;-1:-1:-1;30316:467:0;:::i;33353:324::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33353:324:0;;;;;;;;:::i;21892:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21892:269:0;;;;;;;;:::i;19262:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19262:175:0;;;;;;;;:::i;33686:232::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33686:232:0;;;;;;;;:::i;31389:832::-;;;;;;;;;;;;;;;;-1:-1:-1;31389:832:0;-1:-1:-1;;;;;31389:832:0;;:::i;27656:424::-;;;;;;;;;;;;;;;;-1:-1:-1;27656:424:0;;:::i;19500:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19500:151:0;;;;;;;;;;:::i;26874:37::-;;;:::i;26918:40::-;;;:::i;29803:505::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;29803:505:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;29803:505:0;;;;;;;;;;-1:-1:-1;29803:505:0;;-1:-1:-1;29803:505:0;-1:-1:-1;29803:505:0;:::i;30905:480::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;30905:480:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;30905:480:0;;;;;;;;;;-1:-1:-1;30905:480:0;;-1:-1:-1;30905:480:0;-1:-1:-1;30905:480:0;:::i;26964:42::-;;;;;;;;;;;;;;;;-1:-1:-1;26964:42:0;;:::i;17692:83::-;17762:5;17755:12;;;;;;;;-1:-1:-1;;17755:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17729:13;;17755:12;;17762:5;;17755:12;;17762:5;17755:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17692:83;:::o;19798:169::-;19881:4;19898:39;19907:12;:10;:12::i;:::-;19921:7;19930:6;19898:8;:39::i;:::-;-1:-1:-1;19955:4:0;19798:169;;;;:::o;27010:45::-;;;;;;;;;;;;;:::o;27245:26::-;;;-1:-1:-1;;;;;27245:26:0;;:::o;18767:100::-;18847:12;;18767:100;:::o;20441:321::-;20547:4;20564:36;20574:6;20582:9;20593:6;20564:9;:36::i;:::-;20611:121;20620:6;20628:12;:10;:12::i;:::-;20642:89;20680:6;20642:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20642:19:0;;;;;;:11;:19;;;;;;20662:12;:10;:12::i;:::-;-1:-1:-1;;;;;20642:33:0;;;;;;;;;;;;-1:-1:-1;20642:33:0;;;:89;:37;:89::i;:::-;20611:8;:121::i;:::-;-1:-1:-1;20750:4:0;20441:321;;;;;:::o;26837:26::-;;;;;;;;;:::o;29685:114::-;-1:-1:-1;;;;;29772:19:0;29748:4;29772:19;;;:9;:19;;;;;;;;;29685:114::o;18619:83::-;18685:9;;;;18619:83;:::o;29187:492::-;29284:12;:10;:12::i;:::-;29274:6;;-1:-1:-1;;;;;29274:6:0;;;:22;;;29266:67;;;;;-1:-1:-1;;;29266:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;29266:67:0;;;;;;;;;;;;;;;29349:11;29344:328;29366:23;;;29344:328;;;29466:1;29439:10;;29450:3;29439:15;;;;;;;;;;;;;-1:-1:-1;;;;;29439:15:0;-1:-1:-1;;;;;29439:29:0;;;29413:124;;;;-1:-1:-1;;;29413:124:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29556:9;:26;29566:10;;29577:3;29566:15;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29566:15:0;29556:26;;-1:-1:-1;29556:26:0;;;;;;;;-1:-1:-1;29556:26:0;;;;29552:109;;29641:4;29612:9;:26;29622:10;;29633:3;29622:15;;;;;;;;;;;;;-1:-1:-1;;;;;29622:15:0;-1:-1:-1;;;;;29612:26:0;-1:-1:-1;;;;;29612:26:0;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;29552:109;29391:5;;29344:328;;;;29187:492;;:::o;33096:244::-;33181:12;:10;:12::i;:::-;33171:6;;-1:-1:-1;;;;;33171:6:0;;;:22;;;33163:67;;;;;-1:-1:-1;;;33163:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;33163:67:0;;;;;;;;;;;;;;;33241:18;:31;;;33288:44;;;;;;;;;;;;;;;;;33096:244;:::o;21171:218::-;21259:4;21276:83;21285:12;:10;:12::i;:::-;21299:7;21308:50;21347:10;21308:11;:25;21320:12;:10;:12::i;:::-;-1:-1:-1;;;;;21308:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21308:25:0;;;:34;;;;;;;;;;;:38;:50::i;26677:44::-;26713:8;26677:44;:::o;26775:52::-;26818:9;26775:52;:::o;30789:112::-;30851:4;30875:18;;;:12;:18;;;;;;;;;30789:112::o;18930:119::-;-1:-1:-1;;;;;19023:18:0;18996:7;19023:18;;;;;;;;;;;;18930:119::o;32228:609::-;32291:7;32319:19;;;:13;:19;;;;;;-1:-1:-1;;;;;32319:19:0;32342:10;32319:33;32311:69;;;;;-1:-1:-1;;;32311:69:0;;;;;;;;;;;;-1:-1:-1;;;32311:69:0;;;;;;;;;;;;;;;32418:1;32399:16;;;:10;:16;;;;;;32391:56;;;;;-1:-1:-1;;;32391:56:0;;;;;;;;;;;;-1:-1:-1;;;32391:56:0;;;;;;;;;;;;;;;32452:12;32467:25;32471:15;26948:10;32467:3;:25::i;:::-;32507:15;32524:16;;;:10;:16;;;;;;;;;32576:12;:18;;;;;;32452:40;;-1:-1:-1;32524:16:0;32576:18;;32573:235;;;-1:-1:-1;32671:18:0;;26660:5;32616:14;;;32611:38;:79;26768:2;32611:79;32573:235;;;-1:-1:-1;26660:5:0;32736:14;;;32731:38;26768:2;32731:56;32573:235;32821:7;32228:609;-1:-1:-1;;;;32228:609:0:o;28088:1093::-;-1:-1:-1;;;;;28149:22:0;;28161:10;28149:22;28141:69;;;;-1:-1:-1;;;28141:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28221:12;;:32;;;-1:-1:-1;;;28221:32:0;;-1:-1:-1;;;;;28221:32:0;;;;;;;;;28256:1;;28221:12;;;;;:22;;:32;;;;;;;;;;;;;;;:12;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28221:32:0;:36;28213:72;;;;;-1:-1:-1;;;28213:72:0;;;;;;;;;;;;-1:-1:-1;;;28213:72:0;;;;;;;;;;;;;;;28297:14;;;;;;;28296:15;28288:47;;;;;-1:-1:-1;;;28288:47:0;;;;;;;;;;;;-1:-1:-1;;;28288:47:0;;;;;;;;;;;;;;;28359:12;;:32;;;-1:-1:-1;;;28359:32:0;;-1:-1:-1;;;;;28359:32:0;;;;;;;;;28344:12;;28359;;;;;:22;;:32;;;;;;;;;;;;;;;:12;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28359:32:0;;-1:-1:-1;28398:15:0;;28435:25;28439:15;26948:10;28435:3;:25::i;:::-;28420:40;;28471:11;28466:445;28494:4;28488:3;:10;28466:445;;;28529:12;;:46;;;-1:-1:-1;;;28529:46:0;;-1:-1:-1;;;;;28529:46:0;;;;;;;;;;;;;;;28514:12;;28529;;;;;:32;;:46;;;;;;;;;;;;;;;:12;:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28529:46:0;28581:19;;;;:13;28529:46;28581:19;;;;;28529:46;;-1:-1:-1;;;;;;28581:19:0;28604:10;28581:33;28578:328;;;28623:15;28640:16;;;:10;:16;;;;;;;;;28666:12;:18;;;;;;;;;28663:240;;;28764:18;;26713:8;28752:30;26660:5;28715:14;;;28710:38;:73;28699:7;:85;28689:95;;28663:240;;;26713:8;26660:5;28840:14;;;28835:38;:50;28824:7;:62;28814:72;;28663:240;28578:328;;-1:-1:-1;28500:5:0;;28466:445;;;;28931:1;28921:7;:11;28913:51;;;;;-1:-1:-1;;;28913:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;28972:11;28967:139;28995:4;28989:3;:10;28967:139;;;29030:12;;:46;;;-1:-1:-1;;;29030:46:0;;-1:-1:-1;;;;;29030:46:0;;;;;;;;;;;;;;;29015:12;;29030;;;;;:32;;:46;;;;;;;;;;;;;;;:12;:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29030:46:0;29079:16;;;;:10;29030:46;29079:16;;;;:23;;;-1:-1:-1;29001:5:0;;28967:139;;;;29108:26;29114:10;29126:7;29108:5;:26::i;:::-;29142:31;;;;;;;;29153:10;;29142:31;;;;;;;;;;28088:1093;;;;:::o;32845:243::-;32934:12;:10;:12::i;:::-;32924:6;;-1:-1:-1;;;;;32924:6:0;;;:22;;;32916:67;;;;;-1:-1:-1;;;32916:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32916:67:0;;;;;;;;;;;;;;;32994:14;:32;;;;;;;;-1:-1:-1;;32994:32:0;;;;;;;;;;33042:38;;;;;;;;;;;;;;;;32845:243;:::o;26618:47::-;26660:5;26618:47;:::o;26726:44::-;26768:2;26726:44;:::o;27062:48::-;;;;;;;;;;;;-1:-1:-1;;;;;27062:48:0;;:::o;17894:87::-;17966:7;17959:14;;;;;;;;-1:-1:-1;;17959:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17933:13;;17959:14;;17966:7;;17959:14;;17966:7;17959:14;;;;;;;;;;;;;;;;;;;;;;;;30316:467;30411:12;:10;:12::i;:::-;30401:6;;-1:-1:-1;;;;;30401:6:0;;;:22;;;30393:67;;;;;-1:-1:-1;;;30393:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30393:67:0;;;;;;;;;;;;;;;30476:11;30471:305;30493:18;;;30471:305;;;30561:5;;30567:3;30561:10;;;;;;;;;;;;;30575:1;30561:15;;30535:110;;;;-1:-1:-1;;;30535:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30664:12;:24;30677:5;;30683:3;30677:10;;;;;;;;;;;;;;;;30664:24;;-1:-1:-1;30664:24:0;;;;;;;;-1:-1:-1;30664:24:0;;;;30660:105;;30745:4;30718:12;:24;30731:5;;30737:3;30731:10;;;;;;;;;;;;;30718:24;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;30660:105;30513:5;;30471:305;;33353:324;33438:10;33428:21;;;;:9;:21;;;;;;;;:29;;:21;:29;33420:72;;;;;-1:-1:-1;;;33420:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;33639:7;33629:17;33651:21;33657:5;33629:17;33651:5;:21::i;:::-;33353:324;;:::o;21892:269::-;21985:4;22002:129;22011:12;:10;:12::i;:::-;22025:7;22034:96;22073:15;22034:96;;;;;;;;;;;;;;;;;:11;:25;22046:12;:10;:12::i;:::-;-1:-1:-1;;;;;22034:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;22034:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;19262:175::-;19348:4;19365:42;19375:12;:10;:12::i;:::-;19389:9;19400:6;19365:9;:42::i;33686:232::-;33764:10;33754:21;;;;:9;:21;;;;;;;;:29;;:21;:29;33746:72;;;;;-1:-1:-1;;;33746:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;33842:7;33834:15;33863:17;33869:3;33834:15;33863:5;:17::i;:::-;33891:22;;;;;;;;-1:-1:-1;;;;;33891:22:0;;;;;;;;;;;;;33686:232;;:::o;31389:832::-;31460:7;-1:-1:-1;;;;;31484:22:0;;31496:10;31484:22;31476:69;;;;-1:-1:-1;;;31476:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31556:12;;:32;;;-1:-1:-1;;;31556:32:0;;-1:-1:-1;;;;;31556:32:0;;;;;;;;;31591:1;;31556:12;;;;;:22;;:32;;;;;;;;;;;;;;;:12;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31556:32:0;:36;31548:72;;;;;-1:-1:-1;;;31548:72:0;;;;;;;;;;;;-1:-1:-1;;;31548:72:0;;;;;;;;;;;;;;;31644:12;;:32;;;-1:-1:-1;;;31644:32:0;;-1:-1:-1;;;;;31644:32:0;;;;;;;;;31629:12;;31644;;;;;:22;;:32;;;;;;;;;;;;;;;:12;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31644:32:0;;-1:-1:-1;31683:15:0;;31720:25;31724:15;26948:10;31720:3;:25::i;:::-;31705:40;;31756:11;31751:449;31779:4;31773:3;:10;31751:449;;;31814:12;;:46;;;-1:-1:-1;;;31814:46:0;;-1:-1:-1;;;;;31814:46:0;;;;;;;;;;;;;;;31799:12;;31814;;;;;:32;;:46;;;;;;;;;;;;;;;:12;:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31814:46:0;31866:19;;;;:13;31814:46;31866:19;;;;;31814:46;;-1:-1:-1;;;;;;31866:19:0;31889:10;31866:33;31863:332;;;31908:15;31925:16;;;:10;:16;;;;;;;;;31951:12;:18;;;;;;;;;31948:242;;;32055:18;;26768:2;32037:36;26660:5;32000:14;;;31995:38;:79;31984:7;:91;31974:101;;31948:242;;;26768:2;26660:5;32124:14;;;32119:38;:56;32108:7;:68;32098:78;;31948:242;31863:332;;-1:-1:-1;31785:5:0;;31751:449;;;-1:-1:-1;32209:7:0;;31389:832;-1:-1:-1;;;;31389:832:0:o;27656:424::-;27736:12;;:26;;;-1:-1:-1;;;27736:26:0;;;;;;;;;;-1:-1:-1;;;;;27736:12:0;;;;:20;;:26;;;;;;;;;;;;;;;:12;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27736:26:0;-1:-1:-1;;;;;27714:49:0;:10;:49;27706:96;;;;-1:-1:-1;;;27706:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27819:14;;;;;;;27818:15;27810:47;;;;;-1:-1:-1;;;27810:47:0;;;;;;;;;;;;-1:-1:-1;;;27810:47:0;;;;;;;;;;;;;;;27873:16;;;;:10;:16;;;;;;27892:1;-1:-1:-1;27873:20:0;:57;;-1:-1:-1;27897:19:0;;;;:13;:19;;;;;;-1:-1:-1;;;;;27897:19:0;27920:10;27897:33;;27873:57;27865:93;;;;;-1:-1:-1;;;27865:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27963:12;27978:25;27982:15;26948:10;27978:3;:25::i;:::-;28014:19;;;;:13;:19;;;;;;;;:32;;-1:-1:-1;;;;;;28014:32:0;28036:10;28014:32;;;28052:10;:16;;;;;;:23;;;;-1:-1:-1;27656:424:0:o;19500:151::-;-1:-1:-1;;;;;19616:18:0;;;19589:7;19616:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19500:151::o;26874:37::-;;;;:::o;26918:40::-;26948:10;26918:40;:::o;29803:505::-;29910:12;:10;:12::i;:::-;29900:6;;-1:-1:-1;;;;;29900:6:0;;;:22;;;29892:67;;;;;-1:-1:-1;;;29892:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;29892:67:0;;;;;;;;;;;;;;;29975:11;29970:331;29992:23;;;29970:331;;;30092:1;30065:10;;30076:3;30065:15;;;;;;;;;;;;;-1:-1:-1;;;;;30065:15:0;-1:-1:-1;;;;;30065:29:0;;;30039:127;;;;-1:-1:-1;;;30039:127:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30185:9;:26;30195:10;;30206:3;30195:15;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30195:15:0;30185:26;;-1:-1:-1;30185:26:0;;;;;;;;-1:-1:-1;30185:26:0;;;;;;;:34;;;30181:109;;;30269:5;30240:9;:26;30250:10;;30261:3;30250:15;;;;;;;;;;;;;-1:-1:-1;;;;;30250:15:0;-1:-1:-1;;;;;30240:26:0;-1:-1:-1;;;;;30240:26:0;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;30181:109;30017:5;;29970:331;;30905:480;31010:12;:10;:12::i;:::-;31000:6;;-1:-1:-1;;;;;31000:6:0;;;:22;;;30992:67;;;;;-1:-1:-1;;;30992:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30992:67:0;;;;;;;;;;;;;;;31075:11;31070:308;31092:18;;;31070:308;;;31160:5;;31166:3;31160:10;;;;;;;;;;;;;31174:1;31160:15;;31134:113;;;;-1:-1:-1;;;31134:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31266:12;:24;31279:5;;31285:3;31279:10;;;;;;;;;;;;;;;;31266:24;;-1:-1:-1;31266:24:0;;;;;;;;-1:-1:-1;31266:24:0;;;;:32;;:24;:32;31262:105;;;31346:5;31319:12;:24;31332:5;;31338:3;31332:10;;;;;;;;;;;;;31319:24;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;31262:105;31112:5;;31070:308;;26964:42;;;;;;;;;;;;;:::o;7048:106::-;7136:10;7048:106;:::o;25037:346::-;-1:-1:-1;;;;;25139:19:0;;25131:68;;;;-1:-1:-1;;;25131:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25218:21:0;;25210:68;;;;-1:-1:-1;;;25210:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25291:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25343:32;;;;;;;;;;;;;;;;;25037:346;;;:::o;22651:539::-;-1:-1:-1;;;;;22757:20:0;;22749:70;;;;-1:-1:-1;;;22749:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22838:23:0;;22830:71;;;;-1:-1:-1;;;22830:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22914:47;22935:6;22943:9;22954:6;22914:20;:47::i;:::-;22994:71;23016:6;22994:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22994:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;22974:17:0;;;:9;:17;;;;;;;;;;;:91;;;;23099:20;;;;;;;:32;;23124:6;23099:24;:32::i;:::-;-1:-1:-1;;;;;23076:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;23147:35;;;;;;;23076:20;;23147:35;;;;;;;;;;;;;22651:539;;;:::o;11982:192::-;12068:7;12104:12;12096:6;;;;12088:29;;;;-1:-1:-1;;;12088:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;12140:5:0;;;11982:192::o;11079:181::-;11137:7;11169:5;;;11193:6;;;;11185:46;;;;;-1:-1:-1;;;11185:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;11251:1;11079:181;-1:-1:-1;;;11079:181:0:o;27555:97::-;27613:7;27638:1;27634;:5;:13;;27646:1;27634:13;;;-1:-1:-1;27642:1:0;;27627:20;-1:-1:-1;27555:97:0:o;23471:378::-;-1:-1:-1;;;;;23555:21:0;;23547:65;;;;;-1:-1:-1;;;23547:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23625:49;23654:1;23658:7;23667:6;23625:20;:49::i;:::-;23702:12;;:24;;23719:6;23702:16;:24::i;:::-;23687:12;:39;-1:-1:-1;;;;;23758:18:0;;:9;:18;;;;;;;;;;;:30;;23781:6;23758:22;:30::i;:::-;-1:-1:-1;;;;;23737:18:0;;:9;:18;;;;;;;;;;;:51;;;;23804:37;;;;;;;23737:18;;:9;;23804:37;;;;;;;;;;23471:378;;:::o;24181:418::-;-1:-1:-1;;;;;24265:21:0;;24257:67;;;;-1:-1:-1;;;24257:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24337:49;24358:7;24375:1;24379:6;24337:20;:49::i;:::-;24420:68;24443:6;24420:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24420:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;24399:18:0;;:9;:18;;;;;;;;;;:89;24514:12;;:24;;24531:6;24514:16;:24::i;:::-;24499:12;:39;24554:37;;;;;;;;24580:1;;-1:-1:-1;;;;;24554:37:0;;;;;;;;;;;;24181:418;;:::o;11543:136::-;11601:7;11628:43;11632:1;11635;11628:43;;;;;;;;;;;;;;;;;:3;:43::i

Swarm Source

ipfs://3cdf6398ecf02d5003134294a607484174d8d5a851bbe8d20e3615747229dd5d
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.