ETH Price: $3,089.26 (+0.93%)
Gas: 3 Gwei

Token

MeoWomen (MWM)
 

Overview

Max Total Supply

4,096 MWM

Holders

1,470

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MWM
0x8ff49f9f637a3e81157359eeecc57fa13b251c24
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MeoWomen

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : MeoWomen.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract MeoWomen is ERC721A, Ownable {
    // Pre Sale Price
    uint256 public preSalePrice = 0.08 ether;

    // Public Sale Price
    uint256 public publicSalePrice = 0.1 ether;

    // Supply 
    uint256 public immutable maxSupply = 4096;

    // Reserved
    uint256 public immutable reserved = 96;

    // Reserved Minted
    uint256 public reservedMinted = 0;

    // Base URI
    string private baseURI;

    // Is Presale Active
    bool public isPreSaleActive = true;

    // Presales Start TimeStamp
    uint256 public preSaleStartTimeStamp = 1652365440;

    // Presales End TimeStamp
    uint256 public preSaleEndTimeStamp = 1652451840;

    // Max Mint Per Wallet at Presales Period
    uint256 private maxPreSaleMintPerWallet = 3;
    
    // Address Redeemed Count at Presales Period
    mapping(address => uint256) private preSaleRedeemed;

    // Is Public Sale Active
    bool public isPublicSaleActive = true;

    // Normal Sales Start TimeStamp
    uint256 public publicSaleStartTimeStamp = 1652451840;

    // Merkle Root for Presale
    bytes32 public preSaleRoot;

    constructor()ERC721A("MeoWomen", "MWM"){}

    function preSaleMint(uint256 quantity, bytes32[] calldata proof) external payable {
        require((totalSupply() + quantity) <= (maxSupply - reserved + reservedMinted), "All NFTs are minted");
        require(isPreSaleActive, "PreSale Is Inactive");
        require(isPreSalePeriod(), "Not In PreSale Period");
        require(msg.value >= preSalePrice * quantity, "Payment is not correct");
        require(
            MerkleProof.verify(
                proof,
                preSaleRoot,
                keccak256(abi.encodePacked(_msgSender()))
            ),
            "Signature incorrect"
        );
        require((preSaleRedeemed[_msgSender()] + quantity) <= maxPreSaleMintPerWallet, "Exceed Pre Sale Mint Limit");

        preSaleRedeemed[_msgSender()] = preSaleRedeemed[_msgSender()] + quantity;

        _safeMint(_msgSender(), quantity);
    }

    function mint(uint256 quantity) external payable {
        require(_msgSender() == tx.origin, "Anti bot");
        require((totalSupply() + quantity) <= (maxSupply - reserved + reservedMinted), "All NFTs are minted");
        require(isPublicSaleActive, "Public Sale Is Inactive");
        require(isPublicSalePeriod(), "Not In Public Sale Period");
        require(msg.value >= publicSalePrice * quantity, "Incorrect Value");
        require(quantity <= 10, "Only 10 can be minted in a transaction.");

        _safeMint(_msgSender(), quantity);
    }

    function isPreSalePeriod() public view returns (bool) {
        return ((preSaleStartTimeStamp == 0) || (block.timestamp >= preSaleStartTimeStamp && block.timestamp < preSaleEndTimeStamp));
    }

    function isPublicSalePeriod() public view returns (bool) {
        return ((publicSaleStartTimeStamp == 0) || (block.timestamp >= publicSaleStartTimeStamp));
    }

    function getPreSaleRedeemed(address addr) public view returns (uint256) {
        return preSaleRedeemed[addr];
    }

    function setPreSaleStartTimeStamp(uint256 timestamp) external onlyOwner {
        preSaleStartTimeStamp = timestamp;
    }

    function setPreSaleEndTimeStamp(uint256 timestamp) external onlyOwner {
        preSaleEndTimeStamp = timestamp;
    }

    function setPublicSaleStartTimeStamp(uint256 timestamp) external onlyOwner {
        publicSaleStartTimeStamp = timestamp;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setPresaleRoot(bytes32 root) external onlyOwner {
        preSaleRoot = root;
    }

    function setPresaleMaxPerWallet(uint256 maxPerWallet) external onlyOwner {
        maxPreSaleMintPerWallet = maxPerWallet;
    }

    function togglePresaleActive() external onlyOwner {
        isPreSaleActive = !isPreSaleActive;
    }

    function toggleSaleActive() external onlyOwner {
        isPublicSaleActive = !isPublicSaleActive;
    }

    function setPreSalePrice(uint256 newPrice) external onlyOwner {
        preSalePrice = newPrice;
    }

    function setPublicSalePrice(uint256 newPrice) external onlyOwner {
        publicSalePrice = newPrice;
    }

    function grantTokens(address[] calldata to, uint[] calldata quantity) external onlyOwner{
        require(to.length == quantity.length);
        for (uint256 i = 0; i < to.length; i++) {
            reservedMinted = reservedMinted + quantity[i];
            require(reservedMinted <= reserved, "All Reserved NFTs are minted");
            _safeMint(to[i], quantity[i]);
        } 
    }

    function burnTokens() external onlyOwner {
        uint256 remainCount = maxSupply - totalSupply();
        _safeMint(0x000000000000000000000000000000000000dEaD, remainCount);
    }

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

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

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

}

File 2 of 12 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 3 of 12 : 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 4 of 12 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Merkle 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 5 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

File 7 of 12 : 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 8 of 12 : 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 9 of 12 : 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 10 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 11 of 12 : 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 12 of 12 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":[{"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":[],"name":"burnTokens","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":"address","name":"addr","type":"address"}],"name":"getPreSaleRedeemed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"quantity","type":"uint256[]"}],"name":"grantTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSalePeriod","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":"isPublicSalePeriod","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","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":[],"name":"preSaleEndTimeStamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleStartTimeStamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStartTimeStamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reservedMinted","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":"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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setPreSaleEndTimeStamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setPreSaleStartTimeStamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet","type":"uint256"}],"name":"setPresaleMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setPresaleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setPublicSaleStartTimeStamp","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":"togglePresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleActive","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"}]

60c060405267011c37937e08000060095567016345785d8a0000600a55611000608090815250606060a0908152506000600b556001600d60006101000a81548160ff02191690831515021790555063627d1880600e5563627e6a00600f5560036010556001601260006101000a81548160ff02191690831515021790555063627e6a006013553480156200009257600080fd5b506040518060400160405280600881526020017f4d656f576f6d656e0000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4d574d000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200011792919062000246565b5080600390805190602001906200013092919062000246565b50620001416200016f60201b60201c565b6000819055505050620001696200015d6200017860201b60201c565b6200018060201b60201c565b6200035b565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025490620002f6565b90600052602060002090601f016020900481019282620002785760008555620002c4565b82601f106200029357805160ff1916838001178555620002c4565b82800160010185558215620002c4579182015b82811115620002c3578251825591602001919060010190620002a6565b5b509050620002d39190620002d7565b5090565b5b80821115620002f2576000816000905550600101620002d8565b5090565b600060028204905060018216806200030f57607f821691505b602082108114156200032657620003256200032c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160a0516149c7620003ab60003960008181610f7e0152818161134d01528181611c7601526123b9015260008181610c160152818161136e01528181611c97015261217701526149c76000f3fe60806040526004361061027d5760003560e01c806369c276e31161014f578063a0712d68116100c1578063e757c17d1161007a578063e757c17d1461090a578063e985e9c514610935578063f2fde38b14610972578063f6c7f3481461099b578063fb6a4f3a146109c4578063fe60d12c146109ef5761027d565b8063a0712d681461080b578063a22cb46514610827578063b658b60f14610850578063b88d4fde14610879578063c87b56dd146108a2578063d5abeb01146108df5761027d565b80637d7eee42116101135780637d7eee421461071f57806389b0649b146107485780638da5cb5b1461075f57806395d89b411461078a5780639b6860c8146107b55780639d044ed3146107e05761027d565b806369c276e31461064e57806370a0823114610679578063715018a6146106b657806379085e25146106cd578063791a2519146106f65761027d565b80633100a535116101f357806342842e0e116101ac57806342842e0e1461054f5780634c0770f0146105785780634c220f6e146105a15780634f297ccc146105bd57806355f804b3146105e85780636352211e146106115761027d565b80633100a535146104635780633154b9c21461047a5780633747b9d4146104a55780633abf317b146104d05780633ccfd60b1461050d5780633d946410146105245761027d565b8063136c778211610245578063136c7782146103675780631538d7d21461039057806318160ddd146103bb5780631ca559f1146103e65780631e84c4131461040f57806323b872dd1461043a5761027d565b806301ffc9a71461028257806306fdde03146102bf57806308003f78146102ea578063081812fc14610301578063095ea7b31461033e575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613b4d565b610a1a565b6040516102b69190613fe7565b60405180910390f35b3480156102cb57600080fd5b506102d4610afc565b6040516102e1919061401d565b60405180910390f35b3480156102f657600080fd5b506102ff610b8e565b005b34801561030d57600080fd5b5061032860048036038101906103239190613be0565b610c50565b6040516103359190613f80565b60405180910390f35b34801561034a57600080fd5b5061036560048036038101906103609190613a73565b610ccc565b005b34801561037357600080fd5b5061038e60048036038101906103899190613be0565b610dd7565b005b34801561039c57600080fd5b506103a5610e5d565b6040516103b29190613fe7565b60405180910390f35b3480156103c757600080fd5b506103d0610e76565b6040516103dd91906141ff565b60405180910390f35b3480156103f257600080fd5b5061040d60048036038101906104089190613aaf565b610e8d565b005b34801561041b57600080fd5b50610424611091565b6040516104319190613fe7565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c919061396d565b6110a4565b005b34801561046f57600080fd5b506104786110b4565b005b34801561048657600080fd5b5061048f61115c565b60405161049c9190614002565b60405180910390f35b3480156104b157600080fd5b506104ba611162565b6040516104c791906141ff565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f29190613908565b611168565b60405161050491906141ff565b60405180910390f35b34801561051957600080fd5b506105226111b1565b005b34801561053057600080fd5b5061053961127c565b6040516105469190613fe7565b60405180910390f35b34801561055b57600080fd5b506105766004803603810190610571919061396d565b6112a2565b005b34801561058457600080fd5b5061059f600480360381019061059a9190613be0565b6112c2565b005b6105bb60048036038101906105b69190613c09565b611348565b005b3480156105c957600080fd5b506105d26116dd565b6040516105df91906141ff565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190613b9f565b6116e3565b005b34801561061d57600080fd5b5061063860048036038101906106339190613be0565b611779565b6040516106459190613f80565b60405180910390f35b34801561065a57600080fd5b5061066361178f565b60405161067091906141ff565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b9190613908565b611795565b6040516106ad91906141ff565b60405180910390f35b3480156106c257600080fd5b506106cb611865565b005b3480156106d957600080fd5b506106f460048036038101906106ef9190613be0565b6118ed565b005b34801561070257600080fd5b5061071d60048036038101906107189190613be0565b611973565b005b34801561072b57600080fd5b5061074660048036038101906107419190613be0565b6119f9565b005b34801561075457600080fd5b5061075d611a7f565b005b34801561076b57600080fd5b50610774611b27565b6040516107819190613f80565b60405180910390f35b34801561079657600080fd5b5061079f611b51565b6040516107ac919061401d565b60405180910390f35b3480156107c157600080fd5b506107ca611be3565b6040516107d791906141ff565b60405180910390f35b3480156107ec57600080fd5b506107f5611be9565b6040516108029190613fe7565b60405180910390f35b61082560048036038101906108209190613be0565b611bfc565b005b34801561083357600080fd5b5061084e60048036038101906108499190613a37565b611e5c565b005b34801561085c57600080fd5b5061087760048036038101906108729190613b24565b611fd4565b005b34801561088557600080fd5b506108a0600480360381019061089b91906139bc565b61205a565b005b3480156108ae57600080fd5b506108c960048036038101906108c49190613be0565b6120d6565b6040516108d6919061401d565b60405180910390f35b3480156108eb57600080fd5b506108f4612175565b60405161090191906141ff565b60405180910390f35b34801561091657600080fd5b5061091f612199565b60405161092c91906141ff565b60405180910390f35b34801561094157600080fd5b5061095c60048036038101906109579190613931565b61219f565b6040516109699190613fe7565b60405180910390f35b34801561097e57600080fd5b5061099960048036038101906109949190613908565b612233565b005b3480156109a757600080fd5b506109c260048036038101906109bd9190613be0565b61232b565b005b3480156109d057600080fd5b506109d96123b1565b6040516109e691906141ff565b60405180910390f35b3480156109fb57600080fd5b50610a046123b7565b604051610a1191906141ff565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610af55750610af4826123db565b5b9050919050565b606060028054610b0b906144b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b37906144b9565b8015610b845780601f10610b5957610100808354040283529160200191610b84565b820191906000526020600020905b815481529060010190602001808311610b6757829003601f168201915b5050505050905090565b610b96612445565b73ffffffffffffffffffffffffffffffffffffffff16610bb4611b27565b73ffffffffffffffffffffffffffffffffffffffff1614610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c019061415f565b60405180910390fd5b6000610c14610e76565b7f0000000000000000000000000000000000000000000000000000000000000000610c3f91906143c5565b9050610c4d61dead8261244d565b50565b6000610c5b8261246b565b610c91576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cd782611779565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d3f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d5e612445565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d905750610d8e81610d89612445565b61219f565b155b15610dc7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610dd28383836124b9565b505050565b610ddf612445565b73ffffffffffffffffffffffffffffffffffffffff16610dfd611b27565b73ffffffffffffffffffffffffffffffffffffffff1614610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a9061415f565b60405180910390fd5b80600e8190555050565b6000806013541480610e7157506013544210155b905090565b6000610e8061256b565b6001546000540303905090565b610e95612445565b73ffffffffffffffffffffffffffffffffffffffff16610eb3611b27565b73ffffffffffffffffffffffffffffffffffffffff1614610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f009061415f565b60405180910390fd5b818190508484905014610f1b57600080fd5b60005b8484905081101561108a57828282818110610f62577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600b54610f7691906142e4565b600b819055507f0000000000000000000000000000000000000000000000000000000000000000600b541115610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd89061411f565b60405180910390fd5b61107785858381811061101d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906110329190613908565b84848481811061106b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013561244d565b80806110829061451c565b915050610f1e565b5050505050565b601260009054906101000a900460ff1681565b6110af838383612574565b505050565b6110bc612445565b73ffffffffffffffffffffffffffffffffffffffff166110da611b27565b73ffffffffffffffffffffffffffffffffffffffff1614611130576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111279061415f565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b60145481565b60135481565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111b9612445565b73ffffffffffffffffffffffffffffffffffffffff166111d7611b27565b73ffffffffffffffffffffffffffffffffffffffff161461122d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112249061415f565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611278573d6000803e3d6000fd5b5050565b600080600e54148061129d5750600e54421015801561129c5750600f5442105b5b905090565b6112bd8383836040518060200160405280600081525061205a565b505050565b6112ca612445565b73ffffffffffffffffffffffffffffffffffffffff166112e8611b27565b73ffffffffffffffffffffffffffffffffffffffff161461133e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113359061415f565b60405180910390fd5b8060108190555050565b600b547f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000061139791906143c5565b6113a191906142e4565b836113aa610e76565b6113b491906142e4565b11156113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec906141df565b60405180910390fd5b600d60009054906101000a900460ff16611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b9061407f565b60405180910390fd5b61144c61127c565b61148b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114829061409f565b60405180910390fd5b82600954611499919061436b565b3410156114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d29061417f565b60405180910390fd5b611556828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060145461152b612445565b60405160200161153b9190613f41565b60405160208183030381529060405280519060200120612a2a565b611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c9061405f565b60405180910390fd5b60105483601160006115a5612445565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115ea91906142e4565b111561162b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116229061419f565b60405180910390fd5b8260116000611638612445565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461167d91906142e4565b60116000611689612445565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506116d86116d2612445565b8461244d565b505050565b600b5481565b6116eb612445565b73ffffffffffffffffffffffffffffffffffffffff16611709611b27565b73ffffffffffffffffffffffffffffffffffffffff161461175f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117569061415f565b60405180910390fd5b80600c90805190602001906117759291906135f6565b5050565b600061178482612a41565b600001519050919050565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117fd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61186d612445565b73ffffffffffffffffffffffffffffffffffffffff1661188b611b27565b73ffffffffffffffffffffffffffffffffffffffff16146118e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d89061415f565b60405180910390fd5b6118eb6000612cd0565b565b6118f5612445565b73ffffffffffffffffffffffffffffffffffffffff16611913611b27565b73ffffffffffffffffffffffffffffffffffffffff1614611969576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119609061415f565b60405180910390fd5b8060138190555050565b61197b612445565b73ffffffffffffffffffffffffffffffffffffffff16611999611b27565b73ffffffffffffffffffffffffffffffffffffffff16146119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e69061415f565b60405180910390fd5b80600a8190555050565b611a01612445565b73ffffffffffffffffffffffffffffffffffffffff16611a1f611b27565b73ffffffffffffffffffffffffffffffffffffffff1614611a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6c9061415f565b60405180910390fd5b8060098190555050565b611a87612445565b73ffffffffffffffffffffffffffffffffffffffff16611aa5611b27565b73ffffffffffffffffffffffffffffffffffffffff1614611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af29061415f565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611b60906144b9565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8c906144b9565b8015611bd95780601f10611bae57610100808354040283529160200191611bd9565b820191906000526020600020905b815481529060010190602001808311611bbc57829003601f168201915b5050505050905090565b600a5481565b600d60009054906101000a900460ff1681565b3273ffffffffffffffffffffffffffffffffffffffff16611c1b612445565b73ffffffffffffffffffffffffffffffffffffffff1614611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c68906140bf565b60405180910390fd5b600b547f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000611cc091906143c5565b611cca91906142e4565b81611cd3610e76565b611cdd91906142e4565b1115611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d15906141df565b60405180910390fd5b601260009054906101000a900460ff16611d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d64906141bf565b60405180910390fd5b611d75610e5d565b611db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dab9061413f565b60405180910390fd5b80600a54611dc2919061436b565b341015611e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfb9061403f565b60405180910390fd5b600a811115611e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3f906140ff565b60405180910390fd5b611e59611e53612445565b8261244d565b50565b611e64612445565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ec9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ed6612445565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f83612445565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fc89190613fe7565b60405180910390a35050565b611fdc612445565b73ffffffffffffffffffffffffffffffffffffffff16611ffa611b27565b73ffffffffffffffffffffffffffffffffffffffff1614612050576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120479061415f565b60405180910390fd5b8060148190555050565b612065848484612574565b6120848373ffffffffffffffffffffffffffffffffffffffff16612d96565b8015612099575061209784848484612db9565b155b156120d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606120e18261246b565b612117576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612121612f19565b9050600081511415612142576040518060200160405280600081525061216d565b8061214c84612fab565b60405160200161215d929190613f5c565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61223b612445565b73ffffffffffffffffffffffffffffffffffffffff16612259611b27565b73ffffffffffffffffffffffffffffffffffffffff16146122af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a69061415f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561231f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612316906140df565b60405180910390fd5b61232881612cd0565b50565b612333612445565b73ffffffffffffffffffffffffffffffffffffffff16612351611b27565b73ffffffffffffffffffffffffffffffffffffffff16146123a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239e9061415f565b60405180910390fd5b80600f8190555050565b600e5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b612467828260405180602001604052806000815250613158565b5050565b60008161247661256b565b11158015612485575060005482105b80156124b2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061257f82612a41565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125ea576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661260b612445565b73ffffffffffffffffffffffffffffffffffffffff16148061263a575061263985612634612445565b61219f565b5b8061267f5750612648612445565b73ffffffffffffffffffffffffffffffffffffffff1661266784610c50565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806126b8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561271f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61272c858585600161316a565b612738600084876124b9565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129b85760005482146129b757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a238585856001613170565b5050505050565b600082612a378584613176565b1490509392505050565b612a4961367c565b600082905080612a5761256b565b11158015612a66575060005481105b15612c99576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612c9757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b7b578092505050612ccb565b5b600115612c9657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c91578092505050612ccb565b612b7c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ddf612445565b8786866040518563ffffffff1660e01b8152600401612e019493929190613f9b565b602060405180830381600087803b158015612e1b57600080fd5b505af1925050508015612e4c57506040513d601f19601f82011682018060405250810190612e499190613b76565b60015b612ec6573d8060008114612e7c576040519150601f19603f3d011682016040523d82523d6000602084013e612e81565b606091505b50600081511415612ebe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054612f28906144b9565b80601f0160208091040260200160405190810160405280929190818152602001828054612f54906144b9565b8015612fa15780601f10612f7657610100808354040283529160200191612fa1565b820191906000526020600020905b815481529060010190602001808311612f8457829003601f168201915b5050505050905090565b60606000821415612ff3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613153565b600082905060005b6000821461302557808061300e9061451c565b915050600a8261301e919061433a565b9150612ffb565b60008167ffffffffffffffff811115613067577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130995781602001600182028036833780820191505090505b5090505b6000851461314c576001826130b291906143c5565b9150600a856130c19190614589565b60306130cd91906142e4565b60f81b818381518110613109577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613145919061433a565b945061309d565b8093505050505b919050565b6131658383836001613211565b505050565b50505050565b50505050565b60008082905060005b84518110156132065760008582815181106131c3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116131e5576131de83826135df565b92506131f2565b6131ef81846135df565b92505b5080806131fe9061451c565b91505061317f565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561327e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156132b9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132c6600086838761316a565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613490575061348f8773ffffffffffffffffffffffffffffffffffffffff16612d96565b5b15613556575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135056000888480600101955088612db9565b61353b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561349657826000541461355157600080fd5b6135c2565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613557575b8160008190555050506135d86000868387613170565b5050505050565b600082600052816020526040600020905092915050565b828054613602906144b9565b90600052602060002090601f016020900481019282613624576000855561366b565b82601f1061363d57805160ff191683800117855561366b565b8280016001018555821561366b579182015b8281111561366a57825182559160200191906001019061364f565b5b50905061367891906136bf565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156136d85760008160009055506001016136c0565b5090565b60006136ef6136ea8461423f565b61421a565b90508281526020810184848401111561370757600080fd5b613712848285614477565b509392505050565b600061372d61372884614270565b61421a565b90508281526020810184848401111561374557600080fd5b613750848285614477565b509392505050565b6000813590506137678161491e565b92915050565b60008083601f84011261377f57600080fd5b8235905067ffffffffffffffff81111561379857600080fd5b6020830191508360208202830111156137b057600080fd5b9250929050565b60008083601f8401126137c957600080fd5b8235905067ffffffffffffffff8111156137e257600080fd5b6020830191508360208202830111156137fa57600080fd5b9250929050565b60008083601f84011261381357600080fd5b8235905067ffffffffffffffff81111561382c57600080fd5b60208301915083602082028301111561384457600080fd5b9250929050565b60008135905061385a81614935565b92915050565b60008135905061386f8161494c565b92915050565b60008135905061388481614963565b92915050565b60008151905061389981614963565b92915050565b600082601f8301126138b057600080fd5b81356138c08482602086016136dc565b91505092915050565b600082601f8301126138da57600080fd5b81356138ea84826020860161371a565b91505092915050565b6000813590506139028161497a565b92915050565b60006020828403121561391a57600080fd5b600061392884828501613758565b91505092915050565b6000806040838503121561394457600080fd5b600061395285828601613758565b925050602061396385828601613758565b9150509250929050565b60008060006060848603121561398257600080fd5b600061399086828701613758565b93505060206139a186828701613758565b92505060406139b2868287016138f3565b9150509250925092565b600080600080608085870312156139d257600080fd5b60006139e087828801613758565b94505060206139f187828801613758565b9350506040613a02878288016138f3565b925050606085013567ffffffffffffffff811115613a1f57600080fd5b613a2b8782880161389f565b91505092959194509250565b60008060408385031215613a4a57600080fd5b6000613a5885828601613758565b9250506020613a698582860161384b565b9150509250929050565b60008060408385031215613a8657600080fd5b6000613a9485828601613758565b9250506020613aa5858286016138f3565b9150509250929050565b60008060008060408587031215613ac557600080fd5b600085013567ffffffffffffffff811115613adf57600080fd5b613aeb8782880161376d565b9450945050602085013567ffffffffffffffff811115613b0a57600080fd5b613b1687828801613801565b925092505092959194509250565b600060208284031215613b3657600080fd5b6000613b4484828501613860565b91505092915050565b600060208284031215613b5f57600080fd5b6000613b6d84828501613875565b91505092915050565b600060208284031215613b8857600080fd5b6000613b968482850161388a565b91505092915050565b600060208284031215613bb157600080fd5b600082013567ffffffffffffffff811115613bcb57600080fd5b613bd7848285016138c9565b91505092915050565b600060208284031215613bf257600080fd5b6000613c00848285016138f3565b91505092915050565b600080600060408486031215613c1e57600080fd5b6000613c2c868287016138f3565b935050602084013567ffffffffffffffff811115613c4957600080fd5b613c55868287016137b7565b92509250509250925092565b613c6a816143f9565b82525050565b613c81613c7c826143f9565b614565565b82525050565b613c908161440b565b82525050565b613c9f81614417565b82525050565b6000613cb0826142a1565b613cba81856142b7565b9350613cca818560208601614486565b613cd381614676565b840191505092915050565b6000613ce9826142ac565b613cf381856142c8565b9350613d03818560208601614486565b613d0c81614676565b840191505092915050565b6000613d22826142ac565b613d2c81856142d9565b9350613d3c818560208601614486565b80840191505092915050565b6000613d55600f836142c8565b9150613d6082614694565b602082019050919050565b6000613d786013836142c8565b9150613d83826146bd565b602082019050919050565b6000613d9b6013836142c8565b9150613da6826146e6565b602082019050919050565b6000613dbe6015836142c8565b9150613dc98261470f565b602082019050919050565b6000613de16008836142c8565b9150613dec82614738565b602082019050919050565b6000613e046026836142c8565b9150613e0f82614761565b604082019050919050565b6000613e276027836142c8565b9150613e32826147b0565b604082019050919050565b6000613e4a601c836142c8565b9150613e55826147ff565b602082019050919050565b6000613e6d6019836142c8565b9150613e7882614828565b602082019050919050565b6000613e906020836142c8565b9150613e9b82614851565b602082019050919050565b6000613eb36016836142c8565b9150613ebe8261487a565b602082019050919050565b6000613ed6601a836142c8565b9150613ee1826148a3565b602082019050919050565b6000613ef96017836142c8565b9150613f04826148cc565b602082019050919050565b6000613f1c6013836142c8565b9150613f27826148f5565b602082019050919050565b613f3b8161446d565b82525050565b6000613f4d8284613c70565b60148201915081905092915050565b6000613f688285613d17565b9150613f748284613d17565b91508190509392505050565b6000602082019050613f956000830184613c61565b92915050565b6000608082019050613fb06000830187613c61565b613fbd6020830186613c61565b613fca6040830185613f32565b8181036060830152613fdc8184613ca5565b905095945050505050565b6000602082019050613ffc6000830184613c87565b92915050565b60006020820190506140176000830184613c96565b92915050565b600060208201905081810360008301526140378184613cde565b905092915050565b6000602082019050818103600083015261405881613d48565b9050919050565b6000602082019050818103600083015261407881613d6b565b9050919050565b6000602082019050818103600083015261409881613d8e565b9050919050565b600060208201905081810360008301526140b881613db1565b9050919050565b600060208201905081810360008301526140d881613dd4565b9050919050565b600060208201905081810360008301526140f881613df7565b9050919050565b6000602082019050818103600083015261411881613e1a565b9050919050565b6000602082019050818103600083015261413881613e3d565b9050919050565b6000602082019050818103600083015261415881613e60565b9050919050565b6000602082019050818103600083015261417881613e83565b9050919050565b6000602082019050818103600083015261419881613ea6565b9050919050565b600060208201905081810360008301526141b881613ec9565b9050919050565b600060208201905081810360008301526141d881613eec565b9050919050565b600060208201905081810360008301526141f881613f0f565b9050919050565b60006020820190506142146000830184613f32565b92915050565b6000614224614235565b905061423082826144eb565b919050565b6000604051905090565b600067ffffffffffffffff82111561425a57614259614647565b5b61426382614676565b9050602081019050919050565b600067ffffffffffffffff82111561428b5761428a614647565b5b61429482614676565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142ef8261446d565b91506142fa8361446d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561432f5761432e6145ba565b5b828201905092915050565b60006143458261446d565b91506143508361446d565b9250826143605761435f6145e9565b5b828204905092915050565b60006143768261446d565b91506143818361446d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143ba576143b96145ba565b5b828202905092915050565b60006143d08261446d565b91506143db8361446d565b9250828210156143ee576143ed6145ba565b5b828203905092915050565b60006144048261444d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156144a4578082015181840152602081019050614489565b838111156144b3576000848401525b50505050565b600060028204905060018216806144d157607f821691505b602082108114156144e5576144e4614618565b5b50919050565b6144f482614676565b810181811067ffffffffffffffff8211171561451357614512614647565b5b80604052505050565b60006145278261446d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561455a576145596145ba565b5b600182019050919050565b600061457082614577565b9050919050565b600061458282614687565b9050919050565b60006145948261446d565b915061459f8361446d565b9250826145af576145ae6145e9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e636f72726563742056616c75650000000000000000000000000000000000600082015250565b7f5369676e617475726520696e636f727265637400000000000000000000000000600082015250565b7f50726553616c6520497320496e61637469766500000000000000000000000000600082015250565b7f4e6f7420496e2050726553616c6520506572696f640000000000000000000000600082015250565b7f416e746920626f74000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c792031302063616e206265206d696e74656420696e2061207472616e7360008201527f616374696f6e2e00000000000000000000000000000000000000000000000000602082015250565b7f416c6c205265736572766564204e46547320617265206d696e74656400000000600082015250565b7f4e6f7420496e205075626c69632053616c6520506572696f6400000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5061796d656e74206973206e6f7420636f727265637400000000000000000000600082015250565b7f457863656564205072652053616c65204d696e74204c696d6974000000000000600082015250565b7f5075626c69632053616c6520497320496e616374697665000000000000000000600082015250565b7f416c6c204e46547320617265206d696e74656400000000000000000000000000600082015250565b614927816143f9565b811461493257600080fd5b50565b61493e8161440b565b811461494957600080fd5b50565b61495581614417565b811461496057600080fd5b50565b61496c81614421565b811461497757600080fd5b50565b6149838161446d565b811461498e57600080fd5b5056fea2646970667358221220650dff06fa0b18c8e3db07a3970414b15a34f6beb9c12d58251b72bdfbf489af64736f6c63430008040033

Deployed Bytecode

0x60806040526004361061027d5760003560e01c806369c276e31161014f578063a0712d68116100c1578063e757c17d1161007a578063e757c17d1461090a578063e985e9c514610935578063f2fde38b14610972578063f6c7f3481461099b578063fb6a4f3a146109c4578063fe60d12c146109ef5761027d565b8063a0712d681461080b578063a22cb46514610827578063b658b60f14610850578063b88d4fde14610879578063c87b56dd146108a2578063d5abeb01146108df5761027d565b80637d7eee42116101135780637d7eee421461071f57806389b0649b146107485780638da5cb5b1461075f57806395d89b411461078a5780639b6860c8146107b55780639d044ed3146107e05761027d565b806369c276e31461064e57806370a0823114610679578063715018a6146106b657806379085e25146106cd578063791a2519146106f65761027d565b80633100a535116101f357806342842e0e116101ac57806342842e0e1461054f5780634c0770f0146105785780634c220f6e146105a15780634f297ccc146105bd57806355f804b3146105e85780636352211e146106115761027d565b80633100a535146104635780633154b9c21461047a5780633747b9d4146104a55780633abf317b146104d05780633ccfd60b1461050d5780633d946410146105245761027d565b8063136c778211610245578063136c7782146103675780631538d7d21461039057806318160ddd146103bb5780631ca559f1146103e65780631e84c4131461040f57806323b872dd1461043a5761027d565b806301ffc9a71461028257806306fdde03146102bf57806308003f78146102ea578063081812fc14610301578063095ea7b31461033e575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613b4d565b610a1a565b6040516102b69190613fe7565b60405180910390f35b3480156102cb57600080fd5b506102d4610afc565b6040516102e1919061401d565b60405180910390f35b3480156102f657600080fd5b506102ff610b8e565b005b34801561030d57600080fd5b5061032860048036038101906103239190613be0565b610c50565b6040516103359190613f80565b60405180910390f35b34801561034a57600080fd5b5061036560048036038101906103609190613a73565b610ccc565b005b34801561037357600080fd5b5061038e60048036038101906103899190613be0565b610dd7565b005b34801561039c57600080fd5b506103a5610e5d565b6040516103b29190613fe7565b60405180910390f35b3480156103c757600080fd5b506103d0610e76565b6040516103dd91906141ff565b60405180910390f35b3480156103f257600080fd5b5061040d60048036038101906104089190613aaf565b610e8d565b005b34801561041b57600080fd5b50610424611091565b6040516104319190613fe7565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c919061396d565b6110a4565b005b34801561046f57600080fd5b506104786110b4565b005b34801561048657600080fd5b5061048f61115c565b60405161049c9190614002565b60405180910390f35b3480156104b157600080fd5b506104ba611162565b6040516104c791906141ff565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f29190613908565b611168565b60405161050491906141ff565b60405180910390f35b34801561051957600080fd5b506105226111b1565b005b34801561053057600080fd5b5061053961127c565b6040516105469190613fe7565b60405180910390f35b34801561055b57600080fd5b506105766004803603810190610571919061396d565b6112a2565b005b34801561058457600080fd5b5061059f600480360381019061059a9190613be0565b6112c2565b005b6105bb60048036038101906105b69190613c09565b611348565b005b3480156105c957600080fd5b506105d26116dd565b6040516105df91906141ff565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190613b9f565b6116e3565b005b34801561061d57600080fd5b5061063860048036038101906106339190613be0565b611779565b6040516106459190613f80565b60405180910390f35b34801561065a57600080fd5b5061066361178f565b60405161067091906141ff565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b9190613908565b611795565b6040516106ad91906141ff565b60405180910390f35b3480156106c257600080fd5b506106cb611865565b005b3480156106d957600080fd5b506106f460048036038101906106ef9190613be0565b6118ed565b005b34801561070257600080fd5b5061071d60048036038101906107189190613be0565b611973565b005b34801561072b57600080fd5b5061074660048036038101906107419190613be0565b6119f9565b005b34801561075457600080fd5b5061075d611a7f565b005b34801561076b57600080fd5b50610774611b27565b6040516107819190613f80565b60405180910390f35b34801561079657600080fd5b5061079f611b51565b6040516107ac919061401d565b60405180910390f35b3480156107c157600080fd5b506107ca611be3565b6040516107d791906141ff565b60405180910390f35b3480156107ec57600080fd5b506107f5611be9565b6040516108029190613fe7565b60405180910390f35b61082560048036038101906108209190613be0565b611bfc565b005b34801561083357600080fd5b5061084e60048036038101906108499190613a37565b611e5c565b005b34801561085c57600080fd5b5061087760048036038101906108729190613b24565b611fd4565b005b34801561088557600080fd5b506108a0600480360381019061089b91906139bc565b61205a565b005b3480156108ae57600080fd5b506108c960048036038101906108c49190613be0565b6120d6565b6040516108d6919061401d565b60405180910390f35b3480156108eb57600080fd5b506108f4612175565b60405161090191906141ff565b60405180910390f35b34801561091657600080fd5b5061091f612199565b60405161092c91906141ff565b60405180910390f35b34801561094157600080fd5b5061095c60048036038101906109579190613931565b61219f565b6040516109699190613fe7565b60405180910390f35b34801561097e57600080fd5b5061099960048036038101906109949190613908565b612233565b005b3480156109a757600080fd5b506109c260048036038101906109bd9190613be0565b61232b565b005b3480156109d057600080fd5b506109d96123b1565b6040516109e691906141ff565b60405180910390f35b3480156109fb57600080fd5b50610a046123b7565b604051610a1191906141ff565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610af55750610af4826123db565b5b9050919050565b606060028054610b0b906144b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b37906144b9565b8015610b845780601f10610b5957610100808354040283529160200191610b84565b820191906000526020600020905b815481529060010190602001808311610b6757829003601f168201915b5050505050905090565b610b96612445565b73ffffffffffffffffffffffffffffffffffffffff16610bb4611b27565b73ffffffffffffffffffffffffffffffffffffffff1614610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c019061415f565b60405180910390fd5b6000610c14610e76565b7f0000000000000000000000000000000000000000000000000000000000001000610c3f91906143c5565b9050610c4d61dead8261244d565b50565b6000610c5b8261246b565b610c91576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cd782611779565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d3f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d5e612445565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d905750610d8e81610d89612445565b61219f565b155b15610dc7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610dd28383836124b9565b505050565b610ddf612445565b73ffffffffffffffffffffffffffffffffffffffff16610dfd611b27565b73ffffffffffffffffffffffffffffffffffffffff1614610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a9061415f565b60405180910390fd5b80600e8190555050565b6000806013541480610e7157506013544210155b905090565b6000610e8061256b565b6001546000540303905090565b610e95612445565b73ffffffffffffffffffffffffffffffffffffffff16610eb3611b27565b73ffffffffffffffffffffffffffffffffffffffff1614610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f009061415f565b60405180910390fd5b818190508484905014610f1b57600080fd5b60005b8484905081101561108a57828282818110610f62577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600b54610f7691906142e4565b600b819055507f0000000000000000000000000000000000000000000000000000000000000060600b541115610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd89061411f565b60405180910390fd5b61107785858381811061101d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906110329190613908565b84848481811061106b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013561244d565b80806110829061451c565b915050610f1e565b5050505050565b601260009054906101000a900460ff1681565b6110af838383612574565b505050565b6110bc612445565b73ffffffffffffffffffffffffffffffffffffffff166110da611b27565b73ffffffffffffffffffffffffffffffffffffffff1614611130576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111279061415f565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b60145481565b60135481565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111b9612445565b73ffffffffffffffffffffffffffffffffffffffff166111d7611b27565b73ffffffffffffffffffffffffffffffffffffffff161461122d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112249061415f565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611278573d6000803e3d6000fd5b5050565b600080600e54148061129d5750600e54421015801561129c5750600f5442105b5b905090565b6112bd8383836040518060200160405280600081525061205a565b505050565b6112ca612445565b73ffffffffffffffffffffffffffffffffffffffff166112e8611b27565b73ffffffffffffffffffffffffffffffffffffffff161461133e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113359061415f565b60405180910390fd5b8060108190555050565b600b547f00000000000000000000000000000000000000000000000000000000000000607f000000000000000000000000000000000000000000000000000000000000100061139791906143c5565b6113a191906142e4565b836113aa610e76565b6113b491906142e4565b11156113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec906141df565b60405180910390fd5b600d60009054906101000a900460ff16611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b9061407f565b60405180910390fd5b61144c61127c565b61148b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114829061409f565b60405180910390fd5b82600954611499919061436b565b3410156114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d29061417f565b60405180910390fd5b611556828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060145461152b612445565b60405160200161153b9190613f41565b60405160208183030381529060405280519060200120612a2a565b611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c9061405f565b60405180910390fd5b60105483601160006115a5612445565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115ea91906142e4565b111561162b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116229061419f565b60405180910390fd5b8260116000611638612445565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461167d91906142e4565b60116000611689612445565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506116d86116d2612445565b8461244d565b505050565b600b5481565b6116eb612445565b73ffffffffffffffffffffffffffffffffffffffff16611709611b27565b73ffffffffffffffffffffffffffffffffffffffff161461175f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117569061415f565b60405180910390fd5b80600c90805190602001906117759291906135f6565b5050565b600061178482612a41565b600001519050919050565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117fd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61186d612445565b73ffffffffffffffffffffffffffffffffffffffff1661188b611b27565b73ffffffffffffffffffffffffffffffffffffffff16146118e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d89061415f565b60405180910390fd5b6118eb6000612cd0565b565b6118f5612445565b73ffffffffffffffffffffffffffffffffffffffff16611913611b27565b73ffffffffffffffffffffffffffffffffffffffff1614611969576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119609061415f565b60405180910390fd5b8060138190555050565b61197b612445565b73ffffffffffffffffffffffffffffffffffffffff16611999611b27565b73ffffffffffffffffffffffffffffffffffffffff16146119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e69061415f565b60405180910390fd5b80600a8190555050565b611a01612445565b73ffffffffffffffffffffffffffffffffffffffff16611a1f611b27565b73ffffffffffffffffffffffffffffffffffffffff1614611a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6c9061415f565b60405180910390fd5b8060098190555050565b611a87612445565b73ffffffffffffffffffffffffffffffffffffffff16611aa5611b27565b73ffffffffffffffffffffffffffffffffffffffff1614611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af29061415f565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611b60906144b9565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8c906144b9565b8015611bd95780601f10611bae57610100808354040283529160200191611bd9565b820191906000526020600020905b815481529060010190602001808311611bbc57829003601f168201915b5050505050905090565b600a5481565b600d60009054906101000a900460ff1681565b3273ffffffffffffffffffffffffffffffffffffffff16611c1b612445565b73ffffffffffffffffffffffffffffffffffffffff1614611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c68906140bf565b60405180910390fd5b600b547f00000000000000000000000000000000000000000000000000000000000000607f0000000000000000000000000000000000000000000000000000000000001000611cc091906143c5565b611cca91906142e4565b81611cd3610e76565b611cdd91906142e4565b1115611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d15906141df565b60405180910390fd5b601260009054906101000a900460ff16611d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d64906141bf565b60405180910390fd5b611d75610e5d565b611db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dab9061413f565b60405180910390fd5b80600a54611dc2919061436b565b341015611e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfb9061403f565b60405180910390fd5b600a811115611e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3f906140ff565b60405180910390fd5b611e59611e53612445565b8261244d565b50565b611e64612445565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ec9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ed6612445565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f83612445565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fc89190613fe7565b60405180910390a35050565b611fdc612445565b73ffffffffffffffffffffffffffffffffffffffff16611ffa611b27565b73ffffffffffffffffffffffffffffffffffffffff1614612050576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120479061415f565b60405180910390fd5b8060148190555050565b612065848484612574565b6120848373ffffffffffffffffffffffffffffffffffffffff16612d96565b8015612099575061209784848484612db9565b155b156120d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606120e18261246b565b612117576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612121612f19565b9050600081511415612142576040518060200160405280600081525061216d565b8061214c84612fab565b60405160200161215d929190613f5c565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000100081565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61223b612445565b73ffffffffffffffffffffffffffffffffffffffff16612259611b27565b73ffffffffffffffffffffffffffffffffffffffff16146122af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a69061415f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561231f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612316906140df565b60405180910390fd5b61232881612cd0565b50565b612333612445565b73ffffffffffffffffffffffffffffffffffffffff16612351611b27565b73ffffffffffffffffffffffffffffffffffffffff16146123a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239e9061415f565b60405180910390fd5b80600f8190555050565b600e5481565b7f000000000000000000000000000000000000000000000000000000000000006081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b612467828260405180602001604052806000815250613158565b5050565b60008161247661256b565b11158015612485575060005482105b80156124b2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061257f82612a41565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125ea576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661260b612445565b73ffffffffffffffffffffffffffffffffffffffff16148061263a575061263985612634612445565b61219f565b5b8061267f5750612648612445565b73ffffffffffffffffffffffffffffffffffffffff1661266784610c50565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806126b8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561271f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61272c858585600161316a565b612738600084876124b9565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129b85760005482146129b757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a238585856001613170565b5050505050565b600082612a378584613176565b1490509392505050565b612a4961367c565b600082905080612a5761256b565b11158015612a66575060005481105b15612c99576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612c9757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b7b578092505050612ccb565b5b600115612c9657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c91578092505050612ccb565b612b7c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ddf612445565b8786866040518563ffffffff1660e01b8152600401612e019493929190613f9b565b602060405180830381600087803b158015612e1b57600080fd5b505af1925050508015612e4c57506040513d601f19601f82011682018060405250810190612e499190613b76565b60015b612ec6573d8060008114612e7c576040519150601f19603f3d011682016040523d82523d6000602084013e612e81565b606091505b50600081511415612ebe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054612f28906144b9565b80601f0160208091040260200160405190810160405280929190818152602001828054612f54906144b9565b8015612fa15780601f10612f7657610100808354040283529160200191612fa1565b820191906000526020600020905b815481529060010190602001808311612f8457829003601f168201915b5050505050905090565b60606000821415612ff3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613153565b600082905060005b6000821461302557808061300e9061451c565b915050600a8261301e919061433a565b9150612ffb565b60008167ffffffffffffffff811115613067577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130995781602001600182028036833780820191505090505b5090505b6000851461314c576001826130b291906143c5565b9150600a856130c19190614589565b60306130cd91906142e4565b60f81b818381518110613109577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613145919061433a565b945061309d565b8093505050505b919050565b6131658383836001613211565b505050565b50505050565b50505050565b60008082905060005b84518110156132065760008582815181106131c3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116131e5576131de83826135df565b92506131f2565b6131ef81846135df565b92505b5080806131fe9061451c565b91505061317f565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561327e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156132b9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132c6600086838761316a565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613490575061348f8773ffffffffffffffffffffffffffffffffffffffff16612d96565b5b15613556575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135056000888480600101955088612db9565b61353b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561349657826000541461355157600080fd5b6135c2565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613557575b8160008190555050506135d86000868387613170565b5050505050565b600082600052816020526040600020905092915050565b828054613602906144b9565b90600052602060002090601f016020900481019282613624576000855561366b565b82601f1061363d57805160ff191683800117855561366b565b8280016001018555821561366b579182015b8281111561366a57825182559160200191906001019061364f565b5b50905061367891906136bf565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156136d85760008160009055506001016136c0565b5090565b60006136ef6136ea8461423f565b61421a565b90508281526020810184848401111561370757600080fd5b613712848285614477565b509392505050565b600061372d61372884614270565b61421a565b90508281526020810184848401111561374557600080fd5b613750848285614477565b509392505050565b6000813590506137678161491e565b92915050565b60008083601f84011261377f57600080fd5b8235905067ffffffffffffffff81111561379857600080fd5b6020830191508360208202830111156137b057600080fd5b9250929050565b60008083601f8401126137c957600080fd5b8235905067ffffffffffffffff8111156137e257600080fd5b6020830191508360208202830111156137fa57600080fd5b9250929050565b60008083601f84011261381357600080fd5b8235905067ffffffffffffffff81111561382c57600080fd5b60208301915083602082028301111561384457600080fd5b9250929050565b60008135905061385a81614935565b92915050565b60008135905061386f8161494c565b92915050565b60008135905061388481614963565b92915050565b60008151905061389981614963565b92915050565b600082601f8301126138b057600080fd5b81356138c08482602086016136dc565b91505092915050565b600082601f8301126138da57600080fd5b81356138ea84826020860161371a565b91505092915050565b6000813590506139028161497a565b92915050565b60006020828403121561391a57600080fd5b600061392884828501613758565b91505092915050565b6000806040838503121561394457600080fd5b600061395285828601613758565b925050602061396385828601613758565b9150509250929050565b60008060006060848603121561398257600080fd5b600061399086828701613758565b93505060206139a186828701613758565b92505060406139b2868287016138f3565b9150509250925092565b600080600080608085870312156139d257600080fd5b60006139e087828801613758565b94505060206139f187828801613758565b9350506040613a02878288016138f3565b925050606085013567ffffffffffffffff811115613a1f57600080fd5b613a2b8782880161389f565b91505092959194509250565b60008060408385031215613a4a57600080fd5b6000613a5885828601613758565b9250506020613a698582860161384b565b9150509250929050565b60008060408385031215613a8657600080fd5b6000613a9485828601613758565b9250506020613aa5858286016138f3565b9150509250929050565b60008060008060408587031215613ac557600080fd5b600085013567ffffffffffffffff811115613adf57600080fd5b613aeb8782880161376d565b9450945050602085013567ffffffffffffffff811115613b0a57600080fd5b613b1687828801613801565b925092505092959194509250565b600060208284031215613b3657600080fd5b6000613b4484828501613860565b91505092915050565b600060208284031215613b5f57600080fd5b6000613b6d84828501613875565b91505092915050565b600060208284031215613b8857600080fd5b6000613b968482850161388a565b91505092915050565b600060208284031215613bb157600080fd5b600082013567ffffffffffffffff811115613bcb57600080fd5b613bd7848285016138c9565b91505092915050565b600060208284031215613bf257600080fd5b6000613c00848285016138f3565b91505092915050565b600080600060408486031215613c1e57600080fd5b6000613c2c868287016138f3565b935050602084013567ffffffffffffffff811115613c4957600080fd5b613c55868287016137b7565b92509250509250925092565b613c6a816143f9565b82525050565b613c81613c7c826143f9565b614565565b82525050565b613c908161440b565b82525050565b613c9f81614417565b82525050565b6000613cb0826142a1565b613cba81856142b7565b9350613cca818560208601614486565b613cd381614676565b840191505092915050565b6000613ce9826142ac565b613cf381856142c8565b9350613d03818560208601614486565b613d0c81614676565b840191505092915050565b6000613d22826142ac565b613d2c81856142d9565b9350613d3c818560208601614486565b80840191505092915050565b6000613d55600f836142c8565b9150613d6082614694565b602082019050919050565b6000613d786013836142c8565b9150613d83826146bd565b602082019050919050565b6000613d9b6013836142c8565b9150613da6826146e6565b602082019050919050565b6000613dbe6015836142c8565b9150613dc98261470f565b602082019050919050565b6000613de16008836142c8565b9150613dec82614738565b602082019050919050565b6000613e046026836142c8565b9150613e0f82614761565b604082019050919050565b6000613e276027836142c8565b9150613e32826147b0565b604082019050919050565b6000613e4a601c836142c8565b9150613e55826147ff565b602082019050919050565b6000613e6d6019836142c8565b9150613e7882614828565b602082019050919050565b6000613e906020836142c8565b9150613e9b82614851565b602082019050919050565b6000613eb36016836142c8565b9150613ebe8261487a565b602082019050919050565b6000613ed6601a836142c8565b9150613ee1826148a3565b602082019050919050565b6000613ef96017836142c8565b9150613f04826148cc565b602082019050919050565b6000613f1c6013836142c8565b9150613f27826148f5565b602082019050919050565b613f3b8161446d565b82525050565b6000613f4d8284613c70565b60148201915081905092915050565b6000613f688285613d17565b9150613f748284613d17565b91508190509392505050565b6000602082019050613f956000830184613c61565b92915050565b6000608082019050613fb06000830187613c61565b613fbd6020830186613c61565b613fca6040830185613f32565b8181036060830152613fdc8184613ca5565b905095945050505050565b6000602082019050613ffc6000830184613c87565b92915050565b60006020820190506140176000830184613c96565b92915050565b600060208201905081810360008301526140378184613cde565b905092915050565b6000602082019050818103600083015261405881613d48565b9050919050565b6000602082019050818103600083015261407881613d6b565b9050919050565b6000602082019050818103600083015261409881613d8e565b9050919050565b600060208201905081810360008301526140b881613db1565b9050919050565b600060208201905081810360008301526140d881613dd4565b9050919050565b600060208201905081810360008301526140f881613df7565b9050919050565b6000602082019050818103600083015261411881613e1a565b9050919050565b6000602082019050818103600083015261413881613e3d565b9050919050565b6000602082019050818103600083015261415881613e60565b9050919050565b6000602082019050818103600083015261417881613e83565b9050919050565b6000602082019050818103600083015261419881613ea6565b9050919050565b600060208201905081810360008301526141b881613ec9565b9050919050565b600060208201905081810360008301526141d881613eec565b9050919050565b600060208201905081810360008301526141f881613f0f565b9050919050565b60006020820190506142146000830184613f32565b92915050565b6000614224614235565b905061423082826144eb565b919050565b6000604051905090565b600067ffffffffffffffff82111561425a57614259614647565b5b61426382614676565b9050602081019050919050565b600067ffffffffffffffff82111561428b5761428a614647565b5b61429482614676565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142ef8261446d565b91506142fa8361446d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561432f5761432e6145ba565b5b828201905092915050565b60006143458261446d565b91506143508361446d565b9250826143605761435f6145e9565b5b828204905092915050565b60006143768261446d565b91506143818361446d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143ba576143b96145ba565b5b828202905092915050565b60006143d08261446d565b91506143db8361446d565b9250828210156143ee576143ed6145ba565b5b828203905092915050565b60006144048261444d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156144a4578082015181840152602081019050614489565b838111156144b3576000848401525b50505050565b600060028204905060018216806144d157607f821691505b602082108114156144e5576144e4614618565b5b50919050565b6144f482614676565b810181811067ffffffffffffffff8211171561451357614512614647565b5b80604052505050565b60006145278261446d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561455a576145596145ba565b5b600182019050919050565b600061457082614577565b9050919050565b600061458282614687565b9050919050565b60006145948261446d565b915061459f8361446d565b9250826145af576145ae6145e9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e636f72726563742056616c75650000000000000000000000000000000000600082015250565b7f5369676e617475726520696e636f727265637400000000000000000000000000600082015250565b7f50726553616c6520497320496e61637469766500000000000000000000000000600082015250565b7f4e6f7420496e2050726553616c6520506572696f640000000000000000000000600082015250565b7f416e746920626f74000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c792031302063616e206265206d696e74656420696e2061207472616e7360008201527f616374696f6e2e00000000000000000000000000000000000000000000000000602082015250565b7f416c6c205265736572766564204e46547320617265206d696e74656400000000600082015250565b7f4e6f7420496e205075626c69632053616c6520506572696f6400000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5061796d656e74206973206e6f7420636f727265637400000000000000000000600082015250565b7f457863656564205072652053616c65204d696e74204c696d6974000000000000600082015250565b7f5075626c69632053616c6520497320496e616374697665000000000000000000600082015250565b7f416c6c204e46547320617265206d696e74656400000000000000000000000000600082015250565b614927816143f9565b811461493257600080fd5b50565b61493e8161440b565b811461494957600080fd5b50565b61495581614417565b811461496057600080fd5b50565b61496c81614421565b811461497757600080fd5b50565b6149838161446d565b811461498e57600080fd5b5056fea2646970667358221220650dff06fa0b18c8e3db07a3970414b15a34f6beb9c12d58251b72bdfbf489af64736f6c63430008040033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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