ETH Price: $3,385.60 (-1.51%)
Gas: 2 Gwei

Token

Token (TKN)
 

Overview

Max Total Supply

113,857.55678200295 TKN

Holders

1,304

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
mjbrwn.eth
Balance
2.65630442942 TKN

Value
$0.00
0xfdc3e8edd74a90fe971ef7d56a0c66c870b10f5d
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:
Token

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol



pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol



pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead 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, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        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] + 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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` 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 += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(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 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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol



pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

// File: contracts/Token.sol

// contracts/Token.sol

pragma solidity ^0.8.0;





contract Token is ERC20Burnable, Ownable {
    using SafeMath for uint256;

    uint256 public MAX_WALLET_STAKED = 10;
    uint256 public EMISSIONS_RATE = 11574070000000;
    uint256 public CLAIM_END_TIME = 1641013200;

    address nullAddress = 0x0000000000000000000000000000000000000000;

    address public nfTokenAddress;

    //Mapping of mouse to timestamp
    mapping(uint256 => uint256) internal tokenIdToTimeStamp;

    //Mapping of mouse to staker
    mapping(uint256 => address) internal tokenIdToStaker;

    //Mapping of staker to NFT id
    mapping(address => uint256[]) internal stakerToTokenIds;

    constructor() ERC20("Token", "TKN") {}

    function setNfTokenAddress(address _nfTokenAddress) public onlyOwner {
        nfTokenAddress = _nfTokenAddress;
        return;
    }

    function getTokensStaked(address staker)
        public
        view
        returns (uint256[] memory)
    {
        return stakerToTokenIds[staker];
    }

    function remove(address staker, uint256 index) internal {
        if (index >= stakerToTokenIds[staker].length) return;

        for (uint256 i = index; i < stakerToTokenIds[staker].length - 1; i++) {
            stakerToTokenIds[staker][i] = stakerToTokenIds[staker][i + 1];
        }
        stakerToTokenIds[staker].pop();
    }

    function removeTokenIdFromStaker(address staker, uint256 tokenId) internal {
        for (uint256 i = 0; i < stakerToTokenIds[staker].length; i++) {
            if (stakerToTokenIds[staker][i] == tokenId) {
                //This is the tokenId to remove;
                remove(staker, i);
            }
        }
    }

    function stakeByIds(uint256[] memory tokenIds) public {
        require(
            stakerToTokenIds[msg.sender].length + tokenIds.length <=
                MAX_WALLET_STAKED,
            "Must have less than 10 tokens staked!"
        );

        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(
                IERC721(nfTokenAddress).ownerOf(tokenIds[i]) == msg.sender &&
                    tokenIdToStaker[tokenIds[i]] == nullAddress,
                "Token must be stakable by you!"
            );

            IERC721(nfTokenAddress).transferFrom(
                msg.sender,
                address(this),
                tokenIds[i]
            );

            stakerToTokenIds[msg.sender].push(tokenIds[i]);

            tokenIdToTimeStamp[tokenIds[i]] = block.timestamp;
            tokenIdToStaker[tokenIds[i]] = msg.sender;
        }
    }

    function unstakeAll() public {
        require(
            stakerToTokenIds[msg.sender].length > 0,
            "Must have at least one token staked!"
        );
        uint256 totalRewards = 0;

        for (uint256 i = stakerToTokenIds[msg.sender].length; i > 0; i--) {
            uint256 tokenId = stakerToTokenIds[msg.sender][i - 1];

            IERC721(nfTokenAddress).transferFrom(
                address(this),
                msg.sender,
                tokenId
            );

            totalRewards =
                totalRewards +
                ((block.timestamp - tokenIdToTimeStamp[tokenId]) *
                    EMISSIONS_RATE);

            removeTokenIdFromStaker(msg.sender, tokenId);

            tokenIdToStaker[tokenId] = nullAddress;
        }

        _mint(msg.sender, totalRewards);
    }

    function unstakeByIds(uint256[] memory tokenIds) public {
        uint256 totalRewards = 0;

        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(
                tokenIdToStaker[tokenIds[i]] == msg.sender,
                "Message Sender was not original staker!"
            );

            IERC721(nfTokenAddress).transferFrom(
                address(this),
                msg.sender,
                tokenIds[i]
            );

            totalRewards =
                totalRewards +
                ((block.timestamp - tokenIdToTimeStamp[tokenIds[i]]) *
                    EMISSIONS_RATE);

            removeTokenIdFromStaker(msg.sender, tokenIds[i]);

            tokenIdToStaker[tokenIds[i]] = nullAddress;
        }

        _mint(msg.sender, totalRewards);
    }

    function claimByTokenId(uint256 tokenId) public {
        require(
            tokenIdToStaker[tokenId] == msg.sender,
            "Token is not claimable by you!"
        );
        require(block.timestamp < CLAIM_END_TIME, "Claim period is over!");

        _mint(
            msg.sender,
            ((block.timestamp - tokenIdToTimeStamp[tokenId]) * EMISSIONS_RATE)
        );

        tokenIdToTimeStamp[tokenId] = block.timestamp;
    }

    function claimAll() public {
        require(block.timestamp < CLAIM_END_TIME, "Claim period is over!");
        uint256[] memory tokenIds = stakerToTokenIds[msg.sender];
        uint256 totalRewards = 0;

        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(
                tokenIdToStaker[tokenIds[i]] == msg.sender,
                "Token is not claimable by you!"
            );

            totalRewards =
                totalRewards +
                ((block.timestamp - tokenIdToTimeStamp[tokenIds[i]]) *
                    EMISSIONS_RATE);

            tokenIdToTimeStamp[tokenIds[i]] = block.timestamp;
        }

        _mint(msg.sender, totalRewards);
    }

    function getAllRewards(address staker) public view returns (uint256) {
        uint256[] memory tokenIds = stakerToTokenIds[staker];
        uint256 totalRewards = 0;

        for (uint256 i = 0; i < tokenIds.length; i++) {
            totalRewards =
                totalRewards +
                ((block.timestamp - tokenIdToTimeStamp[tokenIds[i]]) *
                    EMISSIONS_RATE);
        }

        return totalRewards;
    }

    function getRewardsByTokenId(uint256 tokenId)
        public
        view
        returns (uint256)
    {
        require(
            tokenIdToStaker[tokenId] != nullAddress,
            "Token is not staked!"
        );

        uint256 secondsStaked = block.timestamp - tokenIdToTimeStamp[tokenId];

        return secondsStaked * EMISSIONS_RATE;
    }

    function getStaker(uint256 tokenId) public view returns (address) {
        return tokenIdToStaker[tokenId];
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CLAIM_END_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EMISSIONS_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WALLET_STAKED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimByTokenId","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":"address","name":"staker","type":"address"}],"name":"getAllRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getRewardsByTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getStaker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"}],"name":"getTokensStaked","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nfTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nfTokenAddress","type":"address"}],"name":"setNfTokenAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"stakeByIds","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unstakeAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"unstakeByIds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a600655650a86cc54b9806007556361cfdfd0600855600980546001600160a01b03191690553480156200003857600080fd5b50604051806040016040528060058152602001642a37b5b2b760d91b815250604051806040016040528060038152602001622a25a760e91b81525081600390805190602001906200008b9291906200011a565b508051620000a19060049060208401906200011a565b505050620000be620000b8620000c460201b60201c565b620000c8565b620001fd565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012890620001c0565b90600052602060002090601f0160209004810192826200014c576000855562000197565b82601f106200016757805160ff191683800117855562000197565b8280016001018555821562000197579182015b82811115620001975782518255916020019190600101906200017a565b50620001a5929150620001a9565b5090565b5b80821115620001a55760008155600101620001aa565b600181811c90821680620001d557607f821691505b60208210811415620001f757634e487b7160e01b600052602260045260246000fd5b50919050565b612017806200020d6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a457c2d7116100a2578063d9ffad4711610071578063d9ffad47146103d4578063dd62ed3e146103e7578063e3c998fe14610420578063f2fde38b1461044957600080fd5b8063a457c2d71461039d578063a9059cbb146103b0578063ba7e7662146103c3578063d1058e59146103cc57600080fd5b806379cc6790116100de57806379cc6790146103685780638ab8fab31461037b5780638da5cb5b1461038457806395d89b411461039557600080fd5b806370a0823114610324578063715018a61461034d57806372d40ff11461035557600080fd5b8063362a3fad1161017c578063515ec1051161014b578063515ec105146102b357806352eb7796146102c65780635666b7ad146102e65780635e1f1e2a1461031157600080fd5b8063362a3fad14610267578063395093511461027a57806342966c681461028d57806348aa1936146102a057600080fd5b80632209d38c116101b85780632209d38c1461023257806323b872dd1461023b578063313ce5671461024e57806335322f371461025d57600080fd5b806306fdde03146101df578063095ea7b3146101fd57806318160ddd14610220575b600080fd5b6101e761045c565b6040516101f49190611e5d565b60405180910390f35b61021061020b366004611d16565b6104ee565b60405190151581526020016101f4565b6002545b6040519081526020016101f4565b61022460085481565b610210610249366004611cd6565b610504565b604051601281526020016101f4565b6102656105b3565b005b610224610275366004611c66565b61076e565b610210610288366004611d16565b610858565b61026561029b366004611e01565b610894565b6102656102ae366004611d41565b61089e565b6102246102c1366004611e01565b610b2d565b6102d96102d4366004611c66565b610bc3565b6040516101f49190611e19565b600a546102f9906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b61026561031f366004611e01565b610c2f565b610224610332366004611c66565b6001600160a01b031660009081526020819052604090205490565b610265610d22565b610265610363366004611c66565b610d58565b610265610376366004611d16565b610da2565b61022460065481565b6005546001600160a01b03166102f9565b6101e7610e28565b6102106103ab366004611d16565b610e37565b6102106103be366004611d16565b610ed0565b61022460075481565b610265610edd565b6102656103e2366004611d41565b6110e1565b6102246103f5366004611c9e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102f961042e366004611e01565b6000908152600c60205260409020546001600160a01b031690565b610265610457366004611c66565b611482565b60606003805461046b90611f4a565b80601f016020809104026020016040519081016040528092919081815260200182805461049790611f4a565b80156104e45780601f106104b9576101008083540402835291602001916104e4565b820191906000526020600020905b8154815290600101906020018083116104c757829003601f168201915b5050505050905090565b60006104fb33848461151a565b50600192915050565b600061051184848461163e565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561059b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105a8853385840361151a565b506001949350505050565b336000908152600d602052604090205461061b5760405162461bcd60e51b8152602060048201526024808201527f4d7573742068617665206174206c65617374206f6e6520746f6b656e207374616044820152636b65642160e01b6064820152608401610592565b336000908152600d60205260408120545b801561076057336000908152600d6020526040812061064c600184611f1c565b8154811061066a57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600a546040516323b872dd60e01b8152306004820152336024820152604481018390529192506001600160a01b0316906323b872dd90606401600060405180830381600087803b1580156106c957600080fd5b505af11580156106dd573d6000803e3d6000fd5b50506007546000848152600b60205260409020549092506106ff915042611f1c565b6107099190611efd565b6107139084611ee5565b925061071f338261180d565b6009546000918252600c602052604090912080546001600160a01b0319166001600160a01b039092169190911790558061075881611f33565b91505061062c565b5061076b3382611898565b50565b6001600160a01b0381166000908152600d60209081526040808320805482518185028101850190935280835284938301828280156107cb57602002820191906000526020600020905b8154815260200190600101908083116107b7575b505050505090506000805b825181101561085057600754600b600085848151811061080657634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002054426108289190611f1c565b6108329190611efd565b61083c9083611ee5565b91508061084881611f85565b9150506107d6565b509392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104fb91859061088f908690611ee5565b61151a565b61076b3382611977565b6000805b8251811015610b1e57336001600160a01b0316600c60008584815181106108d957634e487b7160e01b600052603260045260246000fd5b6020908102919091018101518252810191909152604001600020546001600160a01b03161461095a5760405162461bcd60e51b815260206004820152602760248201527f4d6573736167652053656e64657220776173206e6f74206f726967696e616c206044820152667374616b65722160c81b6064820152608401610592565b600a5483516001600160a01b03909116906323b872dd903090339087908690811061099557634e487b7160e01b600052603260045260246000fd5b60209081029190910101516040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b1580156109ef57600080fd5b505af1158015610a03573d6000803e3d6000fd5b50505050600754600b6000858481518110610a2e57634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000205442610a509190611f1c565b610a5a9190611efd565b610a649083611ee5565b9150610a9733848381518110610a8a57634e487b7160e01b600052603260045260246000fd5b602002602001015161180d565b600960009054906101000a90046001600160a01b0316600c6000858481518110610ad157634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508080610b1690611f85565b9150506108a2565b50610b293382611898565b5050565b6009546000828152600c602052604081205490916001600160a01b0391821691161415610b935760405162461bcd60e51b8152602060048201526014602482015273546f6b656e206973206e6f74207374616b65642160601b6044820152606401610592565b6000828152600b6020526040812054610bac9042611f1c565b905060075481610bbc9190611efd565b9392505050565b6001600160a01b0381166000908152600d6020908152604091829020805483518184028101840190945280845260609392830182828015610c2357602002820191906000526020600020905b815481526020019060010190808311610c0f575b50505050509050919050565b6000818152600c60205260409020546001600160a01b03163314610c955760405162461bcd60e51b815260206004820152601e60248201527f546f6b656e206973206e6f7420636c61696d61626c6520627920796f752100006044820152606401610592565b6008544210610cde5760405162461bcd60e51b8152602060048201526015602482015274436c61696d20706572696f64206973206f7665722160581b6044820152606401610592565b6007546000828152600b6020526040902054610d0f913391610d009042611f1c565b610d0a9190611efd565b611898565b6000908152600b60205260409020429055565b6005546001600160a01b03163314610d4c5760405162461bcd60e51b815260040161059290611eb0565b610d566000611ac5565b565b6005546001600160a01b03163314610d825760405162461bcd60e51b815260040161059290611eb0565b600a80546001600160a01b0383166001600160a01b031990911617905550565b6000610dae83336103f5565b905081811015610e0c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610592565b610e19833384840361151a565b610e238383611977565b505050565b60606004805461046b90611f4a565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610eb95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610592565b610ec6338585840361151a565b5060019392505050565b60006104fb33848461163e565b6008544210610f265760405162461bcd60e51b8152602060048201526015602482015274436c61696d20706572696f64206973206f7665722160581b6044820152606401610592565b336000908152600d6020908152604080832080548251818502810185019093528083529192909190830182828015610f7d57602002820191906000526020600020905b815481526020019060010190808311610f69575b505050505090506000805b8251811015610b1e57336001600160a01b0316600c6000858481518110610fbf57634e487b7160e01b600052603260045260246000fd5b6020908102919091018101518252810191909152604001600020546001600160a01b0316146110305760405162461bcd60e51b815260206004820152601e60248201527f546f6b656e206973206e6f7420636c61696d61626c6520627920796f752100006044820152606401610592565b600754600b600085848151811061105757634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002054426110799190611f1c565b6110839190611efd565b61108d9083611ee5565b915042600b60008584815181106110b457634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000208190555080806110d990611f85565b915050610f88565b6006548151336000908152600d60205260409020546111009190611ee5565b111561115c5760405162461bcd60e51b815260206004820152602560248201527f4d7573742068617665206c657373207468616e20313020746f6b656e73207374604482015264616b65642160d81b6064820152608401610592565b60005b8151811015610b2957600a54825133916001600160a01b031690636352211e9085908590811061119f57634e487b7160e01b600052603260045260246000fd5b60200260200101516040518263ffffffff1660e01b81526004016111c591815260200190565b60206040518083038186803b1580156111dd57600080fd5b505afa1580156111f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112159190611c82565b6001600160a01b0316148015611283575060095482516001600160a01b0390911690600c9060009085908590811061125d57634e487b7160e01b600052603260045260246000fd5b6020908102919091018101518252810191909152604001600020546001600160a01b0316145b6112cf5760405162461bcd60e51b815260206004820152601e60248201527f546f6b656e206d757374206265207374616b61626c6520627920796f752100006044820152606401610592565b600a5482516001600160a01b03909116906323b872dd903390309086908690811061130a57634e487b7160e01b600052603260045260246000fd5b60209081029190910101516040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b15801561136457600080fd5b505af1158015611378573d6000803e3d6000fd5b5050336000908152600d602052604090208451909250849150839081106113af57634e487b7160e01b600052603260045260246000fd5b602090810291909101810151825460018101845560009384529183209091015582514291600b918590859081106113f657634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000208190555033600c600084848151811061143557634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550808061147a90611f85565b91505061115f565b6005546001600160a01b031633146114ac5760405162461bcd60e51b815260040161059290611eb0565b6001600160a01b0381166115115760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610592565b61076b81611ac5565b6001600160a01b03831661157c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610592565b6001600160a01b0382166115dd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610592565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116a25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610592565b6001600160a01b0382166117045760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610592565b6001600160a01b0383166000908152602081905260409020548181101561177c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610592565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906117b3908490611ee5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117ff91815260200190565b60405180910390a350505050565b60005b6001600160a01b0383166000908152600d6020526040902054811015610e23576001600160a01b0383166000908152600d6020526040902080548391908390811061186b57634e487b7160e01b600052603260045260246000fd5b90600052602060002001541415611886576118868382611b17565b8061189081611f85565b915050611810565b6001600160a01b0382166118ee5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610592565b80600260008282546119009190611ee5565b90915550506001600160a01b0382166000908152602081905260408120805483929061192d908490611ee5565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166119d75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610592565b6001600160a01b03821660009081526020819052604090205481811015611a4b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610592565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611a7a908490611f1c565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600d60205260409020548110611b3a575050565b805b6001600160a01b0383166000908152600d6020526040902054611b6190600190611f1c565b811015611c16576001600160a01b0383166000908152600d60205260409020611b8b826001611ee5565b81548110611ba957634e487b7160e01b600052603260045260246000fd5b9060005260206000200154600d6000856001600160a01b03166001600160a01b031681526020019081526020016000208281548110611bf857634e487b7160e01b600052603260045260246000fd5b60009182526020909120015580611c0e81611f85565b915050611b3c565b506001600160a01b0382166000908152600d60205260409020805480611c4c57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590555050565b600060208284031215611c77578081fd5b8135610bbc81611fcc565b600060208284031215611c93578081fd5b8151610bbc81611fcc565b60008060408385031215611cb0578081fd5b8235611cbb81611fcc565b91506020830135611ccb81611fcc565b809150509250929050565b600080600060608486031215611cea578081fd5b8335611cf581611fcc565b92506020840135611d0581611fcc565b929592945050506040919091013590565b60008060408385031215611d28578182fd5b8235611d3381611fcc565b946020939093013593505050565b60006020808385031215611d53578182fd5b823567ffffffffffffffff80821115611d6a578384fd5b818501915085601f830112611d7d578384fd5b813581811115611d8f57611d8f611fb6565b8060051b604051601f19603f83011681018181108582111715611db457611db4611fb6565b604052828152858101935084860182860187018a1015611dd2578788fd5b8795505b83861015611df4578035855260019590950194938601938601611dd6565b5098975050505050505050565b600060208284031215611e12578081fd5b5035919050565b6020808252825182820181905260009190848201906040850190845b81811015611e5157835183529284019291840191600101611e35565b50909695505050505050565b6000602080835283518082850152825b81811015611e8957858101830151858201604001528201611e6d565b81811115611e9a5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611ef857611ef8611fa0565b500190565b6000816000190483118215151615611f1757611f17611fa0565b500290565b600082821015611f2e57611f2e611fa0565b500390565b600081611f4257611f42611fa0565b506000190190565b600181811c90821680611f5e57607f821691505b60208210811415611f7f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f9957611f99611fa0565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461076b57600080fdfea2646970667358221220db22207afbfd87f786b087703401ee56c87d99e5db766291c093657e4f473a3b64736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a457c2d7116100a2578063d9ffad4711610071578063d9ffad47146103d4578063dd62ed3e146103e7578063e3c998fe14610420578063f2fde38b1461044957600080fd5b8063a457c2d71461039d578063a9059cbb146103b0578063ba7e7662146103c3578063d1058e59146103cc57600080fd5b806379cc6790116100de57806379cc6790146103685780638ab8fab31461037b5780638da5cb5b1461038457806395d89b411461039557600080fd5b806370a0823114610324578063715018a61461034d57806372d40ff11461035557600080fd5b8063362a3fad1161017c578063515ec1051161014b578063515ec105146102b357806352eb7796146102c65780635666b7ad146102e65780635e1f1e2a1461031157600080fd5b8063362a3fad14610267578063395093511461027a57806342966c681461028d57806348aa1936146102a057600080fd5b80632209d38c116101b85780632209d38c1461023257806323b872dd1461023b578063313ce5671461024e57806335322f371461025d57600080fd5b806306fdde03146101df578063095ea7b3146101fd57806318160ddd14610220575b600080fd5b6101e761045c565b6040516101f49190611e5d565b60405180910390f35b61021061020b366004611d16565b6104ee565b60405190151581526020016101f4565b6002545b6040519081526020016101f4565b61022460085481565b610210610249366004611cd6565b610504565b604051601281526020016101f4565b6102656105b3565b005b610224610275366004611c66565b61076e565b610210610288366004611d16565b610858565b61026561029b366004611e01565b610894565b6102656102ae366004611d41565b61089e565b6102246102c1366004611e01565b610b2d565b6102d96102d4366004611c66565b610bc3565b6040516101f49190611e19565b600a546102f9906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b61026561031f366004611e01565b610c2f565b610224610332366004611c66565b6001600160a01b031660009081526020819052604090205490565b610265610d22565b610265610363366004611c66565b610d58565b610265610376366004611d16565b610da2565b61022460065481565b6005546001600160a01b03166102f9565b6101e7610e28565b6102106103ab366004611d16565b610e37565b6102106103be366004611d16565b610ed0565b61022460075481565b610265610edd565b6102656103e2366004611d41565b6110e1565b6102246103f5366004611c9e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102f961042e366004611e01565b6000908152600c60205260409020546001600160a01b031690565b610265610457366004611c66565b611482565b60606003805461046b90611f4a565b80601f016020809104026020016040519081016040528092919081815260200182805461049790611f4a565b80156104e45780601f106104b9576101008083540402835291602001916104e4565b820191906000526020600020905b8154815290600101906020018083116104c757829003601f168201915b5050505050905090565b60006104fb33848461151a565b50600192915050565b600061051184848461163e565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561059b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105a8853385840361151a565b506001949350505050565b336000908152600d602052604090205461061b5760405162461bcd60e51b8152602060048201526024808201527f4d7573742068617665206174206c65617374206f6e6520746f6b656e207374616044820152636b65642160e01b6064820152608401610592565b336000908152600d60205260408120545b801561076057336000908152600d6020526040812061064c600184611f1c565b8154811061066a57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600a546040516323b872dd60e01b8152306004820152336024820152604481018390529192506001600160a01b0316906323b872dd90606401600060405180830381600087803b1580156106c957600080fd5b505af11580156106dd573d6000803e3d6000fd5b50506007546000848152600b60205260409020549092506106ff915042611f1c565b6107099190611efd565b6107139084611ee5565b925061071f338261180d565b6009546000918252600c602052604090912080546001600160a01b0319166001600160a01b039092169190911790558061075881611f33565b91505061062c565b5061076b3382611898565b50565b6001600160a01b0381166000908152600d60209081526040808320805482518185028101850190935280835284938301828280156107cb57602002820191906000526020600020905b8154815260200190600101908083116107b7575b505050505090506000805b825181101561085057600754600b600085848151811061080657634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002054426108289190611f1c565b6108329190611efd565b61083c9083611ee5565b91508061084881611f85565b9150506107d6565b509392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104fb91859061088f908690611ee5565b61151a565b61076b3382611977565b6000805b8251811015610b1e57336001600160a01b0316600c60008584815181106108d957634e487b7160e01b600052603260045260246000fd5b6020908102919091018101518252810191909152604001600020546001600160a01b03161461095a5760405162461bcd60e51b815260206004820152602760248201527f4d6573736167652053656e64657220776173206e6f74206f726967696e616c206044820152667374616b65722160c81b6064820152608401610592565b600a5483516001600160a01b03909116906323b872dd903090339087908690811061099557634e487b7160e01b600052603260045260246000fd5b60209081029190910101516040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b1580156109ef57600080fd5b505af1158015610a03573d6000803e3d6000fd5b50505050600754600b6000858481518110610a2e57634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000205442610a509190611f1c565b610a5a9190611efd565b610a649083611ee5565b9150610a9733848381518110610a8a57634e487b7160e01b600052603260045260246000fd5b602002602001015161180d565b600960009054906101000a90046001600160a01b0316600c6000858481518110610ad157634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508080610b1690611f85565b9150506108a2565b50610b293382611898565b5050565b6009546000828152600c602052604081205490916001600160a01b0391821691161415610b935760405162461bcd60e51b8152602060048201526014602482015273546f6b656e206973206e6f74207374616b65642160601b6044820152606401610592565b6000828152600b6020526040812054610bac9042611f1c565b905060075481610bbc9190611efd565b9392505050565b6001600160a01b0381166000908152600d6020908152604091829020805483518184028101840190945280845260609392830182828015610c2357602002820191906000526020600020905b815481526020019060010190808311610c0f575b50505050509050919050565b6000818152600c60205260409020546001600160a01b03163314610c955760405162461bcd60e51b815260206004820152601e60248201527f546f6b656e206973206e6f7420636c61696d61626c6520627920796f752100006044820152606401610592565b6008544210610cde5760405162461bcd60e51b8152602060048201526015602482015274436c61696d20706572696f64206973206f7665722160581b6044820152606401610592565b6007546000828152600b6020526040902054610d0f913391610d009042611f1c565b610d0a9190611efd565b611898565b6000908152600b60205260409020429055565b6005546001600160a01b03163314610d4c5760405162461bcd60e51b815260040161059290611eb0565b610d566000611ac5565b565b6005546001600160a01b03163314610d825760405162461bcd60e51b815260040161059290611eb0565b600a80546001600160a01b0383166001600160a01b031990911617905550565b6000610dae83336103f5565b905081811015610e0c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610592565b610e19833384840361151a565b610e238383611977565b505050565b60606004805461046b90611f4a565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610eb95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610592565b610ec6338585840361151a565b5060019392505050565b60006104fb33848461163e565b6008544210610f265760405162461bcd60e51b8152602060048201526015602482015274436c61696d20706572696f64206973206f7665722160581b6044820152606401610592565b336000908152600d6020908152604080832080548251818502810185019093528083529192909190830182828015610f7d57602002820191906000526020600020905b815481526020019060010190808311610f69575b505050505090506000805b8251811015610b1e57336001600160a01b0316600c6000858481518110610fbf57634e487b7160e01b600052603260045260246000fd5b6020908102919091018101518252810191909152604001600020546001600160a01b0316146110305760405162461bcd60e51b815260206004820152601e60248201527f546f6b656e206973206e6f7420636c61696d61626c6520627920796f752100006044820152606401610592565b600754600b600085848151811061105757634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002054426110799190611f1c565b6110839190611efd565b61108d9083611ee5565b915042600b60008584815181106110b457634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000208190555080806110d990611f85565b915050610f88565b6006548151336000908152600d60205260409020546111009190611ee5565b111561115c5760405162461bcd60e51b815260206004820152602560248201527f4d7573742068617665206c657373207468616e20313020746f6b656e73207374604482015264616b65642160d81b6064820152608401610592565b60005b8151811015610b2957600a54825133916001600160a01b031690636352211e9085908590811061119f57634e487b7160e01b600052603260045260246000fd5b60200260200101516040518263ffffffff1660e01b81526004016111c591815260200190565b60206040518083038186803b1580156111dd57600080fd5b505afa1580156111f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112159190611c82565b6001600160a01b0316148015611283575060095482516001600160a01b0390911690600c9060009085908590811061125d57634e487b7160e01b600052603260045260246000fd5b6020908102919091018101518252810191909152604001600020546001600160a01b0316145b6112cf5760405162461bcd60e51b815260206004820152601e60248201527f546f6b656e206d757374206265207374616b61626c6520627920796f752100006044820152606401610592565b600a5482516001600160a01b03909116906323b872dd903390309086908690811061130a57634e487b7160e01b600052603260045260246000fd5b60209081029190910101516040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b15801561136457600080fd5b505af1158015611378573d6000803e3d6000fd5b5050336000908152600d602052604090208451909250849150839081106113af57634e487b7160e01b600052603260045260246000fd5b602090810291909101810151825460018101845560009384529183209091015582514291600b918590859081106113f657634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000208190555033600c600084848151811061143557634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550808061147a90611f85565b91505061115f565b6005546001600160a01b031633146114ac5760405162461bcd60e51b815260040161059290611eb0565b6001600160a01b0381166115115760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610592565b61076b81611ac5565b6001600160a01b03831661157c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610592565b6001600160a01b0382166115dd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610592565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116a25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610592565b6001600160a01b0382166117045760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610592565b6001600160a01b0383166000908152602081905260409020548181101561177c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610592565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906117b3908490611ee5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117ff91815260200190565b60405180910390a350505050565b60005b6001600160a01b0383166000908152600d6020526040902054811015610e23576001600160a01b0383166000908152600d6020526040902080548391908390811061186b57634e487b7160e01b600052603260045260246000fd5b90600052602060002001541415611886576118868382611b17565b8061189081611f85565b915050611810565b6001600160a01b0382166118ee5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610592565b80600260008282546119009190611ee5565b90915550506001600160a01b0382166000908152602081905260408120805483929061192d908490611ee5565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166119d75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610592565b6001600160a01b03821660009081526020819052604090205481811015611a4b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610592565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611a7a908490611f1c565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600d60205260409020548110611b3a575050565b805b6001600160a01b0383166000908152600d6020526040902054611b6190600190611f1c565b811015611c16576001600160a01b0383166000908152600d60205260409020611b8b826001611ee5565b81548110611ba957634e487b7160e01b600052603260045260246000fd5b9060005260206000200154600d6000856001600160a01b03166001600160a01b031681526020019081526020016000208281548110611bf857634e487b7160e01b600052603260045260246000fd5b60009182526020909120015580611c0e81611f85565b915050611b3c565b506001600160a01b0382166000908152600d60205260409020805480611c4c57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590555050565b600060208284031215611c77578081fd5b8135610bbc81611fcc565b600060208284031215611c93578081fd5b8151610bbc81611fcc565b60008060408385031215611cb0578081fd5b8235611cbb81611fcc565b91506020830135611ccb81611fcc565b809150509250929050565b600080600060608486031215611cea578081fd5b8335611cf581611fcc565b92506020840135611d0581611fcc565b929592945050506040919091013590565b60008060408385031215611d28578182fd5b8235611d3381611fcc565b946020939093013593505050565b60006020808385031215611d53578182fd5b823567ffffffffffffffff80821115611d6a578384fd5b818501915085601f830112611d7d578384fd5b813581811115611d8f57611d8f611fb6565b8060051b604051601f19603f83011681018181108582111715611db457611db4611fb6565b604052828152858101935084860182860187018a1015611dd2578788fd5b8795505b83861015611df4578035855260019590950194938601938601611dd6565b5098975050505050505050565b600060208284031215611e12578081fd5b5035919050565b6020808252825182820181905260009190848201906040850190845b81811015611e5157835183529284019291840191600101611e35565b50909695505050505050565b6000602080835283518082850152825b81811015611e8957858101830151858201604001528201611e6d565b81811115611e9a5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611ef857611ef8611fa0565b500190565b6000816000190483118215151615611f1757611f17611fa0565b500290565b600082821015611f2e57611f2e611fa0565b500390565b600081611f4257611f42611fa0565b506000190190565b600181811c90821680611f5e57607f821691505b60208210811415611f7f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f9957611f99611fa0565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461076b57600080fdfea2646970667358221220db22207afbfd87f786b087703401ee56c87d99e5db766291c093657e4f473a3b64736f6c63430008040033

Deployed Bytecode Sourcemap

33612:6412:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22282:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24449:169;;;;;;:::i;:::-;;:::i;:::-;;;4510:14:1;;4503:22;4485:41;;4473:2;4458:18;24449:169:0;4440:92:1;23402:108:0;23490:12;;23402:108;;;13105:25:1;;;13093:2;13078:18;23402:108:0;13060:76:1;33792:42:0;;;;;;25100:492;;;;;;:::i;:::-;;:::i;23244:93::-;;;23327:2;13283:36:1;;13271:2;13256:18;23244:93:0;13238:87:1;36197:849:0;;;:::i;:::-;;39074:447;;;;;;:::i;:::-;;:::i;26001:215::-;;;;;;:::i;:::-;;:::i;32734:91::-;;;;;;:::i;:::-;;:::i;37054:826::-;;;;;;:::i;:::-;;:::i;39529:368::-;;;;;;:::i;:::-;;:::i;34440:162::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;33916:29::-;;;;;-1:-1:-1;;;;;33916:29:0;;;;;;-1:-1:-1;;;;;3281:32:1;;;3263:51;;3251:2;3236:18;33916:29:0;3218:102:1;37888:455:0;;;;;;:::i;:::-;;:::i;23573:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;23674:18:0;23647:7;23674:18;;;;;;;;;;;;23573:127;16086:94;;;:::i;34295:137::-;;;;;;:::i;:::-;;:::i;33144:368::-;;;;;;:::i;:::-;;:::i;33695:37::-;;;;;;15435:87;15508:6;;-1:-1:-1;;;;;15508:6:0;15435:87;;22501:104;;;:::i;26719:413::-;;;;;;:::i;:::-;;:::i;23913:175::-;;;;;;:::i;:::-;;:::i;33739:46::-;;;;;;38351:715;;;:::i;35291:898::-;;;;;;:::i;:::-;;:::i;24151:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;24267:18:0;;;24240:7;24267:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;24151:151;39905:116;;;;;;:::i;:::-;39962:7;39989:24;;;:15;:24;;;;;;-1:-1:-1;;;;;39989:24:0;;39905:116;16335:192;;;;;;:::i;:::-;;:::i;22282:100::-;22336:13;22369:5;22362:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22282:100;:::o;24449:169::-;24532:4;24549:39;14303:10;24572:7;24581:6;24549:8;:39::i;:::-;-1:-1:-1;24606:4:0;24449:169;;;;:::o;25100:492::-;25240:4;25257:36;25267:6;25275:9;25286:6;25257:9;:36::i;:::-;-1:-1:-1;;;;;25333:19:0;;25306:24;25333:19;;;:11;:19;;;;;;;;14303:10;25333:33;;;;;;;;25385:26;;;;25377:79;;;;-1:-1:-1;;;25377:79:0;;8844:2:1;25377:79:0;;;8826:21:1;8883:2;8863:18;;;8856:30;8922:34;8902:18;;;8895:62;-1:-1:-1;;;8973:18:1;;;8966:38;9021:19;;25377:79:0;;;;;;;;;25492:57;25501:6;14303:10;25542:6;25523:16;:25;25492:8;:57::i;:::-;-1:-1:-1;25580:4:0;;25100:492;-1:-1:-1;;;;25100:492:0:o;36197:849::-;36276:10;36297:1;36259:28;;;:16;:28;;;;;:35;36237:125;;;;-1:-1:-1;;;36237:125:0;;8439:2:1;36237:125:0;;;8421:21:1;8478:2;8458:18;;;8451:30;8517:34;8497:18;;;8490:62;-1:-1:-1;;;8568:18:1;;;8561:34;8612:19;;36237:125:0;8411:226:1;36237:125:0;36444:10;36373:20;36427:28;;;:16;:28;;;;;:35;36410:585;36464:5;;36410:585;;36526:10;36491:15;36509:28;;;:16;:28;;;;;36538:5;36542:1;36538;:5;:::i;:::-;36509:35;;;;;;-1:-1:-1;;;36509:35:0;;;;;;;;;;;;;;;;;;;36569:14;;36561:138;;-1:-1:-1;;;36561:138:0;;36624:4;36561:138;;;3565:34:1;36648:10:0;3615:18:1;;;3608:43;3667:18;;;3660:34;;;36509:35:0;;-1:-1:-1;;;;;;36569:14:0;;36561:36;;3500:18:1;;36561:138:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;36852:14:0;;36800:27;;;;:18;:27;;;;;;36852:14;;-1:-1:-1;36782:45:0;;-1:-1:-1;36782:15:0;:45;:::i;:::-;36781:85;;;;:::i;:::-;36748:119;;:12;:119;:::i;:::-;36716:151;;36884:44;36908:10;36920:7;36884:23;:44::i;:::-;36972:11;;;36945:24;;;:15;:24;;;;;;:38;;-1:-1:-1;;;;;;36945:38:0;-1:-1:-1;;;;;36972:11:0;;;36945:38;;;;;;36471:3;;;;:::i;:::-;;;;36410:585;;;;37007:31;37013:10;37025:12;37007:5;:31::i;:::-;36197:849;:::o;39074:447::-;-1:-1:-1;;;;;39182:24:0;;39134:7;39182:24;;;:16;:24;;;;;;;;39154:52;;;;;;;;;;;;;;;;;39134:7;;39154:52;;39182:24;39154:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39217:20;39259:9;39254:228;39278:8;:15;39274:1;:19;39254:228;;;39455:14;;39399:18;:31;39418:8;39427:1;39418:11;;;;;;-1:-1:-1;;;39418:11:0;;;;;;;;;;;;;;;39399:31;;;;;;;;;;;;39381:15;:49;;;;:::i;:::-;39380:89;;;;:::i;:::-;39347:123;;:12;:123;:::i;:::-;39315:155;-1:-1:-1;39295:3:0;;;;:::i;:::-;;;;39254:228;;;-1:-1:-1;39501:12:0;39074:447;-1:-1:-1;;;39074:447:0:o;26001:215::-;14303:10;26089:4;26138:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;26138:34:0;;;;;;;;;;26089:4;;26106:80;;26129:7;;26138:47;;26175:10;;26138:47;:::i;:::-;26106:8;:80::i;32734:91::-;32790:27;14303:10;32810:6;32790:5;:27::i;37054:826::-;37121:20;37163:9;37158:671;37182:8;:15;37178:1;:19;37158:671;;;37277:10;-1:-1:-1;;;;;37245:42:0;:15;:28;37261:8;37270:1;37261:11;;;;;;-1:-1:-1;;;37261:11:0;;;;;;;;;;;;;;;;;;;;37245:28;;;;;;;;;;-1:-1:-1;37245:28:0;;-1:-1:-1;;;;;37245:28:0;:42;37219:143;;;;-1:-1:-1;;;37219:143:0;;10019:2:1;37219:143:0;;;10001:21:1;10058:2;10038:18;;;10031:30;10097:34;10077:18;;;10070:62;-1:-1:-1;;;10148:18:1;;;10141:37;10195:19;;37219:143:0;9991:229:1;37219:143:0;37387:14;;37495:11;;-1:-1:-1;;;;;37387:14:0;;;;37379:36;;37442:4;;37466:10;;37495:8;;37504:1;;37495:11;;;;-1:-1:-1;;;37495:11:0;;;;;;;;;;;;;;;;;;;37379:142;;-1:-1:-1;;;;;;37379:142:0;;;;;;;-1:-1:-1;;;;;3583:15:1;;;37379:142:0;;;3565:34:1;3635:15;;;;3615:18;;;3608:43;3667:18;;;3660:34;3500:18;;37379:142:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37678:14;;37622:18;:31;37641:8;37650:1;37641:11;;;;;;-1:-1:-1;;;37641:11:0;;;;;;;;;;;;;;;37622:31;;;;;;;;;;;;37604:15;:49;;;;:::i;:::-;37603:89;;;;:::i;:::-;37570:123;;:12;:123;:::i;:::-;37538:155;;37710:48;37734:10;37746:8;37755:1;37746:11;;;;;;-1:-1:-1;;;37746:11:0;;;;;;;;;;;;;;;37710:23;:48::i;:::-;37806:11;;;;;;;;;-1:-1:-1;;;;;37806:11:0;37775:15;:28;37791:8;37800:1;37791:11;;;;;;-1:-1:-1;;;37791:11:0;;;;;;;;;;;;;;;37775:28;;;;;;;;;;;;:42;;;;;-1:-1:-1;;;;;37775:42:0;;;;;-1:-1:-1;;;;;37775:42:0;;;;;;37199:3;;;;;:::i;:::-;;;;37158:671;;;;37841:31;37847:10;37859:12;37841:5;:31::i;:::-;37054:826;;:::o;39529:368::-;39698:11;;39623:7;39670:24;;;:15;:24;;;;;;39623:7;;-1:-1:-1;;;;;39670:24:0;;;39698:11;;39670:39;;39648:109;;;;-1:-1:-1;;;39648:109:0;;12046:2:1;39648:109:0;;;12028:21:1;12085:2;12065:18;;;12058:30;-1:-1:-1;;;12104:18:1;;;12097:50;12164:18;;39648:109:0;12018:170:1;39648:109:0;39770:21;39812:27;;;:18;:27;;;;;;39794:45;;:15;:45;:::i;:::-;39770:69;;39875:14;;39859:13;:30;;;;:::i;:::-;39852:37;39529:368;-1:-1:-1;;;39529:368:0:o;34440:162::-;-1:-1:-1;;;;;34570:24:0;;;;;;:16;:24;;;;;;;;;34563:31;;;;;;;;;;;;;;;;;34529:16;;34563:31;;;34570:24;34563:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34440:162;;;:::o;37888:455::-;37969:24;;;;:15;:24;;;;;;-1:-1:-1;;;;;37969:24:0;37997:10;37969:38;37947:118;;;;-1:-1:-1;;;37947:118:0;;8080:2:1;37947:118:0;;;8062:21:1;8119:2;8099:18;;;8092:30;8158:32;8138:18;;;8131:60;8208:18;;37947:118:0;8052:180:1;37947:118:0;38102:14;;38084:15;:32;38076:66;;;;-1:-1:-1;;;38076:66:0;;6154:2:1;38076:66:0;;;6136:21:1;6193:2;6173:18;;;6166:30;-1:-1:-1;;;6212:18:1;;;6205:51;6273:18;;38076:66:0;6126:171:1;38076:66:0;38251:14;;38220:27;;;;:18;:27;;;;;;38155:122;;38175:10;;38202:45;;:15;:45;:::i;:::-;38201:64;;;;:::i;:::-;38155:5;:122::i;:::-;38290:27;;;;:18;:27;;;;;38320:15;38290:45;;37888:455::o;16086:94::-;15508:6;;-1:-1:-1;;;;;15508:6:0;14303:10;15655:23;15647:68;;;;-1:-1:-1;;;15647:68:0;;;;;;;:::i;:::-;16151:21:::1;16169:1;16151:9;:21::i;:::-;16086:94::o:0;34295:137::-;15508:6;;-1:-1:-1;;;;;15508:6:0;14303:10;15655:23;15647:68;;;;-1:-1:-1;;;15647:68:0;;;;;;;:::i;:::-;34375:14:::1;:32:::0;;-1:-1:-1;;;;;34375:32:0;::::1;-1:-1:-1::0;;;;;;34375:32:0;;::::1;;::::0;;34295:137;:::o;33144:368::-;33221:24;33248:32;33258:7;14303:10;24151:151;:::i;33248:32::-;33221:59;;33319:6;33299:16;:26;;33291:75;;;;-1:-1:-1;;;33291:75:0;;9614:2:1;33291:75:0;;;9596:21:1;9653:2;9633:18;;;9626:30;9692:34;9672:18;;;9665:62;-1:-1:-1;;;9743:18:1;;;9736:34;9787:19;;33291:75:0;9586:226:1;33291:75:0;33402:58;33411:7;14303:10;33453:6;33434:16;:25;33402:8;:58::i;:::-;33482:22;33488:7;33497:6;33482:5;:22::i;:::-;33144:368;;;:::o;22501:104::-;22557:13;22590:7;22583:14;;;;;:::i;26719:413::-;14303:10;26812:4;26856:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;26856:34:0;;;;;;;;;;26909:35;;;;26901:85;;;;-1:-1:-1;;;26901:85:0;;12395:2:1;26901:85:0;;;12377:21:1;12434:2;12414:18;;;12407:30;12473:34;12453:18;;;12446:62;-1:-1:-1;;;12524:18:1;;;12517:35;12569:19;;26901:85:0;12367:227:1;26901:85:0;27022:67;14303:10;27045:7;27073:15;27054:16;:34;27022:8;:67::i;:::-;-1:-1:-1;27120:4:0;;26719:413;-1:-1:-1;;;26719:413:0:o;23913:175::-;23999:4;24016:42;14303:10;24040:9;24051:6;24016:9;:42::i;38351:715::-;38415:14;;38397:15;:32;38389:66;;;;-1:-1:-1;;;38389:66:0;;6154:2:1;38389:66:0;;;6136:21:1;6193:2;6173:18;;;6166:30;-1:-1:-1;;;6212:18:1;;;6205:51;6273:18;;38389:66:0;6126:171:1;38389:66:0;38511:10;38466:25;38494:28;;;:16;:28;;;;;;;;38466:56;;;;;;;;;;;;;;;;;;;38494:28;;38466:56;;;38494:28;38466:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38533:20;38575:9;38570:445;38594:8;:15;38590:1;:19;38570:445;;;38689:10;-1:-1:-1;;;;;38657:42:0;:15;:28;38673:8;38682:1;38673:11;;;;;;-1:-1:-1;;;38673:11:0;;;;;;;;;;;;;;;;;;;;38657:28;;;;;;;;;;-1:-1:-1;38657:28:0;;-1:-1:-1;;;;;38657:28:0;:42;38631:134;;;;-1:-1:-1;;;38631:134:0;;8080:2:1;38631:134:0;;;8062:21:1;8119:2;8099:18;;;8092:30;8158:32;8138:18;;;8131:60;8208:18;;38631:134:0;8052:180:1;38631:134:0;38922:14;;38866:18;:31;38885:8;38894:1;38885:11;;;;;;-1:-1:-1;;;38885:11:0;;;;;;;;;;;;;;;38866:31;;;;;;;;;;;;38848:15;:49;;;;:::i;:::-;38847:89;;;;:::i;:::-;38814:123;;:12;:123;:::i;:::-;38782:155;;38988:15;38954:18;:31;38973:8;38982:1;38973:11;;;;;;-1:-1:-1;;;38973:11:0;;;;;;;;;;;;;;;38954:31;;;;;;;;;;;:49;;;;38611:3;;;;;:::i;:::-;;;;38570:445;;35291:898;35452:17;;35416:15;;35395:10;35378:28;;;;:16;:28;;;;;:35;:53;;35416:15;35378:53;:::i;:::-;:91;;35356:178;;;;-1:-1:-1;;;35356:178:0;;11235:2:1;35356:178:0;;;11217:21:1;11274:2;11254:18;;;11247:30;11313:34;11293:18;;;11286:62;-1:-1:-1;;;11364:18:1;;;11357:35;11409:19;;35356:178:0;11207:227:1;35356:178:0;35552:9;35547:635;35571:8;:15;35567:1;:19;35547:635;;;35642:14;;35666:11;;35682:10;;-1:-1:-1;;;;;35642:14:0;;35634:31;;35666:8;;35675:1;;35666:11;;;;-1:-1:-1;;;35666:11:0;;;;;;;;;;;;;;;35634:44;;;;;;;;;;;;;13105:25:1;;13093:2;13078:18;;13060:76;35634:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;35634:58:0;;:126;;;;-1:-1:-1;35749:11:0;;35733;;-1:-1:-1;;;;;35749:11:0;;;;35717:15;;35749:11;;35733:8;;35742:1;;35733:11;;;;-1:-1:-1;;;35733:11:0;;;;;;;;;;;;;;;;;;;;35717:28;;;;;;;;;;-1:-1:-1;35717:28:0;;-1:-1:-1;;;;;35717:28:0;:43;35634:126;35608:218;;;;-1:-1:-1;;;35608:218:0;;7721:2:1;35608:218:0;;;7703:21:1;7760:2;7740:18;;;7733:30;7799:32;7779:18;;;7772:60;7849:18;;35608:218:0;7693:180:1;35608:218:0;35851:14;;35959:11;;-1:-1:-1;;;;;35851:14:0;;;;35843:36;;35898:10;;35935:4;;35959:8;;35968:1;;35959:11;;;;-1:-1:-1;;;35959:11:0;;;;;;;;;;;;;;;;;;;35843:142;;-1:-1:-1;;;;;;35843:142:0;;;;;;;-1:-1:-1;;;;;3583:15:1;;;35843:142:0;;;3565:34:1;3635:15;;;;3615:18;;;3608:43;3667:18;;;3660:34;3500:18;;35843:142:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;36019:10:0;36002:28;;;;:16;:28;;;;;36036:11;;36002:28;;-1:-1:-1;36036:8:0;;-1:-1:-1;36045:1:0;;36036:11;;;;-1:-1:-1;;;36036:11:0;;;;;;;;;;;;;;;;;;;;36002:46;;;;;;;-1:-1:-1;36002:46:0;;;;;;;;;;36084:11;;36099:15;;36065:18;;36084:8;;36093:1;;36084:11;;;;-1:-1:-1;;;36084:11:0;;;;;;;;;;;;;;;36065:31;;;;;;;;;;;:49;;;;36160:10;36129:15;:28;36145:8;36154:1;36145:11;;;;;;-1:-1:-1;;;36145:11:0;;;;;;;;;;;;;;;36129:28;;;;;;;;;;;;:41;;;;;-1:-1:-1;;;;;36129:41:0;;;;;-1:-1:-1;;;;;36129:41:0;;;;;;35588:3;;;;;:::i;:::-;;;;35547:635;;16335:192;15508:6;;-1:-1:-1;;;;;15508:6:0;14303:10;15655:23;15647:68;;;;-1:-1:-1;;;15647:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16424:22:0;::::1;16416:73;;;::::0;-1:-1:-1;;;16416:73:0;;6504:2:1;16416:73:0::1;::::0;::::1;6486:21:1::0;6543:2;6523:18;;;6516:30;6582:34;6562:18;;;6555:62;-1:-1:-1;;;6633:18:1;;;6626:36;6679:19;;16416:73:0::1;6476:228:1::0;16416:73:0::1;16500:19;16510:8;16500:9;:19::i;30403:380::-:0;-1:-1:-1;;;;;30539:19:0;;30531:68;;;;-1:-1:-1;;;30531:68:0;;11641:2:1;30531:68:0;;;11623:21:1;11680:2;11660:18;;;11653:30;11719:34;11699:18;;;11692:62;-1:-1:-1;;;11770:18:1;;;11763:34;11814:19;;30531:68:0;11613:226:1;30531:68:0;-1:-1:-1;;;;;30618:21:0;;30610:68;;;;-1:-1:-1;;;30610:68:0;;6911:2:1;30610:68:0;;;6893:21:1;6950:2;6930:18;;;6923:30;6989:34;6969:18;;;6962:62;-1:-1:-1;;;7040:18:1;;;7033:32;7082:19;;30610:68:0;6883:224:1;30610:68:0;-1:-1:-1;;;;;30691:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;30743:32;;13105:25:1;;;30743:32:0;;13078:18:1;30743:32:0;;;;;;;30403:380;;;:::o;27622:733::-;-1:-1:-1;;;;;27762:20:0;;27754:70;;;;-1:-1:-1;;;27754:70:0;;10829:2:1;27754:70:0;;;10811:21:1;10868:2;10848:18;;;10841:30;10907:34;10887:18;;;10880:62;-1:-1:-1;;;10958:18:1;;;10951:35;11003:19;;27754:70:0;10801:227:1;27754:70:0;-1:-1:-1;;;;;27843:23:0;;27835:71;;;;-1:-1:-1;;;27835:71:0;;5347:2:1;27835:71:0;;;5329:21:1;5386:2;5366:18;;;5359:30;5425:34;5405:18;;;5398:62;-1:-1:-1;;;5476:18:1;;;5469:33;5519:19;;27835:71:0;5319:225:1;27835:71:0;-1:-1:-1;;;;;28003:17:0;;27979:21;28003:17;;;;;;;;;;;28039:23;;;;28031:74;;;;-1:-1:-1;;;28031:74:0;;7314:2:1;28031:74:0;;;7296:21:1;7353:2;7333:18;;;7326:30;7392:34;7372:18;;;7365:62;-1:-1:-1;;;7443:18:1;;;7436:36;7489:19;;28031:74:0;7286:228:1;28031:74:0;-1:-1:-1;;;;;28141:17:0;;;:9;:17;;;;;;;;;;;28161:22;;;28141:42;;28205:20;;;;;;;;:30;;28177:6;;28141:9;28205:30;;28177:6;;28205:30;:::i;:::-;;;;;;;;28270:9;-1:-1:-1;;;;;28253:35:0;28262:6;-1:-1:-1;;;;;28253:35:0;;28281:6;28253:35;;;;13105:25:1;;13093:2;13078:18;;13060:76;28253:35:0;;;;;;;;27622:733;;;;:::o;34956:327::-;35047:9;35042:234;-1:-1:-1;;;;;35066:24:0;;;;;;:16;:24;;;;;:31;35062:35;;35042:234;;;-1:-1:-1;;;;;35123:24:0;;;;;;:16;:24;;;;;:27;;35154:7;;35123:24;35148:1;;35123:27;;;;-1:-1:-1;;;35123:27:0;;;;;;;;;;;;;;;;;:38;35119:146;;;35232:17;35239:6;35247:1;35232:6;:17::i;:::-;35099:3;;;;:::i;:::-;;;;35042:234;;28642:399;-1:-1:-1;;;;;28726:21:0;;28718:65;;;;-1:-1:-1;;;28718:65:0;;12801:2:1;28718:65:0;;;12783:21:1;12840:2;12820:18;;;12813:30;12879:33;12859:18;;;12852:61;12930:18;;28718:65:0;12773:181:1;28718:65:0;28874:6;28858:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;28891:18:0;;:9;:18;;;;;;;;;;:28;;28913:6;;28891:9;:28;;28913:6;;28891:28;:::i;:::-;;;;-1:-1:-1;;28935:37:0;;13105:25:1;;;-1:-1:-1;;;;;28935:37:0;;;28952:1;;28935:37;;13093:2:1;13078:18;28935:37:0;;;;;;;37054:826;;:::o;29374:591::-;-1:-1:-1;;;;;29458:21:0;;29450:67;;;;-1:-1:-1;;;29450:67:0;;10427:2:1;29450:67:0;;;10409:21:1;10466:2;10446:18;;;10439:30;10505:34;10485:18;;;10478:62;-1:-1:-1;;;10556:18:1;;;10549:31;10597:19;;29450:67:0;10399:223:1;29450:67:0;-1:-1:-1;;;;;29617:18:0;;29592:22;29617:18;;;;;;;;;;;29654:24;;;;29646:71;;;;-1:-1:-1;;;29646:71:0;;5751:2:1;29646:71:0;;;5733:21:1;5790:2;5770:18;;;5763:30;5829:34;5809:18;;;5802:62;-1:-1:-1;;;5880:18:1;;;5873:32;5922:19;;29646:71:0;5723:224:1;29646:71:0;-1:-1:-1;;;;;29753:18:0;;:9;:18;;;;;;;;;;29774:23;;;29753:44;;29819:12;:22;;29791:6;;29753:9;29819:22;;29791:6;;29819:22;:::i;:::-;;;;-1:-1:-1;;29859:37:0;;13105:25:1;;;29885:1:0;;-1:-1:-1;;;;;29859:37:0;;;;;13093:2:1;13078:18;29859:37:0;;;;;;;33144:368;;;:::o;16535:173::-;16610:6;;;-1:-1:-1;;;;;16627:17:0;;;-1:-1:-1;;;;;;16627:17:0;;;;;;;16660:40;;16610:6;;;16627:17;16610:6;;16660:40;;16591:16;;16660:40;16535:173;;:::o;34610:338::-;-1:-1:-1;;;;;34690:24:0;;;;;;:16;:24;;;;;:31;34681:40;;34677:53;;34610:338;;:::o;34677:53::-;34759:5;34742:158;-1:-1:-1;;;;;34770:24:0;;;;;;:16;:24;;;;;:31;:35;;34804:1;;34770:35;:::i;:::-;34766:1;:39;34742:158;;;-1:-1:-1;;;;;34857:24:0;;;;;;:16;:24;;;;;34882:5;:1;34886;34882:5;:::i;:::-;34857:31;;;;;;-1:-1:-1;;;34857:31:0;;;;;;;;;;;;;;;;;34827:16;:24;34844:6;-1:-1:-1;;;;;34827:24:0;-1:-1:-1;;;;;34827:24:0;;;;;;;;;;;;34852:1;34827:27;;;;;;-1:-1:-1;;;34827:27:0;;;;;;;;;;;;;;;;;;:61;34807:3;;;;:::i;:::-;;;;34742:158;;;-1:-1:-1;;;;;;34910:24:0;;;;;;:16;:24;;;;;:30;;;;;-1:-1:-1;;;34910:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;34610:338;;:::o;14:257:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;276:261::-;346:6;399:2;387:9;378:7;374:23;370:32;367:2;;;420:6;412;405:22;367:2;457:9;451:16;476:31;501:5;476:31;:::i;542:398::-;610:6;618;671:2;659:9;650:7;646:23;642:32;639:2;;;692:6;684;677:22;639:2;736:9;723:23;755:31;780:5;755:31;:::i;:::-;805:5;-1:-1:-1;862:2:1;847:18;;834:32;875:33;834:32;875:33;:::i;:::-;927:7;917:17;;;629:311;;;;;:::o;945:466::-;1022:6;1030;1038;1091:2;1079:9;1070:7;1066:23;1062:32;1059:2;;;1112:6;1104;1097:22;1059:2;1156:9;1143:23;1175:31;1200:5;1175:31;:::i;:::-;1225:5;-1:-1:-1;1282:2:1;1267:18;;1254:32;1295:33;1254:32;1295:33;:::i;:::-;1049:362;;1347:7;;-1:-1:-1;;;1401:2:1;1386:18;;;;1373:32;;1049:362::o;1416:325::-;1484:6;1492;1545:2;1533:9;1524:7;1520:23;1516:32;1513:2;;;1566:6;1558;1551:22;1513:2;1610:9;1597:23;1629:31;1654:5;1629:31;:::i;:::-;1679:5;1731:2;1716:18;;;;1703:32;;-1:-1:-1;;;1503:238:1:o;1746:1171::-;1830:6;1861:2;1904;1892:9;1883:7;1879:23;1875:32;1872:2;;;1925:6;1917;1910:22;1872:2;1970:9;1957:23;1999:18;2040:2;2032:6;2029:14;2026:2;;;2061:6;2053;2046:22;2026:2;2104:6;2093:9;2089:22;2079:32;;2149:7;2142:4;2138:2;2134:13;2130:27;2120:2;;2176:6;2168;2161:22;2120:2;2217;2204:16;2239:2;2235;2232:10;2229:2;;;2245:18;;:::i;:::-;2291:2;2288:1;2284:10;2323:2;2317:9;2386:2;2382:7;2377:2;2373;2369:11;2365:25;2357:6;2353:38;2441:6;2429:10;2426:22;2421:2;2409:10;2406:18;2403:46;2400:2;;;2452:18;;:::i;:::-;2488:2;2481:22;2538:18;;;2572:15;;;;-1:-1:-1;2607:11:1;;;2637;;;2633:20;;2630:33;-1:-1:-1;2627:2:1;;;2681:6;2673;2666:22;2627:2;2708:6;2699:15;;2723:163;2737:2;2734:1;2731:9;2723:163;;;2794:17;;2782:30;;2755:1;2748:9;;;;;2832:12;;;;2864;;2723:163;;;-1:-1:-1;2905:6:1;1841:1076;-1:-1:-1;;;;;;;;1841:1076:1:o;2922:190::-;2981:6;3034:2;3022:9;3013:7;3009:23;3005:32;3002:2;;;3055:6;3047;3040:22;3002:2;-1:-1:-1;3083:23:1;;2992:120;-1:-1:-1;2992:120:1:o;3705:635::-;3876:2;3928:21;;;3998:13;;3901:18;;;4020:22;;;3847:4;;3876:2;4099:15;;;;4073:2;4058:18;;;3847:4;4145:169;4159:6;4156:1;4153:13;4145:169;;;4220:13;;4208:26;;4289:15;;;;4254:12;;;;4181:1;4174:9;4145:169;;;-1:-1:-1;4331:3:1;;3856:484;-1:-1:-1;;;;;;3856:484:1:o;4537:603::-;4649:4;4678:2;4707;4696:9;4689:21;4739:6;4733:13;4782:6;4777:2;4766:9;4762:18;4755:34;4807:4;4820:140;4834:6;4831:1;4828:13;4820:140;;;4929:14;;;4925:23;;4919:30;4895:17;;;4914:2;4891:26;4884:66;4849:10;;4820:140;;;4978:6;4975:1;4972:13;4969:2;;;5048:4;5043:2;5034:6;5023:9;5019:22;5015:31;5008:45;4969:2;-1:-1:-1;5124:2:1;5103:15;-1:-1:-1;;5099:29:1;5084:45;;;;5131:2;5080:54;;4658:482;-1:-1:-1;;;4658:482:1:o;9051:356::-;9253:2;9235:21;;;9272:18;;;9265:30;9331:34;9326:2;9311:18;;9304:62;9398:2;9383:18;;9225:182::o;13330:128::-;13370:3;13401:1;13397:6;13394:1;13391:13;13388:2;;;13407:18;;:::i;:::-;-1:-1:-1;13443:9:1;;13378:80::o;13463:168::-;13503:7;13569:1;13565;13561:6;13557:14;13554:1;13551:21;13546:1;13539:9;13532:17;13528:45;13525:2;;;13576:18;;:::i;:::-;-1:-1:-1;13616:9:1;;13515:116::o;13636:125::-;13676:4;13704:1;13701;13698:8;13695:2;;;13709:18;;:::i;:::-;-1:-1:-1;13746:9:1;;13685:76::o;13766:136::-;13805:3;13833:5;13823:2;;13842:18;;:::i;:::-;-1:-1:-1;;;13878:18:1;;13813:89::o;13907:380::-;13986:1;13982:12;;;;14029;;;14050:2;;14104:4;14096:6;14092:17;14082:27;;14050:2;14157;14149:6;14146:14;14126:18;14123:38;14120:2;;;14203:10;14198:3;14194:20;14191:1;14184:31;14238:4;14235:1;14228:15;14266:4;14263:1;14256:15;14120:2;;13962:325;;;:::o;14292:135::-;14331:3;-1:-1:-1;;14352:17:1;;14349:2;;;14372:18;;:::i;:::-;-1:-1:-1;14419:1:1;14408:13;;14339:88::o;14432:127::-;14493:10;14488:3;14484:20;14481:1;14474:31;14524:4;14521:1;14514:15;14548:4;14545:1;14538:15;14564:127;14625:10;14620:3;14616:20;14613:1;14606:31;14656:4;14653:1;14646:15;14680:4;14677:1;14670:15;14696:131;-1:-1:-1;;;;;14771:31:1;;14761:42;;14751:2;;14817:1;14814;14807:12

Swarm Source

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