ETH Price: $3,064.94 (+0.90%)
Gas: 4 Gwei

EightBit (BIT)
 

Overview

TokenID

2793

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

EightBit is a collection of 8,888 NFT’s that are generated by countless 8-bit themed traits. Within the collection, there are rare outfits, items, and more surprises.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EightBit

Compiler Version
v0.8.8+commit.dddeac2f

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 15 : EightBit.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.8;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

// gm
// https://eightbit.me
// https://twitter.com/eightbit
// https://discord.gg/eightbit

contract EightBit is ERC721, ERC2981, Ownable {
    uint256 public constant MAX_SUPPLY = 8888;

    uint256 public price = .05 ether;
    uint256 public maxPerAddress = 8;
    bool public isPublicSaleActive;
    bool public isPremintSaleActive;
    bytes32 public premintSaleMerkleRoot;
    address public royaltyAddress;
    uint96 public royaltyFee = 500;

    uint256 private _totalSupply;
    bool private _hasTeamMinted;
    string private _baseTokenURI;
    mapping(address => uint256) private _mintCount;
    mapping(uint256 => bool) private _claimedPerk;

    constructor() ERC721("EightBit", "BIT") {
        royaltyAddress = owner();
        _setDefaultRoyalty(royaltyAddress, royaltyFee);
    }

    /**
     * @notice Mint a certain number of tokens
     */
    function _mint(uint256 count) private {
        require(count > 0, "Must mint at least 1");
        require(_totalSupply + count <= MAX_SUPPLY, "Exceeds max supply");

        address addr = _msgSender();

        for (uint256 i = 0; i < count; i++) {
            _safeMint(addr, _totalSupply + i + 1);
        }

        _totalSupply += count;
        _mintCount[addr] += count;
    }

    /**
     * @notice Allows the public to mint
     */
    function mint(uint256 count) external payable virtual {
        require(isPublicSaleActive, "Public sale not open");
        require(price * count == msg.value, "Incorrect ETH value sent");
        require(_mintCount[_msgSender()] + count <= maxPerAddress, "Exceeds max mint count");

        _mint(count);
    }

    /**
     * @notice Allows those in the premint list to mint
     */
    function premintMint(uint256 count, bytes32[] calldata merkleProof) external payable virtual {
        require(isPremintSaleActive, "Premint sale not open");
        require(price * count == msg.value, "Incorrect ETH value sent");
        require(
            MerkleProof.verify(merkleProof, premintSaleMerkleRoot, keccak256(abi.encodePacked(_msgSender()))),
            "Address not in premint list"
        );
        require(_mintCount[_msgSender()] + count <= maxPerAddress, "Exceeds max mint count");

        _mint(count);
    }

    /**
     * @notice Allows owner to mint for the team & community
     */
    function teamMint() external onlyOwner {
        require(!_hasTeamMinted, "Team already minted");

        _mint(250);
        _hasTeamMinted = true;
    }

    /**
     * @notice Allows owner to toggle the public sale on/off
     */
    function togglePublicSale() public onlyOwner {
        isPublicSaleActive = !isPublicSaleActive;
    }

    /**
     * @notice Allows owner to toggle the premint sale on/off
     */
    function togglePremintSale() public onlyOwner {
        isPremintSaleActive = !isPremintSaleActive;
    }

    /**
     * @notice Allows owner to update the price
     */
    function setPrice(uint256 priceInWei) public onlyOwner {
        price = priceInWei;
    }

    /**
     * @notice Allows owner to set the max mints per address
     */
    function setMaxPerAddress(uint256 max) public onlyOwner {
        maxPerAddress = max;
    }

    /**
     * @notice Allow owner to set the Premint allow list merkle root
     */
    function setPremintListMerkleRoot(bytes32 root) public onlyOwner {
        premintSaleMerkleRoot = root;
    }

    /**
     * @notice Allow owner to set the base token uri
     */
    function setBaseURI(string memory baseTokenURI) public onlyOwner {
        _baseTokenURI = baseTokenURI;
    }

    /**
     * @notice Returns the base token uri
     */
    function _baseURI() internal view override returns (string memory) {
        return _baseTokenURI;
    }

    /**
     * @notice Returns whether or not a perk has been claimed for a token
     */
    function hasClaimedPerk(uint256 tokenId) external view returns (bool) {
        return _claimedPerk[tokenId];
    }

    /**
     * @notice Allow owner to specify that a perk has been claimed for a token
     */
    function claimPerk(uint256 tokenId) public onlyOwner {
        require(_exists(tokenId), "Token does not exist");
        require(!_claimedPerk[tokenId], "Token already claimed");

        _claimedPerk[tokenId] = true;
    }

    /**
     * @notice Allow owner to withdraw amount
     */
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(owner()), balance);
    }

    /**
     * @notice Allow owner to update the royalty fee
     */
    function setRoyaltyFee(uint96 fee) external onlyOwner {
        royaltyFee = fee;
        _setDefaultRoyalty(royaltyAddress, royaltyFee);
    }

    /**
     * @notice Allow owner to update the royalty address
     */
    function setRoyaltyAddress(address addr) external onlyOwner {
        royaltyAddress = addr;
        _setDefaultRoyalty(royaltyAddress, royaltyFee);
    }

    /**
     * @notice Returns the total supply
     */
    function totalSupply() external view returns (uint256) {
        return _totalSupply;
    }

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

File 2 of 15 : 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 3 of 15 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        virtual
        override
        returns (address, uint256)
    {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 4 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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 overriden 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 || getApproved(tokenId) == spender || isApprovedForAll(owner, 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 5 of 15 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 6 of 15 : 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 7 of 15 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 8 of 15 : 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 9 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

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

File 10 of 15 : 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 11 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

File 12 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 13 of 15 : 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 14 of 15 : 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 15 of 15 : 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);
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

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_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uint256","name":"tokenId","type":"uint256"}],"name":"claimPerk","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"hasClaimedPerk","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"isPremintSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","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":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"premintMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"premintSaleMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyFee","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setPremintListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"priceInWei","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setRoyaltyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"fee","type":"uint96"}],"name":"setRoyaltyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePremintSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266b1a2bc2ec500006009556008600a55600d80546001600160a01b0316607d60a21b1790553480156200003657600080fd5b506040805180820182526008815267115a59da1d109a5d60c21b60208083019182528351808501909452600384526210925560ea1b908401528151919291620000829160009162000256565b5080516200009890600190602084019062000256565b505050620000b5620000af620000fb60201b60201c565b620000ff565b600854600d80546001600160a01b0319166001600160a01b0390921691821790819055620000f591906001600160601b03600160a01b9091041662000151565b62000339565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b0382161115620001c55760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b0382166200021d5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620001bc565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600655565b8280546200026490620002fc565b90600052602060002090601f016020900481019282620002885760008555620002d3565b82601f10620002a357805160ff1916838001178555620002d3565b82800160010185558215620002d3579182015b82811115620002d3578251825591602001919060010190620002b6565b50620002e1929150620002e5565b5090565b5b80821115620002e15760008155600101620002e6565b600181811c908216806200031157607f821691505b602082108114156200033357634e487b7160e01b600052602260045260246000fd5b50919050565b612c6080620003496000396000f3fe6080604052600436106102bb5760003560e01c80637bddd65b1161016e578063b88d4fde116100cb578063e90265ad1161007f578063f0a6831211610064578063f0a683121461078e578063f2fde38b146107a4578063f7ed6ede146107c457600080fd5b8063e90265ad14610726578063e985e9c51461074557600080fd5b8063ba7a86b8116100b0578063ba7a86b8146106dc578063c87b56dd146106f1578063e222c7f91461071157600080fd5b8063b88d4fde14610673578063b8997a971461069357600080fd5b8063a035b1fe11610122578063a22cb46511610107578063a22cb4651461061e578063ad2f852a1461063e578063ae120dd51461065e57600080fd5b8063a035b1fe146105f5578063a0712d681461060b57600080fd5b80638da5cb5b116101535780638da5cb5b146105a257806391b7f5ed146105c057806395d89b41146105e057600080fd5b80637bddd65b1461055257806384f113631461057257600080fd5b806331faafb41161021c5780636352211e116101d05780636f17d668116101b55780636f17d668146104fd57806370a082311461051d578063715018a61461053d57600080fd5b80636352211e146104c7578063639814e0146104e757600080fd5b80633ccfd60b116102015780633ccfd60b1461047257806342842e0e1461048757806355f804b3146104a757600080fd5b806331faafb41461043c57806332cb6b0c1461045c57600080fd5b806314bc1f0d116102735780631e84c413116102585780631e84c413146103c357806323b872dd146103dd5780632a55205a146103fd57600080fd5b806314bc1f0d1461039157806318160ddd146103a457600080fd5b806306fdde03116102a457806306fdde0314610317578063081812fc14610339578063095ea7b31461037157600080fd5b806301ffc9a7146102c057806306d254da146102f5575b600080fd5b3480156102cc57600080fd5b506102e06102db3660046126a7565b6107e4565b60405190151581526020015b60405180910390f35b34801561030157600080fd5b506103156103103660046126e0565b6107f5565b005b34801561032357600080fd5b5061032c610882565b6040516102ec9190612753565b34801561034557600080fd5b50610359610354366004612766565b610914565b6040516001600160a01b0390911681526020016102ec565b34801561037d57600080fd5b5061031561038c36600461277f565b6109a9565b61031561039f3660046127a9565b610adb565b3480156103b057600080fd5b50600e545b6040519081526020016102ec565b3480156103cf57600080fd5b50600b546102e09060ff1681565b3480156103e957600080fd5b506103156103f8366004612828565b610cc4565b34801561040957600080fd5b5061041d610418366004612864565b610d4b565b604080516001600160a01b0390931683526020830191909152016102ec565b34801561044857600080fd5b50610315610457366004612886565b610e06565b34801561046857600080fd5b506103b56122b881565b34801561047e57600080fd5b50610315610e8c565b34801561049357600080fd5b506103156104a2366004612828565b610ef0565b3480156104b357600080fd5b506103156104c2366004612940565b610f0b565b3480156104d357600080fd5b506103596104e2366004612766565b610f6a565b3480156104f357600080fd5b506103b5600a5481565b34801561050957600080fd5b50610315610518366004612766565b610ff5565b34801561052957600080fd5b506103b56105383660046126e0565b61111b565b34801561054957600080fd5b506103156111b5565b34801561055e57600080fd5b5061031561056d366004612766565b611209565b34801561057e57600080fd5b506102e061058d366004612766565b60009081526012602052604090205460ff1690565b3480156105ae57600080fd5b506008546001600160a01b0316610359565b3480156105cc57600080fd5b506103156105db366004612766565b611256565b3480156105ec57600080fd5b5061032c6112a3565b34801561060157600080fd5b506103b560095481565b610315610619366004612766565b6112b2565b34801561062a57600080fd5b50610315610639366004612989565b6113d5565b34801561064a57600080fd5b50600d54610359906001600160a01b031681565b34801561066a57600080fd5b506103156113e0565b34801561067f57600080fd5b5061031561068e3660046129c5565b611445565b34801561069f57600080fd5b50600d546106bf90600160a01b90046bffffffffffffffffffffffff1681565b6040516bffffffffffffffffffffffff90911681526020016102ec565b3480156106e857600080fd5b506103156114d3565b3480156106fd57600080fd5b5061032c61070c366004612766565b611587565b34801561071d57600080fd5b50610315611670565b34801561073257600080fd5b50600b546102e090610100900460ff1681565b34801561075157600080fd5b506102e0610760366004612a41565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561079a57600080fd5b506103b5600c5481565b3480156107b057600080fd5b506103156107bf3660046126e0565b6116cc565b3480156107d057600080fd5b506103156107df366004612766565b611799565b60006107ef826117e6565b92915050565b6008546001600160a01b031633146108425760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b83398151915260448201526064015b60405180910390fd5b600d80546001600160a01b0319166001600160a01b0383169081179182905561087f91600160a01b90046bffffffffffffffffffffffff16611824565b50565b60606000805461089190612a74565b80601f01602080910402602001604051908101604052809291908181526020018280546108bd90612a74565b801561090a5780601f106108df5761010080835404028352916020019161090a565b820191906000526020600020905b8154815290600101906020018083116108ed57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661098d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610839565b506000908152600460205260409020546001600160a01b031690565b60006109b482610f6a565b9050806001600160a01b0316836001600160a01b03161415610a3e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610839565b336001600160a01b0382161480610a5a5750610a5a8133610760565b610acc5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610839565b610ad6838361193e565b505050565b600b54610100900460ff16610b325760405162461bcd60e51b815260206004820152601560248201527f5072656d696e742073616c65206e6f74206f70656e00000000000000000000006044820152606401610839565b3483600954610b419190612ac5565b14610b8e5760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e7400000000000000006044820152606401610839565b610c0382828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c546040516bffffffffffffffffffffffff193360601b1660208201529092506034019050604051602081830303815290604052805190602001206119ac565b610c4f5760405162461bcd60e51b815260206004820152601b60248201527f41646472657373206e6f7420696e207072656d696e74206c69737400000000006044820152606401610839565b600a5433600090815260116020526040902054610c6d908590612ae4565b1115610cbb5760405162461bcd60e51b815260206004820152601660248201527f45786365656473206d6178206d696e7420636f756e74000000000000000000006044820152606401610839565b610ad6836119c2565b610cce3382611afa565b610d405760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610839565b610ad6838383611bf1565b60008281526007602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046bffffffffffffffffffffffff16928201929092528291610dca5750604080518082019091526006546001600160a01b0381168252600160a01b90046bffffffffffffffffffffffff1660208201525b602081015160009061271090610dee906bffffffffffffffffffffffff1687612ac5565b610df89190612b12565b915196919550909350505050565b6008546001600160a01b03163314610e4e5760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b600d80546001600160a01b03908116600160a01b6bffffffffffffffffffffffff85811682028381179586905561087f959416909217920416611824565b6008546001600160a01b03163314610ed45760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b4761087f610eea6008546001600160a01b031690565b82611dbe565b610ad683838360405180602001604052806000815250611445565b6008546001600160a01b03163314610f535760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b8051610f669060109060208401906125f8565b5050565b6000818152600260205260408120546001600160a01b0316806107ef5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610839565b6008546001600160a01b0316331461103d5760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b6000818152600260205260409020546001600160a01b03166110a15760405162461bcd60e51b815260206004820152601460248201527f546f6b656e20646f6573206e6f742065786973740000000000000000000000006044820152606401610839565b60008181526012602052604090205460ff16156111005760405162461bcd60e51b815260206004820152601560248201527f546f6b656e20616c726561647920636c61696d656400000000000000000000006044820152606401610839565b6000908152601260205260409020805460ff19166001179055565b60006001600160a01b0382166111995760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610839565b506001600160a01b031660009081526003602052604090205490565b6008546001600160a01b031633146111fd5760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b6112076000611ed7565b565b6008546001600160a01b031633146112515760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b600a55565b6008546001600160a01b0316331461129e5760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b600955565b60606001805461089190612a74565b600b5460ff166113045760405162461bcd60e51b815260206004820152601460248201527f5075626c69632073616c65206e6f74206f70656e0000000000000000000000006044820152606401610839565b34816009546113139190612ac5565b146113605760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e7400000000000000006044820152606401610839565b600a543360009081526011602052604090205461137e908390612ae4565b11156113cc5760405162461bcd60e51b815260206004820152601660248201527f45786365656473206d6178206d696e7420636f756e74000000000000000000006044820152606401610839565b61087f816119c2565b610f66338383611f29565b6008546001600160a01b031633146114285760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b600b805461ff001981166101009182900460ff1615909102179055565b61144f3383611afa565b6114c15760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610839565b6114cd84848484611ff8565b50505050565b6008546001600160a01b0316331461151b5760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b600f5460ff161561156e5760405162461bcd60e51b815260206004820152601360248201527f5465616d20616c7265616479206d696e746564000000000000000000000000006044820152606401610839565b61157860fa6119c2565b600f805460ff19166001179055565b6000818152600260205260409020546060906001600160a01b03166116145760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610839565b600061161e612076565b9050600081511161163e5760405180602001604052806000815250611669565b8061164884612085565b604051602001611659929190612b26565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146116b85760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b600b805460ff19811660ff90911615179055565b6008546001600160a01b031633146117145760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b6001600160a01b0381166117905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610839565b61087f81611ed7565b6008546001600160a01b031633146117e15760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b600c55565b60006001600160e01b031982167f2a55205a0000000000000000000000000000000000000000000000000000000014806107ef57506107ef826121b7565b6127106bffffffffffffffffffffffff821611156118aa5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610839565b6001600160a01b0382166119005760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610839565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff9091166020909201829052600160a01b90910217600655565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061197382610f6a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000826119b98584612252565b14949350505050565b60008111611a125760405162461bcd60e51b815260206004820152601460248201527f4d757374206d696e74206174206c6561737420310000000000000000000000006044820152606401610839565b6122b881600e54611a239190612ae4565b1115611a715760405162461bcd60e51b815260206004820152601260248201527f45786365656473206d617820737570706c7900000000000000000000000000006044820152606401610839565b3360005b82811015611ab157611a9f8282600e54611a8f9190612ae4565b611a9a906001612ae4565b6122c6565b80611aa981612b55565b915050611a75565b5081600e6000828254611ac49190612ae4565b90915550506001600160a01b03811660009081526011602052604081208054849290611af1908490612ae4565b90915550505050565b6000818152600260205260408120546001600160a01b0316611b735760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610839565b6000611b7e83610f6a565b9050806001600160a01b0316846001600160a01b03161480611bb95750836001600160a01b0316611bae84610914565b6001600160a01b0316145b80611be957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c0482610f6a565b6001600160a01b031614611c805760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610839565b6001600160a01b038216611cfb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610839565b611d0660008261193e565b6001600160a01b0383166000908152600360205260408120805460019290611d2f908490612b70565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d5d908490612ae4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b80471015611e0e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610839565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611e5b576040519150601f19603f3d011682016040523d82523d6000602084013e611e60565b606091505b5050905080610ad65760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610839565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611f8b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610839565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612003848484611bf1565b61200f848484846122e0565b6114cd5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610839565b60606010805461089190612a74565b6060816120c557505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156120ef57806120d981612b55565b91506120e89050600a83612b12565b91506120c9565b60008167ffffffffffffffff81111561210a5761210a6128b4565b6040519080825280601f01601f191660200182016040528015612134576020820181803683370190505b5090505b8415611be957612149600183612b70565b9150612156600a86612b87565b612161906030612ae4565b60f81b81838151811061217657612176612b9b565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506121b0600a86612b12565b9450612138565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061221a57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107ef57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146107ef565b600081815b84518110156122be57600085828151811061227457612274612b9b565b6020026020010151905080831161229a57600083815260208290526040902092506122ab565b600081815260208490526040902092505b50806122b681612b55565b915050612257565b509392505050565b610f66828260405180602001604052806000815250612438565b60006001600160a01b0384163b1561242d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612324903390899088908890600401612bb1565b602060405180830381600087803b15801561233e57600080fd5b505af192505050801561236e575060408051601f3d908101601f1916820190925261236b91810190612bed565b60015b612413573d80801561239c576040519150601f19603f3d011682016040523d82523d6000602084013e6123a1565b606091505b50805161240b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610839565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611be9565b506001949350505050565b61244283836124b6565b61244f60008484846122e0565b610ad65760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610839565b6001600160a01b03821661250c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610839565b6000818152600260205260409020546001600160a01b0316156125715760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610839565b6001600160a01b038216600090815260036020526040812080546001929061259a908490612ae4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461260490612a74565b90600052602060002090601f016020900481019282612626576000855561266c565b82601f1061263f57805160ff191683800117855561266c565b8280016001018555821561266c579182015b8281111561266c578251825591602001919060010190612651565b5061267892915061267c565b5090565b5b80821115612678576000815560010161267d565b6001600160e01b03198116811461087f57600080fd5b6000602082840312156126b957600080fd5b813561166981612691565b80356001600160a01b03811681146126db57600080fd5b919050565b6000602082840312156126f257600080fd5b611669826126c4565b60005b838110156127165781810151838201526020016126fe565b838111156114cd5750506000910152565b6000815180845261273f8160208601602086016126fb565b601f01601f19169290920160200192915050565b6020815260006116696020830184612727565b60006020828403121561277857600080fd5b5035919050565b6000806040838503121561279257600080fd5b61279b836126c4565b946020939093013593505050565b6000806000604084860312156127be57600080fd5b83359250602084013567ffffffffffffffff808211156127dd57600080fd5b818601915086601f8301126127f157600080fd5b81358181111561280057600080fd5b8760208260051b850101111561281557600080fd5b6020830194508093505050509250925092565b60008060006060848603121561283d57600080fd5b612846846126c4565b9250612854602085016126c4565b9150604084013590509250925092565b6000806040838503121561287757600080fd5b50508035926020909101359150565b60006020828403121561289857600080fd5b81356bffffffffffffffffffffffff8116811461166957600080fd5b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156128e5576128e56128b4565b604051601f8501601f19908116603f0116810190828211818310171561290d5761290d6128b4565b8160405280935085815286868601111561292657600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561295257600080fd5b813567ffffffffffffffff81111561296957600080fd5b8201601f8101841361297a57600080fd5b611be9848235602084016128ca565b6000806040838503121561299c57600080fd5b6129a5836126c4565b9150602083013580151581146129ba57600080fd5b809150509250929050565b600080600080608085870312156129db57600080fd5b6129e4856126c4565b93506129f2602086016126c4565b925060408501359150606085013567ffffffffffffffff811115612a1557600080fd5b8501601f81018713612a2657600080fd5b612a35878235602084016128ca565b91505092959194509250565b60008060408385031215612a5457600080fd5b612a5d836126c4565b9150612a6b602084016126c4565b90509250929050565b600181811c90821680612a8857607f821691505b60208210811415612aa957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612adf57612adf612aaf565b500290565b60008219821115612af757612af7612aaf565b500190565b634e487b7160e01b600052601260045260246000fd5b600082612b2157612b21612afc565b500490565b60008351612b388184602088016126fb565b835190830190612b4c8183602088016126fb565b01949350505050565b6000600019821415612b6957612b69612aaf565b5060010190565b600082821015612b8257612b82612aaf565b500390565b600082612b9657612b96612afc565b500690565b634e487b7160e01b600052603260045260246000fd5b60006001600160a01b03808716835280861660208401525083604083015260806060830152612be36080830184612727565b9695505050505050565b600060208284031215612bff57600080fd5b81516116698161269156fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220edc11c083c816a437f952fd295377b23ec946b0b634a7cecb381022013703bb864736f6c63430008080033

Deployed Bytecode

0x6080604052600436106102bb5760003560e01c80637bddd65b1161016e578063b88d4fde116100cb578063e90265ad1161007f578063f0a6831211610064578063f0a683121461078e578063f2fde38b146107a4578063f7ed6ede146107c457600080fd5b8063e90265ad14610726578063e985e9c51461074557600080fd5b8063ba7a86b8116100b0578063ba7a86b8146106dc578063c87b56dd146106f1578063e222c7f91461071157600080fd5b8063b88d4fde14610673578063b8997a971461069357600080fd5b8063a035b1fe11610122578063a22cb46511610107578063a22cb4651461061e578063ad2f852a1461063e578063ae120dd51461065e57600080fd5b8063a035b1fe146105f5578063a0712d681461060b57600080fd5b80638da5cb5b116101535780638da5cb5b146105a257806391b7f5ed146105c057806395d89b41146105e057600080fd5b80637bddd65b1461055257806384f113631461057257600080fd5b806331faafb41161021c5780636352211e116101d05780636f17d668116101b55780636f17d668146104fd57806370a082311461051d578063715018a61461053d57600080fd5b80636352211e146104c7578063639814e0146104e757600080fd5b80633ccfd60b116102015780633ccfd60b1461047257806342842e0e1461048757806355f804b3146104a757600080fd5b806331faafb41461043c57806332cb6b0c1461045c57600080fd5b806314bc1f0d116102735780631e84c413116102585780631e84c413146103c357806323b872dd146103dd5780632a55205a146103fd57600080fd5b806314bc1f0d1461039157806318160ddd146103a457600080fd5b806306fdde03116102a457806306fdde0314610317578063081812fc14610339578063095ea7b31461037157600080fd5b806301ffc9a7146102c057806306d254da146102f5575b600080fd5b3480156102cc57600080fd5b506102e06102db3660046126a7565b6107e4565b60405190151581526020015b60405180910390f35b34801561030157600080fd5b506103156103103660046126e0565b6107f5565b005b34801561032357600080fd5b5061032c610882565b6040516102ec9190612753565b34801561034557600080fd5b50610359610354366004612766565b610914565b6040516001600160a01b0390911681526020016102ec565b34801561037d57600080fd5b5061031561038c36600461277f565b6109a9565b61031561039f3660046127a9565b610adb565b3480156103b057600080fd5b50600e545b6040519081526020016102ec565b3480156103cf57600080fd5b50600b546102e09060ff1681565b3480156103e957600080fd5b506103156103f8366004612828565b610cc4565b34801561040957600080fd5b5061041d610418366004612864565b610d4b565b604080516001600160a01b0390931683526020830191909152016102ec565b34801561044857600080fd5b50610315610457366004612886565b610e06565b34801561046857600080fd5b506103b56122b881565b34801561047e57600080fd5b50610315610e8c565b34801561049357600080fd5b506103156104a2366004612828565b610ef0565b3480156104b357600080fd5b506103156104c2366004612940565b610f0b565b3480156104d357600080fd5b506103596104e2366004612766565b610f6a565b3480156104f357600080fd5b506103b5600a5481565b34801561050957600080fd5b50610315610518366004612766565b610ff5565b34801561052957600080fd5b506103b56105383660046126e0565b61111b565b34801561054957600080fd5b506103156111b5565b34801561055e57600080fd5b5061031561056d366004612766565b611209565b34801561057e57600080fd5b506102e061058d366004612766565b60009081526012602052604090205460ff1690565b3480156105ae57600080fd5b506008546001600160a01b0316610359565b3480156105cc57600080fd5b506103156105db366004612766565b611256565b3480156105ec57600080fd5b5061032c6112a3565b34801561060157600080fd5b506103b560095481565b610315610619366004612766565b6112b2565b34801561062a57600080fd5b50610315610639366004612989565b6113d5565b34801561064a57600080fd5b50600d54610359906001600160a01b031681565b34801561066a57600080fd5b506103156113e0565b34801561067f57600080fd5b5061031561068e3660046129c5565b611445565b34801561069f57600080fd5b50600d546106bf90600160a01b90046bffffffffffffffffffffffff1681565b6040516bffffffffffffffffffffffff90911681526020016102ec565b3480156106e857600080fd5b506103156114d3565b3480156106fd57600080fd5b5061032c61070c366004612766565b611587565b34801561071d57600080fd5b50610315611670565b34801561073257600080fd5b50600b546102e090610100900460ff1681565b34801561075157600080fd5b506102e0610760366004612a41565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561079a57600080fd5b506103b5600c5481565b3480156107b057600080fd5b506103156107bf3660046126e0565b6116cc565b3480156107d057600080fd5b506103156107df366004612766565b611799565b60006107ef826117e6565b92915050565b6008546001600160a01b031633146108425760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b83398151915260448201526064015b60405180910390fd5b600d80546001600160a01b0319166001600160a01b0383169081179182905561087f91600160a01b90046bffffffffffffffffffffffff16611824565b50565b60606000805461089190612a74565b80601f01602080910402602001604051908101604052809291908181526020018280546108bd90612a74565b801561090a5780601f106108df5761010080835404028352916020019161090a565b820191906000526020600020905b8154815290600101906020018083116108ed57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661098d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610839565b506000908152600460205260409020546001600160a01b031690565b60006109b482610f6a565b9050806001600160a01b0316836001600160a01b03161415610a3e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610839565b336001600160a01b0382161480610a5a5750610a5a8133610760565b610acc5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610839565b610ad6838361193e565b505050565b600b54610100900460ff16610b325760405162461bcd60e51b815260206004820152601560248201527f5072656d696e742073616c65206e6f74206f70656e00000000000000000000006044820152606401610839565b3483600954610b419190612ac5565b14610b8e5760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e7400000000000000006044820152606401610839565b610c0382828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c546040516bffffffffffffffffffffffff193360601b1660208201529092506034019050604051602081830303815290604052805190602001206119ac565b610c4f5760405162461bcd60e51b815260206004820152601b60248201527f41646472657373206e6f7420696e207072656d696e74206c69737400000000006044820152606401610839565b600a5433600090815260116020526040902054610c6d908590612ae4565b1115610cbb5760405162461bcd60e51b815260206004820152601660248201527f45786365656473206d6178206d696e7420636f756e74000000000000000000006044820152606401610839565b610ad6836119c2565b610cce3382611afa565b610d405760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610839565b610ad6838383611bf1565b60008281526007602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046bffffffffffffffffffffffff16928201929092528291610dca5750604080518082019091526006546001600160a01b0381168252600160a01b90046bffffffffffffffffffffffff1660208201525b602081015160009061271090610dee906bffffffffffffffffffffffff1687612ac5565b610df89190612b12565b915196919550909350505050565b6008546001600160a01b03163314610e4e5760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b600d80546001600160a01b03908116600160a01b6bffffffffffffffffffffffff85811682028381179586905561087f959416909217920416611824565b6008546001600160a01b03163314610ed45760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b4761087f610eea6008546001600160a01b031690565b82611dbe565b610ad683838360405180602001604052806000815250611445565b6008546001600160a01b03163314610f535760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b8051610f669060109060208401906125f8565b5050565b6000818152600260205260408120546001600160a01b0316806107ef5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610839565b6008546001600160a01b0316331461103d5760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b6000818152600260205260409020546001600160a01b03166110a15760405162461bcd60e51b815260206004820152601460248201527f546f6b656e20646f6573206e6f742065786973740000000000000000000000006044820152606401610839565b60008181526012602052604090205460ff16156111005760405162461bcd60e51b815260206004820152601560248201527f546f6b656e20616c726561647920636c61696d656400000000000000000000006044820152606401610839565b6000908152601260205260409020805460ff19166001179055565b60006001600160a01b0382166111995760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610839565b506001600160a01b031660009081526003602052604090205490565b6008546001600160a01b031633146111fd5760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b6112076000611ed7565b565b6008546001600160a01b031633146112515760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b600a55565b6008546001600160a01b0316331461129e5760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b600955565b60606001805461089190612a74565b600b5460ff166113045760405162461bcd60e51b815260206004820152601460248201527f5075626c69632073616c65206e6f74206f70656e0000000000000000000000006044820152606401610839565b34816009546113139190612ac5565b146113605760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e7400000000000000006044820152606401610839565b600a543360009081526011602052604090205461137e908390612ae4565b11156113cc5760405162461bcd60e51b815260206004820152601660248201527f45786365656473206d6178206d696e7420636f756e74000000000000000000006044820152606401610839565b61087f816119c2565b610f66338383611f29565b6008546001600160a01b031633146114285760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b600b805461ff001981166101009182900460ff1615909102179055565b61144f3383611afa565b6114c15760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610839565b6114cd84848484611ff8565b50505050565b6008546001600160a01b0316331461151b5760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b600f5460ff161561156e5760405162461bcd60e51b815260206004820152601360248201527f5465616d20616c7265616479206d696e746564000000000000000000000000006044820152606401610839565b61157860fa6119c2565b600f805460ff19166001179055565b6000818152600260205260409020546060906001600160a01b03166116145760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610839565b600061161e612076565b9050600081511161163e5760405180602001604052806000815250611669565b8061164884612085565b604051602001611659929190612b26565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146116b85760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b600b805460ff19811660ff90911615179055565b6008546001600160a01b031633146117145760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b6001600160a01b0381166117905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610839565b61087f81611ed7565b6008546001600160a01b031633146117e15760405162461bcd60e51b81526020600482018190526024820152600080516020612c0b8339815191526044820152606401610839565b600c55565b60006001600160e01b031982167f2a55205a0000000000000000000000000000000000000000000000000000000014806107ef57506107ef826121b7565b6127106bffffffffffffffffffffffff821611156118aa5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610839565b6001600160a01b0382166119005760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610839565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff9091166020909201829052600160a01b90910217600655565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061197382610f6a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000826119b98584612252565b14949350505050565b60008111611a125760405162461bcd60e51b815260206004820152601460248201527f4d757374206d696e74206174206c6561737420310000000000000000000000006044820152606401610839565b6122b881600e54611a239190612ae4565b1115611a715760405162461bcd60e51b815260206004820152601260248201527f45786365656473206d617820737570706c7900000000000000000000000000006044820152606401610839565b3360005b82811015611ab157611a9f8282600e54611a8f9190612ae4565b611a9a906001612ae4565b6122c6565b80611aa981612b55565b915050611a75565b5081600e6000828254611ac49190612ae4565b90915550506001600160a01b03811660009081526011602052604081208054849290611af1908490612ae4565b90915550505050565b6000818152600260205260408120546001600160a01b0316611b735760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610839565b6000611b7e83610f6a565b9050806001600160a01b0316846001600160a01b03161480611bb95750836001600160a01b0316611bae84610914565b6001600160a01b0316145b80611be957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c0482610f6a565b6001600160a01b031614611c805760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610839565b6001600160a01b038216611cfb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610839565b611d0660008261193e565b6001600160a01b0383166000908152600360205260408120805460019290611d2f908490612b70565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d5d908490612ae4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b80471015611e0e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610839565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611e5b576040519150601f19603f3d011682016040523d82523d6000602084013e611e60565b606091505b5050905080610ad65760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610839565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611f8b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610839565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612003848484611bf1565b61200f848484846122e0565b6114cd5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610839565b60606010805461089190612a74565b6060816120c557505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156120ef57806120d981612b55565b91506120e89050600a83612b12565b91506120c9565b60008167ffffffffffffffff81111561210a5761210a6128b4565b6040519080825280601f01601f191660200182016040528015612134576020820181803683370190505b5090505b8415611be957612149600183612b70565b9150612156600a86612b87565b612161906030612ae4565b60f81b81838151811061217657612176612b9b565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506121b0600a86612b12565b9450612138565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061221a57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107ef57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146107ef565b600081815b84518110156122be57600085828151811061227457612274612b9b565b6020026020010151905080831161229a57600083815260208290526040902092506122ab565b600081815260208490526040902092505b50806122b681612b55565b915050612257565b509392505050565b610f66828260405180602001604052806000815250612438565b60006001600160a01b0384163b1561242d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612324903390899088908890600401612bb1565b602060405180830381600087803b15801561233e57600080fd5b505af192505050801561236e575060408051601f3d908101601f1916820190925261236b91810190612bed565b60015b612413573d80801561239c576040519150601f19603f3d011682016040523d82523d6000602084013e6123a1565b606091505b50805161240b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610839565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611be9565b506001949350505050565b61244283836124b6565b61244f60008484846122e0565b610ad65760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610839565b6001600160a01b03821661250c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610839565b6000818152600260205260409020546001600160a01b0316156125715760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610839565b6001600160a01b038216600090815260036020526040812080546001929061259a908490612ae4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461260490612a74565b90600052602060002090601f016020900481019282612626576000855561266c565b82601f1061263f57805160ff191683800117855561266c565b8280016001018555821561266c579182015b8281111561266c578251825591602001919060010190612651565b5061267892915061267c565b5090565b5b80821115612678576000815560010161267d565b6001600160e01b03198116811461087f57600080fd5b6000602082840312156126b957600080fd5b813561166981612691565b80356001600160a01b03811681146126db57600080fd5b919050565b6000602082840312156126f257600080fd5b611669826126c4565b60005b838110156127165781810151838201526020016126fe565b838111156114cd5750506000910152565b6000815180845261273f8160208601602086016126fb565b601f01601f19169290920160200192915050565b6020815260006116696020830184612727565b60006020828403121561277857600080fd5b5035919050565b6000806040838503121561279257600080fd5b61279b836126c4565b946020939093013593505050565b6000806000604084860312156127be57600080fd5b83359250602084013567ffffffffffffffff808211156127dd57600080fd5b818601915086601f8301126127f157600080fd5b81358181111561280057600080fd5b8760208260051b850101111561281557600080fd5b6020830194508093505050509250925092565b60008060006060848603121561283d57600080fd5b612846846126c4565b9250612854602085016126c4565b9150604084013590509250925092565b6000806040838503121561287757600080fd5b50508035926020909101359150565b60006020828403121561289857600080fd5b81356bffffffffffffffffffffffff8116811461166957600080fd5b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156128e5576128e56128b4565b604051601f8501601f19908116603f0116810190828211818310171561290d5761290d6128b4565b8160405280935085815286868601111561292657600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561295257600080fd5b813567ffffffffffffffff81111561296957600080fd5b8201601f8101841361297a57600080fd5b611be9848235602084016128ca565b6000806040838503121561299c57600080fd5b6129a5836126c4565b9150602083013580151581146129ba57600080fd5b809150509250929050565b600080600080608085870312156129db57600080fd5b6129e4856126c4565b93506129f2602086016126c4565b925060408501359150606085013567ffffffffffffffff811115612a1557600080fd5b8501601f81018713612a2657600080fd5b612a35878235602084016128ca565b91505092959194509250565b60008060408385031215612a5457600080fd5b612a5d836126c4565b9150612a6b602084016126c4565b90509250929050565b600181811c90821680612a8857607f821691505b60208210811415612aa957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612adf57612adf612aaf565b500290565b60008219821115612af757612af7612aaf565b500190565b634e487b7160e01b600052601260045260246000fd5b600082612b2157612b21612afc565b500490565b60008351612b388184602088016126fb565b835190830190612b4c8183602088016126fb565b01949350505050565b6000600019821415612b6957612b69612aaf565b5060010190565b600082821015612b8257612b82612aaf565b500390565b600082612b9657612b96612afc565b500690565b634e487b7160e01b600052603260045260246000fd5b60006001600160a01b03808716835280861660208401525083604083015260806060830152612be36080830184612727565b9695505050505050565b600060208284031215612bff57600080fd5b81516116698161269156fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220edc11c083c816a437f952fd295377b23ec946b0b634a7cecb381022013703bb864736f6c63430008080033

Loading...
Loading
Loading...
Loading
[ 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.