ETH Price: $3,178.73 (+1.44%)
Gas: 9 Gwei

Token

PartyUnicorn (PartyUnicorn)
 

Overview

Max Total Supply

11 PartyUnicorn

Holders

8

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PartyUnicorn
0x28c22b44a04542010cb9d72e562f2bf4cddc2de5
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:
PartyUnicorn

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 17 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 2 of 17 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 3 of 17 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 4 of 17 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 5 of 17 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` 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 tokenId
    ) 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.
     * - `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 tokenId
    ) internal virtual {}
}

File 6 of 17 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

File 7 of 17 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 8 of 17 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 9 of 17 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

    /**
     * @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 10 of 17 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 11 of 17 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 12 of 17 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 13 of 17 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 14 of 17 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 15 of 17 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 16 of 17 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 17 of 17 : partyUnicorn.sol
pragma solidity >=0.6.0 <0.8.9;
pragma experimental ABIEncoderV2;
//SPDX-License-Identifier: MIT

//import "hardhat/console.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

//learn more: https://docs.openzeppelin.com/contracts/3.x/erc721

// GET LISTED ON OPENSEA: https://testnets.opensea.io/get-listed/step-two

interface IRandom {
    function updateRandomIndex() external;

    function getSomeRandomNumber(uint256 _seed, uint256 _limit)
        external
        view
        returns (uint16);
}

interface ISign {
    function updateRandomIndex() external;

    function verifyTokenForAddress(
        string calldata _salt,
        bytes calldata _token,
        address _address
    ) external view returns (bool);
}

contract PartyUnicorn is ERC721Enumerable, Ownable {
    using Strings for uint256;

    uint16 public version = 24;
    uint256 public MAX_TOKENS = 3333;
    uint256 public constant MINT_PER_TX_LIMIT = 10;

    uint256 public tokensMinted = 0;
    uint16 public phase = 0;
    bool private _paused = true;
    bool public revealed = false;
    string public notRevealedUri = "ipfs://QmRkuJFgDx8KUpTWzKcg4uCrwdbY4rYLox3TSZ6BaEJ5kU";

    mapping(uint16 => uint256) public phasePrice;

    IRandom public random;
    ISign public sign;

    string private _apiURI = "ipfs://QmZoBE1sGN6LRepgyH5cyW9aWqYfCC6oVh7Qt4sNyDcj8g/";

    // mapping(address => uint) private _whiteList;
    mapping(address => uint256) private _freeList;

    mapping(uint16 => bool) private _isQueen;

    uint16[] private _availableTokens;

    constructor() ERC721("PartyUnicorn", "PartyUnicorn") {
        // Phase 1 is available in the beginning
        switchToSalePhase(0, true);
        //switchToSalePhase(1, true);

        //Set default price for each phase
        phasePrice[0] = 0.085 ether;
        phasePrice[1] = 0.125 ether;
        phasePrice[2] = 0.15 ether;
        phasePrice[3] = 0.175 ether;
    }

    function paused() public view virtual returns (bool) {
        return _paused;
    }

    function getAvaTokenIds() public view returns (uint16[] memory) {
        uint16[] memory b = new uint16[](_availableTokens.length);
        for (uint256 i = 0; i < _availableTokens.length; i++) {
            b[i] = _availableTokens[i];
        }
        return b;
    }

    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    function setPaused(bool _state) external {
        _paused = _state;
    }

    function addAvailableTokens(uint16 _from, uint16 _to) public onlyOwner {
        internalAddTokens(_from, _to);
    }

    function internalAddTokens(uint16 _from, uint16 _to) internal {
        for (uint16 i = _from; i <= _to; i++) {
            _availableTokens.push(i);
        }
    }

    function switchToSalePhase(uint16 _phase, bool _setTokens)
        public
        onlyOwner
    {
        phase = _phase;

        if (!_setTokens) {
            return;
        }

        if (phase == 0) {
            internalAddTokens(1, 333);
        } else if (phase == 1) {
            internalAddTokens(334, 1333);
        } else if (phase == 2) {
            internalAddTokens(1334, 2333);
        } else if (phase == 3) {
            internalAddTokens(2334, 3333);
        }
    }

    function giveAway(uint256 _amount, address _address) public onlyOwner {
        require(tokensMinted + _amount <= MAX_TOKENS, "All tokens minted");
        require(
            _availableTokens.length > 0,
            "All tokens for this Phase are already sold"
        );

        tokensMinted += _amount;
        for (uint256 i = 0; i < _amount; i++) {
            uint16 tokenId = getTokenToBeMinted();
            _safeMint(_address, tokenId);
        }
    }

    // function addFreeList(uint _amount, address _address) public onlyOwner {
    //     _freeList[_address]= _amount;
    // }

    // function getUserFreeListAmount(address add) public view returns(uint){
    //     uint count = _freeList[add];
    //     return count;
    // }

    // modifier chekAndUpateFL(uint _mint_amount){

    //     require(_freeList[msg.sender]>0, "no free mint quota.");
    //     require(_freeList[msg.sender]>=_mint_amount, "Exceed free mint");

    //     _freeList[msg.sender]=_freeList[msg.sender]-_mint_amount;

    //     _;
    // }

    // function freeMint(uint _amount) public payable whenNotPaused chekAndUpateFL(_amount){
    //     require(msg.value == 0, "free!");
    //     specialMint(_amount);
    // }

    // function whiteListMint(string calldata _salt, bytes calldata _token, uint256 _amount)
    //     public
    //     payable
    //     whenNotPaused
    // {
    //     require(
    //         sign.verifyTokenForAddress(_salt, _token, msg.sender),
    //         "Not in whitelist"
    //     );
    //     require(tx.origin == msg.sender, "Only EOA");
    //     require(tokensMinted + _amount <= MAX_TOKENS, "All tokens minted");
    //     require(
    //         _availableTokens.length > 0,
    //         "All tokens for this Phase are already sold"
    //     );
    //     require(
    //         _amount > 0 && _amount <= MINT_PER_TX_LIMIT,
    //         "Invalid mint amount"
    //     );
    //     require(mintPrice(_amount) == msg.value, "Invalid payment amount");

    //     tokensMinted += _amount;

    //     for (uint256 i = 0; i < _amount; i++) {
    //         uint16 tokenId = getTokenToBeMinted();
    //         _safeMint(msg.sender, tokenId);

    //     }
    // }



    function mint(uint256 _amount) public payable whenNotPaused {
        require(tx.origin == msg.sender, "Only EOA");
        //require(phase > 0, "Whitelist Only!");
        require(tokensMinted + _amount <= MAX_TOKENS, "All tokens minted");
        require(
            _amount > 0 && _amount <= MINT_PER_TX_LIMIT,
            "Invalid mint amount"
        );
        require(
            _availableTokens.length > 0,
            "All tokens for this Phase are already sold"
        );

        require(mintPrice(_amount) == msg.value, "Invalid payment amount");

        tokensMinted += _amount;

        for (uint256 i = 0; i < _amount; i++) {
            uint16 tokenId = getTokenToBeMinted();
            _safeMint(msg.sender, tokenId);
        }
    }

    function mintPrice(uint256 _amount) public view returns (uint256) {
        return _amount * phasePrice[phase];
    }

    function getTokenToBeMinted() private returns (uint16) {
        uint256 rand = random.getSomeRandomNumber(
            _availableTokens.length,
            _availableTokens.length
        );

        uint16 tokenId = _availableTokens[rand];

        _availableTokens[rand] = _availableTokens[_availableTokens.length - 1];
        _availableTokens.pop();

        return tokenId;
    }

    function setRandom(address _random) external onlyOwner {
        random = IRandom(_random);
    }

    function setSign(address _sign) external onlyOwner {
        sign = ISign(_sign);
    }

    function changePhasePrice(uint16 _phase, uint256 _weiPrice)
        external
        onlyOwner
    {
        phasePrice[_phase] = _weiPrice;
    }

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

    function _baseURI() internal view override returns (string memory) {
        return _apiURI;
    }

    function setBaseURI(string calldata uri) external onlyOwner {
        _apiURI = uri;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
        _exists(tokenId),
        "ERC721Metadata: URI query for nonexistent token"
        );
        
        if(revealed == false) {
            return notRevealedUri;
        }

        return bytes(_apiURI).length > 0
            ? string(abi.encodePacked(_apiURI, tokenId.toString()))
            : "";
    }

    //only owner
    function reveal() public onlyOwner {
        revealed = true;
    }

    function withdraw(address to) external onlyOwner {
        uint256 balance = address(this).balance;
        payable(to).transfer(balance);
    }
}

Settings
{
  "evmVersion": "istanbul",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

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":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PER_TX_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_from","type":"uint16"},{"internalType":"uint16","name":"_to","type":"uint16"}],"name":"addAvailableTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_phase","type":"uint16"},{"internalType":"uint256","name":"_weiPrice","type":"uint256"}],"name":"changePhasePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAvaTokenIds","outputs":[{"internalType":"uint16[]","name":"","type":"uint16[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"phasePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"random","outputs":[{"internalType":"contract IRandom","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_random","type":"address"}],"name":"setRandom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sign","type":"address"}],"name":"setSign","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sign","outputs":[{"internalType":"contract ISign","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_phase","type":"uint16"},{"internalType":"bool","name":"_setTokens","type":"bool"}],"name":"switchToSalePhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600a805461ffff60a01b1916600360a31b179055610d05600b556000600c55600d80546201000062ffffff199091161763ff0000001916905560e060405260356080818152906200350060a03980516200006291600e91602090910190620003c0565b50604051806060016040528060368152602001620034ca6036913980516200009391601291602090910190620003c0565b50348015620000a157600080fd5b50604080518082018252600c8082526b2830b93a3caab734b1b7b93760a11b602080840182815285518087019096529285528401528151919291620000e991600091620003c0565b508051620000ff906001906020840190620003c0565b5050506200011c62000116620001e660201b60201c565b620001ea565b6200012a600060016200023c565b600f60205267012dfb0cb5e880007ff4803e074bd026baaf6ed2e288c9515f68c72fb7216eebdd7cae1718a53ec375556701bc16d674ec80007f169f97de0d9a84d840042b17d3c6b9638b3d6fd9024c9eb0c7a306a17b49f88f55670214e8348c4f00007fa74ba3945261e09fde15ba3db55005b205e61eeb4ad811ac0faa2b315bffeead55600360005267026db992a3b180007f45f76dafbbad695564362934e24d72eedc57f9fc1a65f39bca62176cc82968285562000507565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000246620001e6565b6001600160a01b0316620002596200032d565b6001600160a01b0316146200028b5760405162461bcd60e51b8152600401620002829062000466565b60405180910390fd5b600d805461ffff191661ffff841617905580620002a85762000329565b600d5461ffff16620002c957620002c3600161014d6200033c565b62000329565b600d5461ffff1660011415620002e957620002c361014e6105356200033c565b600d5461ffff16600214156200030957620002c361053661091d6200033c565b600d5461ffff166003141562000329576200032961091e610d056200033c565b5050565b600a546001600160a01b031690565b815b8161ffff168161ffff1611620003bb57601580546001810182556000919091527f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec47560108204018054600f9092166002026101000a61ffff818102199093169284160291909117905580620003b281620004d8565b9150506200033e565b505050565b828054620003ce906200049b565b90600052602060002090601f016020900481019282620003f257600085556200043d565b82601f106200040d57805160ff19168380011785556200043d565b828001600101855582156200043d579182015b828111156200043d57825182559160200191906001019062000420565b506200044b9291506200044f565b5090565b5b808211156200044b576000815560010162000450565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600281046001821680620004b057607f821691505b60208210811415620004d257634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415620004fd57634e487b7160e01b83526011600452602483fd5b6001019392505050565b612fb380620005176000396000f3fe6080604052600436106102675760003560e01c80635ec01e4d11610144578063b1c9fe6e116100b6578063e6a72acf1161007a578063e6a72acf146106c8578063e985e9c5146106e8578063efb3d00814610708578063f2c4ce1e14610728578063f2fde38b14610748578063f47c84c51461076857610267565b8063b1c9fe6e14610633578063b88d4fde14610648578063c87b56dd14610668578063c9150a9e14610688578063ca9c0bad146106a857610267565b80637bebabf7116101085780637bebabf7146105a15780638da5cb5b146105c157806395d89b41146105d6578063a0712d68146105eb578063a22cb465146105fe578063a475b5dd1461061e57610267565b80635ec01e4d146105225780636352211e146105375780636de9f32b1461055757806370a082311461056c578063715018a61461058c57610267565b80633d472937116101dd5780634f6ccce7116101a15780634f6ccce714610476578063518302271461049657806351cff8d9146104ab57806354fd4d50146104cb57806355f804b3146104ed5780635c975abb1461050d57610267565b80633d472937146103df57806342842e0e146103ff57806345a4d1e31461041f57806345d51007146104415780634efc09f51461045657610267565b806316c38b3c1161022f57806316c38b3c1461032857806318160ddd1461034857806323b872dd1461036a578063261d3b211461038a5780632ca15122146103aa5780632f745c59146103bf57610267565b806301ffc9a71461026c57806306fdde03146102a2578063081812fc146102c4578063081c8c44146102f1578063095ea7b314610306575b600080fd5b34801561027857600080fd5b5061028c61028736600461243e565b61077d565b6040516102999190612794565b60405180910390f35b3480156102ae57600080fd5b506102b76107aa565b604051610299919061279f565b3480156102d057600080fd5b506102e46102df3660046125d3565b61083c565b60405161029991906126fb565b3480156102fd57600080fd5b506102b7610888565b34801561031257600080fd5b506103266103213660046123fb565b610916565b005b34801561033457600080fd5b50610326610343366004612424565b6109ae565b34801561035457600080fd5b5061035d6109ca565b6040516102999190612dd8565b34801561037657600080fd5b5061032661038536600461231e565b6109d0565b34801561039657600080fd5b506103266103a53660046125eb565b610a08565b3480156103b657600080fd5b506102e4610ae5565b3480156103cb57600080fd5b5061035d6103da3660046123fb565b610af4565b3480156103eb57600080fd5b506103266103fa366004612561565b610b46565b34801561040b57600080fd5b5061032661041a36600461231e565b610c18565b34801561042b57600080fd5b50610434610c33565b604051610299919061274c565b34801561044d57600080fd5b5061035d610d2b565b34801561046257600080fd5b506103266104713660046125b6565b610d30565b34801561048257600080fd5b5061035d6104913660046125d3565b610d86565b3480156104a257600080fd5b5061028c610de1565b3480156104b757600080fd5b506103266104c63660046122cb565b610df1565b3480156104d757600080fd5b506104e0610e68565b6040516102999190612dc9565b3480156104f957600080fd5b50610326610508366004612476565b610e79565b34801561051957600080fd5b5061028c610ec4565b34801561052e57600080fd5b506102e4610ed3565b34801561054357600080fd5b506102e46105523660046125d3565b610ee2565b34801561056357600080fd5b5061035d610f17565b34801561057857600080fd5b5061035d6105873660046122cb565b610f1d565b34801561059857600080fd5b50610326610f61565b3480156105ad57600080fd5b506103266105bc3660046122cb565b610fac565b3480156105cd57600080fd5b506102e461100d565b3480156105e257600080fd5b506102b761101c565b6103266105f93660046125d3565b61102b565b34801561060a57600080fd5b506103266106193660046123d2565b611161565b34801561062a57600080fd5b50610326611173565b34801561063f57600080fd5b506104e06111c7565b34801561065457600080fd5b50610326610663366004612359565b6111d1565b34801561067457600080fd5b506102b76106833660046125d3565b611210565b34801561069457600080fd5b5061035d6106a3366004612529565b611337565b3480156106b457600080fd5b506103266106c33660046122cb565b611349565b3480156106d457600080fd5b5061035d6106e33660046125d3565b6113aa565b3480156106f457600080fd5b5061028c6107033660046122ec565b6113ca565b34801561071457600080fd5b5061032661072336600461257e565b6113f8565b34801561073457600080fd5b506103266107433660046124e3565b611441565b34801561075457600080fd5b506103266107633660046122cb565b611493565b34801561077457600080fd5b5061035d611504565b60006001600160e01b0319821663780e9d6360e01b14806107a257506107a28261150a565b90505b919050565b6060600080546107b990612e89565b80601f01602080910402602001604051908101604052809291908181526020018280546107e590612e89565b80156108325780601f1061080757610100808354040283529160200191610832565b820191906000526020600020905b81548152906001019060200180831161081557829003601f168201915b5050505050905090565b60006108478261154a565b61086c5760405162461bcd60e51b815260040161086390612ba4565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600e805461089590612e89565b80601f01602080910402602001604051908101604052809291908181526020018280546108c190612e89565b801561090e5780601f106108e35761010080835404028352916020019161090e565b820191906000526020600020905b8154815290600101906020018083116108f157829003601f168201915b505050505081565b600061092182610ee2565b9050806001600160a01b0316836001600160a01b031614156109555760405162461bcd60e51b815260040161086390612cbe565b806001600160a01b0316610967611567565b6001600160a01b03161480610983575061098381610703611567565b61099f5760405162461bcd60e51b815260040161086390612a7f565b6109a9838361156b565b505050565b600d8054911515620100000262ff000019909216919091179055565b600c5490565b6109e16109db611567565b826115d9565b6109fd5760405162461bcd60e51b815260040161086390612cff565b6109a983838361165e565b610a10611567565b6001600160a01b0316610a2161100d565b6001600160a01b031614610a475760405162461bcd60e51b815260040161086390612bf0565b600b5482600c54610a589190612dfb565b1115610a765760405162461bcd60e51b8152600401610863906128da565b601554610a955760405162461bcd60e51b815260040161086390612c74565b81600c6000828254610aa79190612dfb565b90915550600090505b828110156109a9576000610ac2611791565b9050610ad2838261ffff1661195f565b5080610add81612ee6565b915050610ab0565b6011546001600160a01b031681565b6000610aff83610f1d565b8210610b1d5760405162461bcd60e51b8152600401610863906127b2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b4e611567565b6001600160a01b0316610b5f61100d565b6001600160a01b031614610b855760405162461bcd60e51b815260040161086390612bf0565b600d805461ffff191661ffff841617905580610ba057610c14565b600d5461ffff16610bbd57610bb8600161014d611979565b610c14565b600d5461ffff1660011415610bda57610bb861014e610535611979565b600d5461ffff1660021415610bf757610bb861053661091d611979565b600d5461ffff1660031415610c1457610c1461091e610d05611979565b5050565b6109a9838383604051806020016040528060008152506111d1565b60155460609060009067ffffffffffffffff811115610c6257634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c8b578160200160208202803683370190505b50905060005b601554811015610d255760158181548110610cbc57634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff16828281518110610d0057634e487b7160e01b600052603260045260246000fd5b61ffff9092166020928302919091019091015280610d1d81612ee6565b915050610c91565b50905090565b600a81565b610d38611567565b6001600160a01b0316610d4961100d565b6001600160a01b031614610d6f5760405162461bcd60e51b815260040161086390612bf0565b61ffff9091166000908152600f6020526040902055565b6000610d906119f4565b8210610dae5760405162461bcd60e51b815260040161086390612d7d565b60088281548110610dcf57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600d546301000000900460ff1681565b610df9611567565b6001600160a01b0316610e0a61100d565b6001600160a01b031614610e305760405162461bcd60e51b815260040161086390612bf0565b60405147906001600160a01b0383169082156108fc029083906000818181858888f193505050501580156109a9573d6000803e3d6000fd5b600a54600160a01b900461ffff1681565b610e81611567565b6001600160a01b0316610e9261100d565b6001600160a01b031614610eb85760405162461bcd60e51b815260040161086390612bf0565b6109a960128383612121565b600d5462010000900460ff1690565b6010546001600160a01b031681565b6000818152600260205260408120546001600160a01b0316806107a25760405162461bcd60e51b815260040161086390612b26565b600c5481565b60006001600160a01b038216610f455760405162461bcd60e51b815260040161086390612adc565b506001600160a01b031660009081526003602052604090205490565b610f69611567565b6001600160a01b0316610f7a61100d565b6001600160a01b031614610fa05760405162461bcd60e51b815260040161086390612bf0565b610faa60006119fa565b565b610fb4611567565b6001600160a01b0316610fc561100d565b6001600160a01b031614610feb5760405162461bcd60e51b815260040161086390612bf0565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031690565b6060600180546107b990612e89565b611033610ec4565b156110505760405162461bcd60e51b815260040161086390612a55565b32331461106f5760405162461bcd60e51b81526004016108639061296c565b600b5481600c546110809190612dfb565b111561109e5760405162461bcd60e51b8152600401610863906128da565b6000811180156110af5750600a8111155b6110cb5760405162461bcd60e51b815260040161086390612d50565b6015546110ea5760405162461bcd60e51b815260040161086390612c74565b346110f4826113aa565b146111115760405162461bcd60e51b81526004016108639061293c565b80600c60008282546111239190612dfb565b90915550600090505b81811015610c1457600061113e611791565b905061114e338261ffff1661195f565b508061115981612ee6565b91505061112c565b610c1461116c611567565b8383611a4c565b61117b611567565b6001600160a01b031661118c61100d565b6001600160a01b0316146111b25760405162461bcd60e51b815260040161086390612bf0565b600d805463ff00000019166301000000179055565b600d5461ffff1681565b6111e26111dc611567565b836115d9565b6111fe5760405162461bcd60e51b815260040161086390612cff565b61120a84848484611aef565b50505050565b606061121b8261154a565b6112375760405162461bcd60e51b815260040161086390612c25565b600d546301000000900460ff166112da57600e805461125590612e89565b80601f016020809104026020016040519081016040528092919081815260200182805461128190612e89565b80156112ce5780601f106112a3576101008083540402835291602001916112ce565b820191906000526020600020905b8154815290600101906020018083116112b157829003601f168201915b505050505090506107a5565b6000601280546112e990612e89565b90501161130557604051806020016040528060008152506107a2565b601261131083611b22565b604051602001611321929190612655565b6040516020818303038152906040529050919050565b600f6020526000908152604090205481565b611351611567565b6001600160a01b031661136261100d565b6001600160a01b0316146113885760405162461bcd60e51b815260040161086390612bf0565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b600d5461ffff166000908152600f60205260408120546107a29083612e27565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611400611567565b6001600160a01b031661141161100d565b6001600160a01b0316146114375760405162461bcd60e51b815260040161086390612bf0565b610c148282611979565b611449611567565b6001600160a01b031661145a61100d565b6001600160a01b0316146114805760405162461bcd60e51b815260040161086390612bf0565b8051610c1490600e9060208401906121a5565b61149b611567565b6001600160a01b03166114ac61100d565b6001600160a01b0316146114d25760405162461bcd60e51b815260040161086390612bf0565b6001600160a01b0381166114f85760405162461bcd60e51b81526004016108639061284f565b611501816119fa565b50565b600b5481565b60006001600160e01b031982166380ac58cd60e01b148061153b57506001600160e01b03198216635b5e139f60e01b145b806107a257506107a282611c3d565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115a082610ee2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115e48261154a565b6116005760405162461bcd60e51b815260040161086390612a09565b600061160b83610ee2565b9050806001600160a01b0316846001600160a01b03161480611632575061163281856113ca565b806116565750836001600160a01b031661164b8461083c565b6001600160a01b0316145b949350505050565b826001600160a01b031661167182610ee2565b6001600160a01b0316146116975760405162461bcd60e51b815260040161086390612895565b6001600160a01b0382166116bd5760405162461bcd60e51b81526004016108639061298e565b6116c8838383611c56565b6116d360008261156b565b6001600160a01b03831660009081526003602052604081208054600192906116fc908490612e46565b90915550506001600160a01b038216600090815260036020526040812080546001929061172a908490612dfb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a46109a98383836109a9565b601054601554604051631ee70c5b60e11b815260009283926001600160a01b0390911691633dce18b6916117c9918190600401612de1565b60206040518083038186803b1580156117e157600080fd5b505afa1580156117f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118199190612545565b61ffff16905060006015828154811061184257634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1690506015600160158054905061187c9190612e46565b8154811061189a57634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff16601583815481106118df57634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550601580548061192d57634e487b7160e01b600052603160045260246000fd5b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a0219169055905591505090565b610c14828260405180602001604052806000815250611cdf565b815b8161ffff168161ffff16116109a957601580546001810182556000919091527f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec47560108204018054600f9092166002026101000a61ffff8181021990931692841602919091179055806119ec81612ec4565b91505061197b565b60085490565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611a7e5760405162461bcd60e51b8152600401610863906129d2565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611ae2908590612794565b60405180910390a3505050565b611afa84848461165e565b611b0684848484611d12565b61120a5760405162461bcd60e51b8152600401610863906127fd565b606081611b4757506040805180820190915260018152600360fc1b60208201526107a5565b8160005b8115611b715780611b5b81612ee6565b9150611b6a9050600a83612e13565b9150611b4b565b60008167ffffffffffffffff811115611b9a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611bc4576020820181803683370190505b5090505b841561165657611bd9600183612e46565b9150611be6600a86612f01565b611bf1906030612dfb565b60f81b818381518110611c1457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611c36600a86612e13565b9450611bc8565b6001600160e01b031981166301ffc9a760e01b14919050565b611c618383836109a9565b6001600160a01b038316611c7d57611c7881611e2d565b611ca0565b816001600160a01b0316836001600160a01b031614611ca057611ca08382611e71565b6001600160a01b038216611cbc57611cb781611f0e565b6109a9565b826001600160a01b0316826001600160a01b0316146109a9576109a98282611fe7565b611ce9838361202b565b611cf66000848484611d12565b6109a95760405162461bcd60e51b8152600401610863906127fd565b6000611d26846001600160a01b0316612112565b15611e2257836001600160a01b031663150b7a02611d42611567565b8786866040518563ffffffff1660e01b8152600401611d64949392919061270f565b602060405180830381600087803b158015611d7e57600080fd5b505af1925050508015611dae575060408051601f3d908101601f19168201909252611dab9181019061245a565b60015b611e08573d808015611ddc576040519150601f19603f3d011682016040523d82523d6000602084013e611de1565b606091505b508051611e005760405162461bcd60e51b8152600401610863906127fd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611656565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611e7e84610f1d565b611e889190612e46565b600083815260076020526040902054909150808214611edb576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f2090600190612e46565b60008381526009602052604081205460088054939450909284908110611f5657634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611f8557634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611fcb57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611ff283610f1d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120515760405162461bcd60e51b815260040161086390612b6f565b61205a8161154a565b156120775760405162461bcd60e51b815260040161086390612905565b61208360008383611c56565b6001600160a01b03821660009081526003602052604081208054600192906120ac908490612dfb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610c14600083836109a9565b6001600160a01b03163b151590565b82805461212d90612e89565b90600052602060002090601f01602090048101928261214f5760008555612195565b82601f106121685782800160ff19823516178555612195565b82800160010185558215612195579182015b8281111561219557823582559160200191906001019061217a565b506121a1929150612219565b5090565b8280546121b190612e89565b90600052602060002090601f0160209004810192826121d35760008555612195565b82601f106121ec57805160ff1916838001178555612195565b82800160010185558215612195579182015b828111156121955782518255916020019190600101906121fe565b5b808211156121a1576000815560010161221a565b600067ffffffffffffffff8084111561224957612249612f41565b604051601f8501601f19908116603f0116810190828211818310171561227157612271612f41565b8160405280935085815286868601111561228a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146107a557600080fd5b803580151581146107a557600080fd5b6000602082840312156122dc578081fd5b6122e5826122a4565b9392505050565b600080604083850312156122fe578081fd5b612307836122a4565b9150612315602084016122a4565b90509250929050565b600080600060608486031215612332578081fd5b61233b846122a4565b9250612349602085016122a4565b9150604084013590509250925092565b6000806000806080858703121561236e578081fd5b612377856122a4565b9350612385602086016122a4565b925060408501359150606085013567ffffffffffffffff8111156123a7578182fd5b8501601f810187136123b7578182fd5b6123c68782356020840161222e565b91505092959194509250565b600080604083850312156123e4578182fd5b6123ed836122a4565b9150612315602084016122bb565b6000806040838503121561240d578182fd5b612416836122a4565b946020939093013593505050565b600060208284031215612435578081fd5b6122e5826122bb565b60006020828403121561244f578081fd5b81356122e581612f57565b60006020828403121561246b578081fd5b81516122e581612f57565b60008060208385031215612488578182fd5b823567ffffffffffffffff8082111561249f578384fd5b818501915085601f8301126124b2578384fd5b8135818111156124c0578485fd5b8660208285010111156124d1578485fd5b60209290920196919550909350505050565b6000602082840312156124f4578081fd5b813567ffffffffffffffff81111561250a578182fd5b8201601f8101841361251a578182fd5b6116568482356020840161222e565b60006020828403121561253a578081fd5b81356122e581612f6d565b600060208284031215612556578081fd5b81516122e581612f6d565b60008060408385031215612573578182fd5b82356123ed81612f6d565b60008060408385031215612590578182fd5b823561259b81612f6d565b915060208301356125ab81612f6d565b809150509250929050565b600080604083850312156125c8578182fd5b823561241681612f6d565b6000602082840312156125e4578081fd5b5035919050565b600080604083850312156125fd578182fd5b82359150612315602084016122a4565b60008151808452612625816020860160208601612e5d565b601f01601f19169290920160200192915050565b6000815161264b818560208601612e5d565b9290920192915050565b825460009081906002810460018083168061267157607f831692505b602080841082141561269157634e487b7160e01b87526022600452602487fd5b8180156126a557600181146126b6576126e2565b60ff198616895284890196506126e2565b6126bf8b612def565b885b868110156126da5781548b8201529085019083016126c1565b505084890196505b5050505050506126f28185612639565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127429083018461260d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561278857835161ffff1683529284019291840191600101612768565b50909695505050505050565b901515815260200190565b6000602082526122e5602083018461260d565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b602080825260119082015270105b1b081d1bdad95b9cc81b5a5b9d1959607a1b604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b602080825260169082015275125b9d985b1a59081c185e5b595b9d08185b5bdd5b9d60521b604082015260600190565b6020808252600890820152674f6e6c7920454f4160c01b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252602a908201527f416c6c20746f6b656e7320666f7220746869732050686173652061726520616c6040820152691c9958591e481cdbdb1960b21b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260139082015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b604082015260600190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b61ffff91909116815260200190565b90815260200190565b918252602082015260400190565b60009081526020902090565b60008219821115612e0e57612e0e612f15565b500190565b600082612e2257612e22612f2b565b500490565b6000816000190483118215151615612e4157612e41612f15565b500290565b600082821015612e5857612e58612f15565b500390565b60005b83811015612e78578181015183820152602001612e60565b8381111561120a5750506000910152565b600281046001821680612e9d57607f821691505b60208210811415612ebe57634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415612edc57612edc612f15565b6001019392505050565b6000600019821415612efa57612efa612f15565b5060010190565b600082612f1057612f10612f2b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461150157600080fd5b61ffff8116811461150157600080fdfea264697066735822122017fac72609f06a8db15362a09c07c42cacd58713655bb36210ed725aaf56627164736f6c63430008010033697066733a2f2f516d5a6f42453173474e364c526570677948356379573961577159664343366f566837517434734e7944636a38672f697066733a2f2f516d526b754a46674478384b557054577a4b636734754372776462593472594c6f783354535a364261454a356b55

Deployed Bytecode

0x6080604052600436106102675760003560e01c80635ec01e4d11610144578063b1c9fe6e116100b6578063e6a72acf1161007a578063e6a72acf146106c8578063e985e9c5146106e8578063efb3d00814610708578063f2c4ce1e14610728578063f2fde38b14610748578063f47c84c51461076857610267565b8063b1c9fe6e14610633578063b88d4fde14610648578063c87b56dd14610668578063c9150a9e14610688578063ca9c0bad146106a857610267565b80637bebabf7116101085780637bebabf7146105a15780638da5cb5b146105c157806395d89b41146105d6578063a0712d68146105eb578063a22cb465146105fe578063a475b5dd1461061e57610267565b80635ec01e4d146105225780636352211e146105375780636de9f32b1461055757806370a082311461056c578063715018a61461058c57610267565b80633d472937116101dd5780634f6ccce7116101a15780634f6ccce714610476578063518302271461049657806351cff8d9146104ab57806354fd4d50146104cb57806355f804b3146104ed5780635c975abb1461050d57610267565b80633d472937146103df57806342842e0e146103ff57806345a4d1e31461041f57806345d51007146104415780634efc09f51461045657610267565b806316c38b3c1161022f57806316c38b3c1461032857806318160ddd1461034857806323b872dd1461036a578063261d3b211461038a5780632ca15122146103aa5780632f745c59146103bf57610267565b806301ffc9a71461026c57806306fdde03146102a2578063081812fc146102c4578063081c8c44146102f1578063095ea7b314610306575b600080fd5b34801561027857600080fd5b5061028c61028736600461243e565b61077d565b6040516102999190612794565b60405180910390f35b3480156102ae57600080fd5b506102b76107aa565b604051610299919061279f565b3480156102d057600080fd5b506102e46102df3660046125d3565b61083c565b60405161029991906126fb565b3480156102fd57600080fd5b506102b7610888565b34801561031257600080fd5b506103266103213660046123fb565b610916565b005b34801561033457600080fd5b50610326610343366004612424565b6109ae565b34801561035457600080fd5b5061035d6109ca565b6040516102999190612dd8565b34801561037657600080fd5b5061032661038536600461231e565b6109d0565b34801561039657600080fd5b506103266103a53660046125eb565b610a08565b3480156103b657600080fd5b506102e4610ae5565b3480156103cb57600080fd5b5061035d6103da3660046123fb565b610af4565b3480156103eb57600080fd5b506103266103fa366004612561565b610b46565b34801561040b57600080fd5b5061032661041a36600461231e565b610c18565b34801561042b57600080fd5b50610434610c33565b604051610299919061274c565b34801561044d57600080fd5b5061035d610d2b565b34801561046257600080fd5b506103266104713660046125b6565b610d30565b34801561048257600080fd5b5061035d6104913660046125d3565b610d86565b3480156104a257600080fd5b5061028c610de1565b3480156104b757600080fd5b506103266104c63660046122cb565b610df1565b3480156104d757600080fd5b506104e0610e68565b6040516102999190612dc9565b3480156104f957600080fd5b50610326610508366004612476565b610e79565b34801561051957600080fd5b5061028c610ec4565b34801561052e57600080fd5b506102e4610ed3565b34801561054357600080fd5b506102e46105523660046125d3565b610ee2565b34801561056357600080fd5b5061035d610f17565b34801561057857600080fd5b5061035d6105873660046122cb565b610f1d565b34801561059857600080fd5b50610326610f61565b3480156105ad57600080fd5b506103266105bc3660046122cb565b610fac565b3480156105cd57600080fd5b506102e461100d565b3480156105e257600080fd5b506102b761101c565b6103266105f93660046125d3565b61102b565b34801561060a57600080fd5b506103266106193660046123d2565b611161565b34801561062a57600080fd5b50610326611173565b34801561063f57600080fd5b506104e06111c7565b34801561065457600080fd5b50610326610663366004612359565b6111d1565b34801561067457600080fd5b506102b76106833660046125d3565b611210565b34801561069457600080fd5b5061035d6106a3366004612529565b611337565b3480156106b457600080fd5b506103266106c33660046122cb565b611349565b3480156106d457600080fd5b5061035d6106e33660046125d3565b6113aa565b3480156106f457600080fd5b5061028c6107033660046122ec565b6113ca565b34801561071457600080fd5b5061032661072336600461257e565b6113f8565b34801561073457600080fd5b506103266107433660046124e3565b611441565b34801561075457600080fd5b506103266107633660046122cb565b611493565b34801561077457600080fd5b5061035d611504565b60006001600160e01b0319821663780e9d6360e01b14806107a257506107a28261150a565b90505b919050565b6060600080546107b990612e89565b80601f01602080910402602001604051908101604052809291908181526020018280546107e590612e89565b80156108325780601f1061080757610100808354040283529160200191610832565b820191906000526020600020905b81548152906001019060200180831161081557829003601f168201915b5050505050905090565b60006108478261154a565b61086c5760405162461bcd60e51b815260040161086390612ba4565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600e805461089590612e89565b80601f01602080910402602001604051908101604052809291908181526020018280546108c190612e89565b801561090e5780601f106108e35761010080835404028352916020019161090e565b820191906000526020600020905b8154815290600101906020018083116108f157829003601f168201915b505050505081565b600061092182610ee2565b9050806001600160a01b0316836001600160a01b031614156109555760405162461bcd60e51b815260040161086390612cbe565b806001600160a01b0316610967611567565b6001600160a01b03161480610983575061098381610703611567565b61099f5760405162461bcd60e51b815260040161086390612a7f565b6109a9838361156b565b505050565b600d8054911515620100000262ff000019909216919091179055565b600c5490565b6109e16109db611567565b826115d9565b6109fd5760405162461bcd60e51b815260040161086390612cff565b6109a983838361165e565b610a10611567565b6001600160a01b0316610a2161100d565b6001600160a01b031614610a475760405162461bcd60e51b815260040161086390612bf0565b600b5482600c54610a589190612dfb565b1115610a765760405162461bcd60e51b8152600401610863906128da565b601554610a955760405162461bcd60e51b815260040161086390612c74565b81600c6000828254610aa79190612dfb565b90915550600090505b828110156109a9576000610ac2611791565b9050610ad2838261ffff1661195f565b5080610add81612ee6565b915050610ab0565b6011546001600160a01b031681565b6000610aff83610f1d565b8210610b1d5760405162461bcd60e51b8152600401610863906127b2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b4e611567565b6001600160a01b0316610b5f61100d565b6001600160a01b031614610b855760405162461bcd60e51b815260040161086390612bf0565b600d805461ffff191661ffff841617905580610ba057610c14565b600d5461ffff16610bbd57610bb8600161014d611979565b610c14565b600d5461ffff1660011415610bda57610bb861014e610535611979565b600d5461ffff1660021415610bf757610bb861053661091d611979565b600d5461ffff1660031415610c1457610c1461091e610d05611979565b5050565b6109a9838383604051806020016040528060008152506111d1565b60155460609060009067ffffffffffffffff811115610c6257634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c8b578160200160208202803683370190505b50905060005b601554811015610d255760158181548110610cbc57634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff16828281518110610d0057634e487b7160e01b600052603260045260246000fd5b61ffff9092166020928302919091019091015280610d1d81612ee6565b915050610c91565b50905090565b600a81565b610d38611567565b6001600160a01b0316610d4961100d565b6001600160a01b031614610d6f5760405162461bcd60e51b815260040161086390612bf0565b61ffff9091166000908152600f6020526040902055565b6000610d906119f4565b8210610dae5760405162461bcd60e51b815260040161086390612d7d565b60088281548110610dcf57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600d546301000000900460ff1681565b610df9611567565b6001600160a01b0316610e0a61100d565b6001600160a01b031614610e305760405162461bcd60e51b815260040161086390612bf0565b60405147906001600160a01b0383169082156108fc029083906000818181858888f193505050501580156109a9573d6000803e3d6000fd5b600a54600160a01b900461ffff1681565b610e81611567565b6001600160a01b0316610e9261100d565b6001600160a01b031614610eb85760405162461bcd60e51b815260040161086390612bf0565b6109a960128383612121565b600d5462010000900460ff1690565b6010546001600160a01b031681565b6000818152600260205260408120546001600160a01b0316806107a25760405162461bcd60e51b815260040161086390612b26565b600c5481565b60006001600160a01b038216610f455760405162461bcd60e51b815260040161086390612adc565b506001600160a01b031660009081526003602052604090205490565b610f69611567565b6001600160a01b0316610f7a61100d565b6001600160a01b031614610fa05760405162461bcd60e51b815260040161086390612bf0565b610faa60006119fa565b565b610fb4611567565b6001600160a01b0316610fc561100d565b6001600160a01b031614610feb5760405162461bcd60e51b815260040161086390612bf0565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031690565b6060600180546107b990612e89565b611033610ec4565b156110505760405162461bcd60e51b815260040161086390612a55565b32331461106f5760405162461bcd60e51b81526004016108639061296c565b600b5481600c546110809190612dfb565b111561109e5760405162461bcd60e51b8152600401610863906128da565b6000811180156110af5750600a8111155b6110cb5760405162461bcd60e51b815260040161086390612d50565b6015546110ea5760405162461bcd60e51b815260040161086390612c74565b346110f4826113aa565b146111115760405162461bcd60e51b81526004016108639061293c565b80600c60008282546111239190612dfb565b90915550600090505b81811015610c1457600061113e611791565b905061114e338261ffff1661195f565b508061115981612ee6565b91505061112c565b610c1461116c611567565b8383611a4c565b61117b611567565b6001600160a01b031661118c61100d565b6001600160a01b0316146111b25760405162461bcd60e51b815260040161086390612bf0565b600d805463ff00000019166301000000179055565b600d5461ffff1681565b6111e26111dc611567565b836115d9565b6111fe5760405162461bcd60e51b815260040161086390612cff565b61120a84848484611aef565b50505050565b606061121b8261154a565b6112375760405162461bcd60e51b815260040161086390612c25565b600d546301000000900460ff166112da57600e805461125590612e89565b80601f016020809104026020016040519081016040528092919081815260200182805461128190612e89565b80156112ce5780601f106112a3576101008083540402835291602001916112ce565b820191906000526020600020905b8154815290600101906020018083116112b157829003601f168201915b505050505090506107a5565b6000601280546112e990612e89565b90501161130557604051806020016040528060008152506107a2565b601261131083611b22565b604051602001611321929190612655565b6040516020818303038152906040529050919050565b600f6020526000908152604090205481565b611351611567565b6001600160a01b031661136261100d565b6001600160a01b0316146113885760405162461bcd60e51b815260040161086390612bf0565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b600d5461ffff166000908152600f60205260408120546107a29083612e27565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611400611567565b6001600160a01b031661141161100d565b6001600160a01b0316146114375760405162461bcd60e51b815260040161086390612bf0565b610c148282611979565b611449611567565b6001600160a01b031661145a61100d565b6001600160a01b0316146114805760405162461bcd60e51b815260040161086390612bf0565b8051610c1490600e9060208401906121a5565b61149b611567565b6001600160a01b03166114ac61100d565b6001600160a01b0316146114d25760405162461bcd60e51b815260040161086390612bf0565b6001600160a01b0381166114f85760405162461bcd60e51b81526004016108639061284f565b611501816119fa565b50565b600b5481565b60006001600160e01b031982166380ac58cd60e01b148061153b57506001600160e01b03198216635b5e139f60e01b145b806107a257506107a282611c3d565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115a082610ee2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115e48261154a565b6116005760405162461bcd60e51b815260040161086390612a09565b600061160b83610ee2565b9050806001600160a01b0316846001600160a01b03161480611632575061163281856113ca565b806116565750836001600160a01b031661164b8461083c565b6001600160a01b0316145b949350505050565b826001600160a01b031661167182610ee2565b6001600160a01b0316146116975760405162461bcd60e51b815260040161086390612895565b6001600160a01b0382166116bd5760405162461bcd60e51b81526004016108639061298e565b6116c8838383611c56565b6116d360008261156b565b6001600160a01b03831660009081526003602052604081208054600192906116fc908490612e46565b90915550506001600160a01b038216600090815260036020526040812080546001929061172a908490612dfb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a46109a98383836109a9565b601054601554604051631ee70c5b60e11b815260009283926001600160a01b0390911691633dce18b6916117c9918190600401612de1565b60206040518083038186803b1580156117e157600080fd5b505afa1580156117f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118199190612545565b61ffff16905060006015828154811061184257634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1690506015600160158054905061187c9190612e46565b8154811061189a57634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff16601583815481106118df57634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550601580548061192d57634e487b7160e01b600052603160045260246000fd5b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a0219169055905591505090565b610c14828260405180602001604052806000815250611cdf565b815b8161ffff168161ffff16116109a957601580546001810182556000919091527f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec47560108204018054600f9092166002026101000a61ffff8181021990931692841602919091179055806119ec81612ec4565b91505061197b565b60085490565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611a7e5760405162461bcd60e51b8152600401610863906129d2565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611ae2908590612794565b60405180910390a3505050565b611afa84848461165e565b611b0684848484611d12565b61120a5760405162461bcd60e51b8152600401610863906127fd565b606081611b4757506040805180820190915260018152600360fc1b60208201526107a5565b8160005b8115611b715780611b5b81612ee6565b9150611b6a9050600a83612e13565b9150611b4b565b60008167ffffffffffffffff811115611b9a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611bc4576020820181803683370190505b5090505b841561165657611bd9600183612e46565b9150611be6600a86612f01565b611bf1906030612dfb565b60f81b818381518110611c1457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611c36600a86612e13565b9450611bc8565b6001600160e01b031981166301ffc9a760e01b14919050565b611c618383836109a9565b6001600160a01b038316611c7d57611c7881611e2d565b611ca0565b816001600160a01b0316836001600160a01b031614611ca057611ca08382611e71565b6001600160a01b038216611cbc57611cb781611f0e565b6109a9565b826001600160a01b0316826001600160a01b0316146109a9576109a98282611fe7565b611ce9838361202b565b611cf66000848484611d12565b6109a95760405162461bcd60e51b8152600401610863906127fd565b6000611d26846001600160a01b0316612112565b15611e2257836001600160a01b031663150b7a02611d42611567565b8786866040518563ffffffff1660e01b8152600401611d64949392919061270f565b602060405180830381600087803b158015611d7e57600080fd5b505af1925050508015611dae575060408051601f3d908101601f19168201909252611dab9181019061245a565b60015b611e08573d808015611ddc576040519150601f19603f3d011682016040523d82523d6000602084013e611de1565b606091505b508051611e005760405162461bcd60e51b8152600401610863906127fd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611656565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611e7e84610f1d565b611e889190612e46565b600083815260076020526040902054909150808214611edb576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f2090600190612e46565b60008381526009602052604081205460088054939450909284908110611f5657634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611f8557634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611fcb57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611ff283610f1d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120515760405162461bcd60e51b815260040161086390612b6f565b61205a8161154a565b156120775760405162461bcd60e51b815260040161086390612905565b61208360008383611c56565b6001600160a01b03821660009081526003602052604081208054600192906120ac908490612dfb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610c14600083836109a9565b6001600160a01b03163b151590565b82805461212d90612e89565b90600052602060002090601f01602090048101928261214f5760008555612195565b82601f106121685782800160ff19823516178555612195565b82800160010185558215612195579182015b8281111561219557823582559160200191906001019061217a565b506121a1929150612219565b5090565b8280546121b190612e89565b90600052602060002090601f0160209004810192826121d35760008555612195565b82601f106121ec57805160ff1916838001178555612195565b82800160010185558215612195579182015b828111156121955782518255916020019190600101906121fe565b5b808211156121a1576000815560010161221a565b600067ffffffffffffffff8084111561224957612249612f41565b604051601f8501601f19908116603f0116810190828211818310171561227157612271612f41565b8160405280935085815286868601111561228a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146107a557600080fd5b803580151581146107a557600080fd5b6000602082840312156122dc578081fd5b6122e5826122a4565b9392505050565b600080604083850312156122fe578081fd5b612307836122a4565b9150612315602084016122a4565b90509250929050565b600080600060608486031215612332578081fd5b61233b846122a4565b9250612349602085016122a4565b9150604084013590509250925092565b6000806000806080858703121561236e578081fd5b612377856122a4565b9350612385602086016122a4565b925060408501359150606085013567ffffffffffffffff8111156123a7578182fd5b8501601f810187136123b7578182fd5b6123c68782356020840161222e565b91505092959194509250565b600080604083850312156123e4578182fd5b6123ed836122a4565b9150612315602084016122bb565b6000806040838503121561240d578182fd5b612416836122a4565b946020939093013593505050565b600060208284031215612435578081fd5b6122e5826122bb565b60006020828403121561244f578081fd5b81356122e581612f57565b60006020828403121561246b578081fd5b81516122e581612f57565b60008060208385031215612488578182fd5b823567ffffffffffffffff8082111561249f578384fd5b818501915085601f8301126124b2578384fd5b8135818111156124c0578485fd5b8660208285010111156124d1578485fd5b60209290920196919550909350505050565b6000602082840312156124f4578081fd5b813567ffffffffffffffff81111561250a578182fd5b8201601f8101841361251a578182fd5b6116568482356020840161222e565b60006020828403121561253a578081fd5b81356122e581612f6d565b600060208284031215612556578081fd5b81516122e581612f6d565b60008060408385031215612573578182fd5b82356123ed81612f6d565b60008060408385031215612590578182fd5b823561259b81612f6d565b915060208301356125ab81612f6d565b809150509250929050565b600080604083850312156125c8578182fd5b823561241681612f6d565b6000602082840312156125e4578081fd5b5035919050565b600080604083850312156125fd578182fd5b82359150612315602084016122a4565b60008151808452612625816020860160208601612e5d565b601f01601f19169290920160200192915050565b6000815161264b818560208601612e5d565b9290920192915050565b825460009081906002810460018083168061267157607f831692505b602080841082141561269157634e487b7160e01b87526022600452602487fd5b8180156126a557600181146126b6576126e2565b60ff198616895284890196506126e2565b6126bf8b612def565b885b868110156126da5781548b8201529085019083016126c1565b505084890196505b5050505050506126f28185612639565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127429083018461260d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561278857835161ffff1683529284019291840191600101612768565b50909695505050505050565b901515815260200190565b6000602082526122e5602083018461260d565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b602080825260119082015270105b1b081d1bdad95b9cc81b5a5b9d1959607a1b604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b602080825260169082015275125b9d985b1a59081c185e5b595b9d08185b5bdd5b9d60521b604082015260600190565b6020808252600890820152674f6e6c7920454f4160c01b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252602a908201527f416c6c20746f6b656e7320666f7220746869732050686173652061726520616c6040820152691c9958591e481cdbdb1960b21b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260139082015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b604082015260600190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b61ffff91909116815260200190565b90815260200190565b918252602082015260400190565b60009081526020902090565b60008219821115612e0e57612e0e612f15565b500190565b600082612e2257612e22612f2b565b500490565b6000816000190483118215151615612e4157612e41612f15565b500290565b600082821015612e5857612e58612f15565b500390565b60005b83811015612e78578181015183820152602001612e60565b8381111561120a5750506000910152565b600281046001821680612e9d57607f821691505b60208210811415612ebe57634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415612edc57612edc612f15565b6001019392505050565b6000600019821415612efa57612efa612f15565b5060010190565b600082612f1057612f10612f2b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461150157600080fd5b61ffff8116811461150157600080fdfea264697066735822122017fac72609f06a8db15362a09c07c42cacd58713655bb36210ed725aaf56627164736f6c63430008010033

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.