ETH Price: $3,244.77 (+2.51%)
Gas: 1 Gwei

Token

UnboredMonkeysNFT (UNBM)
 

Overview

Max Total Supply

4,445 UNBM

Holders

1,453

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 UNBM
0xd3dfabdf1086ca8d31698c48f1e160be0b083f6f
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:
UNBM

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

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

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

contract UNBM is ERC721A, Ownable {
    using Strings for uint256;

    mapping(address => bool) _mintedAddresses;

    // Constants
    uint256 public TOTAL_SUPPLY = 4444;
    uint256 public MINT_PRICE = 0.005 ether;
    uint256 public FREE_ITEMS_COUNT = 0;
    uint256 public MAX_IN_TRX = 10;

    address payable withdrawD =
        payable(0xC7dACd7C479A1FCeF6ed420467CA22a918cBd783);
    address payable withdrawTo =
        payable(0x524A31804F586b3C0f78ceFa72a85731ce26201b);

    address _signer = address(0x18090cfACB9879B0d631eA6bF826D32A28d381EC);

    // Variables
    string public baseTokenURI;
    string public uriSuffix;
    bool public paused = false;
    bool public revealed = false;
    string public revealImage;

    struct Coupon {
        bytes32 r;
        bytes32 s;
        uint8 v;
    }

    constructor(
        string memory _initBaseURI,
        string memory _revealImage,
        string memory _uriSuffix
    ) ERC721A("UnboredMonkeysNFT", "UNBM") {
        setBaseTokenURI(_initBaseURI);
        setRevealImage(_revealImage);
        setUriSuffix(_uriSuffix);
    }

    // Recover the original signer by using the message digest and
    // the passed in coupon, to then confirm that the original
    // signer is in fact the _couponSigner set on this contract.
    function _isVerifiedCoupon(bytes32 digest, Coupon memory coupon)
        internal
        view
        returns (bool)
    {
        address signer = ecrecover(digest, coupon.v, coupon.r, coupon.s);
        require(signer != address(0), "ECDSA: invalid signature");
        return signer == _signer;
    } // Create the same message digest that we know the coupon created

    // in our JavaScript code has created.
    function _createMessageDigest(address _address)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked(
                    "\x19Ethereum Signed Message:\n32",
                    keccak256(abi.encodePacked(_address))
                )
            );
    }

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

    function setBaseTokenURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function setSigner(address __signer) public onlyOwner {
        _signer = __signer;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        if (!revealed) {
            return revealImage;
        }

        return
            string(
                abi.encodePacked(
                    _baseURI(),
                    (tokenId + 10000).toString(),
                    uriSuffix
                )
            );
    }

    function mintItem(uint256 quantity) external payable {
        uint256 supply = totalSupply();
        require(!paused, "Minting is paused.");
        require(
            (quantity > 0) && (quantity <= MAX_IN_TRX),
            "Invalid quantity."
        );
        require(supply + quantity <= TOTAL_SUPPLY, "Exceeds maximum supply.");

        if (msg.sender != owner()) {
            require(
                (supply + quantity <= FREE_ITEMS_COUNT) ||
                    (msg.value >= MINT_PRICE * quantity),
                "Not enough supply."
            );
        }

        _safeMint(msg.sender, quantity);
    }

    function mintWL(Coupon memory coupon) external payable {
        require(
            _isVerifiedCoupon(_createMessageDigest(msg.sender), coupon),
            "Coupon is not valid."
        ); // require that each wallet can only mint one token
        require(!_mintedAddresses[msg.sender], "Wallet has already minted."); // Keep track of the fact that this wallet has minted a token
        _mintedAddresses[msg.sender] = true;
        _safeMint(msg.sender, 1);
    }

    function mintTo(address to, uint256 quantity) external payable onlyOwner {
        uint256 supply = totalSupply();
        require(
            supply + quantity - 1 <= TOTAL_SUPPLY,
            "Exceeds maximum supply"
        );
        _safeMint(to, quantity);
    }

    function withdraw() public payable onlyOwner {
        (bool hs, ) = withdrawD.call{value: address(this).balance / 2}("");
        require(hs);

        (bool os, ) = withdrawTo.call{value: address(this).balance}("");
        require(os);
    }

    function setCost(uint256 _newCost) public onlyOwner {
        MINT_PRICE = _newCost;
    }

    function setFreeCount(uint256 _count) public onlyOwner {
        FREE_ITEMS_COUNT = _count;
    }

    function setMaxInTRX(uint256 _total) public onlyOwner {
        MAX_IN_TRX = _total;
    }

    function setmaxMintAmount(uint256 _count) public onlyOwner {
        TOTAL_SUPPLY = _count;
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setRevealImage(string memory _revealImage) public onlyOwner {
        revealImage = _revealImage;
    }
}

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/token/ERC721/extensions/IERC721Enumerable.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 MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 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**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    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;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 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_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).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);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * 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 (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 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 (!_checkOnERC721Received(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 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 > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 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;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @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 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 4 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

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 5 of 12 : Strings.sol
// SPDX-License-Identifier: MIT

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 6 of 12 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 7 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        (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 8 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 9 of 12 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 11 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_revealImage","type":"string"},{"internalType":"string","name":"_uriSuffix","type":"string"}],"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":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","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":[],"name":"FREE_ITEMS_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_IN_TRX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintItem","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"internalType":"struct UNBM.Coupon","name":"coupon","type":"tuple"}],"name":"mintWL","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealImage","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setFreeCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_total","type":"uint256"}],"name":"setMaxInTRX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_revealImage","type":"string"}],"name":"setRevealImage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"__signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setmaxMintAmount","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405261115c6009556611c37937e08000600a556000600b55600a600c5573c7dacd7c479a1fcef6ed420467ca22a918cbd783600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073524a31804f586b3c0f78cefa72a85731ce26201b600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507318090cfacb9879b0d631ea6bf826d32a28d381ec600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055503480156200016157600080fd5b5060405162005499380380620054998339818101604052810190620001879190620007c9565b6040518060400160405280601181526020017f556e626f7265644d6f6e6b6579734e46540000000000000000000000000000008152506040518060400160405280600481526020017f554e424d0000000000000000000000000000000000000000000000000000000081525081600190805190602001906200020b9291906200057c565b508060029080519060200190620002249291906200057c565b505050620002476200023b6200028360201b60201c565b6200028b60201b60201c565b62000258836200035160201b60201c565b6200026982620003fc60201b60201c565b6200027a81620004a760201b60201c565b5050506200096a565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003616200028360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003876200055260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003e0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003d790620008e3565b60405180910390fd5b8060109080519060200190620003f89291906200057c565b5050565b6200040c6200028360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004326200055260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200048b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200048290620008e3565b60405180910390fd5b8060139080519060200190620004a39291906200057c565b5050565b620004b76200028360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004dd6200055260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000536576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200052d90620008e3565b60405180910390fd5b80601190805190602001906200054e9291906200057c565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200058a9062000934565b90600052602060002090601f016020900481019282620005ae5760008555620005fa565b82601f10620005c957805160ff1916838001178555620005fa565b82800160010185558215620005fa579182015b82811115620005f9578251825591602001919060010190620005dc565b5b5090506200060991906200060d565b5090565b5b80821115620006285760008160009055506001016200060e565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000695826200064a565b810181811067ffffffffffffffff82111715620006b757620006b66200065b565b5b80604052505050565b6000620006cc6200062c565b9050620006da82826200068a565b919050565b600067ffffffffffffffff821115620006fd57620006fc6200065b565b5b62000708826200064a565b9050602081019050919050565b60005b838110156200073557808201518184015260208101905062000718565b8381111562000745576000848401525b50505050565b6000620007626200075c84620006df565b620006c0565b90508281526020810184848401111562000781576200078062000645565b5b6200078e84828562000715565b509392505050565b600082601f830112620007ae57620007ad62000640565b5b8151620007c08482602086016200074b565b91505092915050565b600080600060608486031215620007e557620007e462000636565b5b600084015167ffffffffffffffff8111156200080657620008056200063b565b5b620008148682870162000796565b935050602084015167ffffffffffffffff8111156200083857620008376200063b565b5b620008468682870162000796565b925050604084015167ffffffffffffffff8111156200086a57620008696200063b565b5b620008788682870162000796565b9150509250925092565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620008cb60208362000882565b9150620008d88262000893565b602082019050919050565b60006020820190508181036000830152620008fe81620008bc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200094d57607f821691505b6020821081141562000964576200096362000905565b5b50919050565b614b1f806200097a6000396000f3fe6080604052600436106102515760003560e01c80636352211e11610139578063a22cb465116100b6578063ce05ecba1161007a578063ce05ecba14610873578063d547cfb71461089c578063e0a80853146108c7578063e7c1a629146108f0578063e985e9c51461090c578063f2fde38b1461094957610251565b8063a22cb4651461078e578063b88d4fde146107b7578063c002d23d146107e0578063c87b56dd1461080b578063cd87fcfe1461084857610251565b80637f00c7a6116100fd5780637f00c7a6146106bb5780638da5cb5b146106e4578063902d55a51461070f57806395d89b411461073a578063a1470c1d1461076557610251565b80636352211e146105d85780636a420614146106155780636c19e7831461063e57806370a0823114610667578063715018a6146106a457610251565b80632f745c59116101d257806344a0d68a1161019657806344a0d68a146104c65780634f6ccce7146104ef578063518302271461052c5780635503a0e8146105575780635c5458ef146105825780635c975abb146105ad57610251565b80632f745c591461041157806330176e131461044e5780633ccfd60b1461047757806342842e0e14610481578063449a52f8146104aa57610251565b806316c38b3c1161021957806316c38b3c1461034d57806317fb85941461037657806318160ddd14610392578063187fad82146103bd57806323b872dd146103e857610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806316ba10e014610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613918565b610972565b60405161028a9190613960565b60405180910390f35b34801561029f57600080fd5b506102a8610abc565b6040516102b59190613a14565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613a6c565b610b4e565b6040516102f29190613ada565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613b21565b610bca565b005b34801561033057600080fd5b5061034b60048036038101906103469190613c96565b610cd5565b005b34801561035957600080fd5b50610374600480360381019061036f9190613d0b565b610d6b565b005b610390600480360381019061038b9190613a6c565b610e04565b005b34801561039e57600080fd5b506103a7610fb2565b6040516103b49190613d47565b60405180910390f35b3480156103c957600080fd5b506103d2611007565b6040516103df9190613a14565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613d62565b611095565b005b34801561041d57600080fd5b5061043860048036038101906104339190613b21565b6110a5565b6040516104459190613d47565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190613c96565b6112ac565b005b61047f611342565b005b34801561048d57600080fd5b506104a860048036038101906104a39190613d62565b6114fe565b005b6104c460048036038101906104bf9190613b21565b61151e565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190613a6c565b611611565b005b3480156104fb57600080fd5b5061051660048036038101906105119190613a6c565b611697565b6040516105239190613d47565b60405180910390f35b34801561053857600080fd5b50610541611808565b60405161054e9190613960565b60405180910390f35b34801561056357600080fd5b5061056c61181b565b6040516105799190613a14565b60405180910390f35b34801561058e57600080fd5b506105976118a9565b6040516105a49190613d47565b60405180910390f35b3480156105b957600080fd5b506105c26118af565b6040516105cf9190613960565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa9190613a6c565b6118c2565b60405161060c9190613ada565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190613a6c565b6118d8565b005b34801561064a57600080fd5b5061066560048036038101906106609190613db5565b61195e565b005b34801561067357600080fd5b5061068e60048036038101906106899190613db5565b611a1e565b60405161069b9190613d47565b60405180910390f35b3480156106b057600080fd5b506106b9611aee565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190613a6c565b611b76565b005b3480156106f057600080fd5b506106f9611bfc565b6040516107069190613ada565b60405180910390f35b34801561071b57600080fd5b50610724611c26565b6040516107319190613d47565b60405180910390f35b34801561074657600080fd5b5061074f611c2c565b60405161075c9190613a14565b60405180910390f35b34801561077157600080fd5b5061078c60048036038101906107879190613a6c565b611cbe565b005b34801561079a57600080fd5b506107b560048036038101906107b09190613de2565b611d44565b005b3480156107c357600080fd5b506107de60048036038101906107d99190613ec3565b611ebc565b005b3480156107ec57600080fd5b506107f5611f0f565b6040516108029190613d47565b60405180910390f35b34801561081757600080fd5b50610832600480360381019061082d9190613a6c565b611f15565b60405161083f9190613a14565b60405180910390f35b34801561085457600080fd5b5061085d612045565b60405161086a9190613d47565b60405180910390f35b34801561087f57600080fd5b5061089a60048036038101906108959190613c96565b61204b565b005b3480156108a857600080fd5b506108b16120e1565b6040516108be9190613a14565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e99190613d0b565b61216f565b005b61090a6004803603810190610905919061401e565b612208565b005b34801561091857600080fd5b50610933600480360381019061092e919061404b565b61234c565b6040516109409190613960565b60405180910390f35b34801561095557600080fd5b50610970600480360381019061096b9190613db5565b6123e0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aa557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab55750610ab4826124d8565b5b9050919050565b606060018054610acb906140ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610af7906140ba565b8015610b445780601f10610b1957610100808354040283529160200191610b44565b820191906000526020600020905b815481529060010190602001808311610b2757829003601f168201915b5050505050905090565b6000610b5982612542565b610b8f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bd5826118c2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c3d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c5c6125aa565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c8e5750610c8c81610c876125aa565b61234c565b155b15610cc5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cd08383836125b2565b505050565b610cdd6125aa565b73ffffffffffffffffffffffffffffffffffffffff16610cfb611bfc565b73ffffffffffffffffffffffffffffffffffffffff1614610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890614138565b60405180910390fd5b8060119080519060200190610d679291906137c6565b5050565b610d736125aa565b73ffffffffffffffffffffffffffffffffffffffff16610d91611bfc565b73ffffffffffffffffffffffffffffffffffffffff1614610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde90614138565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6000610e0e610fb2565b9050601260009054906101000a900460ff1615610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e57906141a4565b60405180910390fd5b600082118015610e725750600c548211155b610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea890614210565b60405180910390fd5b6009548282610ec0919061425f565b1115610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef890614301565b60405180910390fd5b610f09611bfc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fa457600b548282610f4a919061425f565b111580610f64575081600a54610f609190614321565b3410155b610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a906143c7565b60405180910390fd5b5b610fae3383612664565b5050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b60138054611014906140ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611040906140ba565b801561108d5780601f106110625761010080835404028352916020019161108d565b820191906000526020600020905b81548152906001019060200180831161107057829003601f168201915b505050505081565b6110a0838383612682565b505050565b60006110b083611a1e565b82106110e8576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b838110156112a0576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151156111ff5750611293565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461123f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561129157868414156112885781955050505050506112a6565b83806001019450505b505b8080600101915050611122565b50600080fd5b92915050565b6112b46125aa565b73ffffffffffffffffffffffffffffffffffffffff166112d2611bfc565b73ffffffffffffffffffffffffffffffffffffffff1614611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f90614138565b60405180910390fd5b806010908051906020019061133e9291906137c6565b5050565b61134a6125aa565b73ffffffffffffffffffffffffffffffffffffffff16611368611bfc565b73ffffffffffffffffffffffffffffffffffffffff16146113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b590614138565b60405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166002476114069190614416565b60405161141290614478565b60006040518083038185875af1925050503d806000811461144f576040519150601f19603f3d011682016040523d82523d6000602084013e611454565b606091505b505090508061146257600080fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516114aa90614478565b60006040518083038185875af1925050503d80600081146114e7576040519150601f19603f3d011682016040523d82523d6000602084013e6114ec565b606091505b50509050806114fa57600080fd5b5050565b61151983838360405180602001604052806000815250611ebc565b505050565b6115266125aa565b73ffffffffffffffffffffffffffffffffffffffff16611544611bfc565b73ffffffffffffffffffffffffffffffffffffffff161461159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159190614138565b60405180910390fd5b60006115a4610fb2565b9050600954600183836115b7919061425f565b6115c1919061448d565b1115611602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f99061450d565b60405180910390fd5b61160c8383612664565b505050565b6116196125aa565b73ffffffffffffffffffffffffffffffffffffffff16611637611bfc565b73ffffffffffffffffffffffffffffffffffffffff161461168d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168490614138565b60405180910390fd5b80600a8190555050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b828110156117d0576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516117c257858314156117b95781945050505050611803565b82806001019350505b5080806001019150506116cf565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b601260019054906101000a900460ff1681565b60118054611828906140ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611854906140ba565b80156118a15780601f10611876576101008083540402835291602001916118a1565b820191906000526020600020905b81548152906001019060200180831161188457829003601f168201915b505050505081565b600c5481565b601260009054906101000a900460ff1681565b60006118cd82612b9f565b600001519050919050565b6118e06125aa565b73ffffffffffffffffffffffffffffffffffffffff166118fe611bfc565b73ffffffffffffffffffffffffffffffffffffffff1614611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b90614138565b60405180910390fd5b80600b8190555050565b6119666125aa565b73ffffffffffffffffffffffffffffffffffffffff16611984611bfc565b73ffffffffffffffffffffffffffffffffffffffff16146119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d190614138565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a86576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611af66125aa565b73ffffffffffffffffffffffffffffffffffffffff16611b14611bfc565b73ffffffffffffffffffffffffffffffffffffffff1614611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190614138565b60405180910390fd5b611b746000612e47565b565b611b7e6125aa565b73ffffffffffffffffffffffffffffffffffffffff16611b9c611bfc565b73ffffffffffffffffffffffffffffffffffffffff1614611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990614138565b60405180910390fd5b8060098190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b606060028054611c3b906140ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611c67906140ba565b8015611cb45780601f10611c8957610100808354040283529160200191611cb4565b820191906000526020600020905b815481529060010190602001808311611c9757829003601f168201915b5050505050905090565b611cc66125aa565b73ffffffffffffffffffffffffffffffffffffffff16611ce4611bfc565b73ffffffffffffffffffffffffffffffffffffffff1614611d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3190614138565b60405180910390fd5b80600c8190555050565b611d4c6125aa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611db1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611dbe6125aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e6b6125aa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611eb09190613960565b60405180910390a35050565b611ec7848484612682565b611ed384848484612f0d565b611f09576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a5481565b6060611f2082612542565b611f56576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601260019054906101000a900460ff16611ffc5760138054611f77906140ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611fa3906140ba565b8015611ff05780601f10611fc557610100808354040283529160200191611ff0565b820191906000526020600020905b815481529060010190602001808311611fd357829003601f168201915b50505050509050612040565b61200461308c565b61201a61271084612015919061425f565b61311e565b601160405160200161202e939291906145fd565b60405160208183030381529060405290505b919050565b600b5481565b6120536125aa565b73ffffffffffffffffffffffffffffffffffffffff16612071611bfc565b73ffffffffffffffffffffffffffffffffffffffff16146120c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120be90614138565b60405180910390fd5b80601390805190602001906120dd9291906137c6565b5050565b601080546120ee906140ba565b80601f016020809104026020016040519081016040528092919081815260200182805461211a906140ba565b80156121675780601f1061213c57610100808354040283529160200191612167565b820191906000526020600020905b81548152906001019060200180831161214a57829003601f168201915b505050505081565b6121776125aa565b73ffffffffffffffffffffffffffffffffffffffff16612195611bfc565b73ffffffffffffffffffffffffffffffffffffffff16146121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290614138565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b61221a6122143361327f565b826132d5565b612259576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122509061467a565b60405180910390fd5b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd906146e6565b60405180910390fd5b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612349336001612664565b50565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123e86125aa565b73ffffffffffffffffffffffffffffffffffffffff16612406611bfc565b73ffffffffffffffffffffffffffffffffffffffff161461245c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245390614138565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c390614778565b60405180910390fd5b6124d581612e47565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16821080156125a3575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61267e8282604051806020016040528060008152506133ff565b5050565b600061268d82612b9f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166126b46125aa565b73ffffffffffffffffffffffffffffffffffffffff1614806126e757506126e682600001516126e16125aa565b61234c565b5b8061272c57506126f56125aa565b73ffffffffffffffffffffffffffffffffffffffff1661271484610b4e565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612765576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146127ce576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612835576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128428585856001613411565b61285260008484600001516125b2565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b2f5760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612b2e5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b988585856001613417565b5050505050565b612ba761384c565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612e10576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612e0e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cf2578092505050612e42565b5b600115612e0d57818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e08578092505050612e42565b612cf3565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612f2e8473ffffffffffffffffffffffffffffffffffffffff1661341d565b1561307f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f576125aa565b8786866040518563ffffffff1660e01b8152600401612f7994939291906147ed565b6020604051808303816000875af1925050508015612fb557506040513d601f19601f82011682018060405250810190612fb2919061484e565b60015b61302f573d8060008114612fe5576040519150601f19603f3d011682016040523d82523d6000602084013e612fea565b606091505b50600081511415613027576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613084565b600190505b949350505050565b60606010805461309b906140ba565b80601f01602080910402602001604051908101604052809291908181526020018280546130c7906140ba565b80156131145780601f106130e957610100808354040283529160200191613114565b820191906000526020600020905b8154815290600101906020018083116130f757829003601f168201915b5050505050905090565b60606000821415613166576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061327a565b600082905060005b600082146131985780806131819061487b565b915050600a826131919190614416565b915061316e565b60008167ffffffffffffffff8111156131b4576131b3613b6b565b5b6040519080825280601f01601f1916602001820160405280156131e65781602001600182028036833780820191505090505b5090505b60008514613273576001826131ff919061448d565b9150600a8561320e91906148c4565b603061321a919061425f565b60f81b8183815181106132305761322f6148f5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561326c9190614416565b94506131ea565b8093505050505b919050565b600081604051602001613292919061496c565b604051602081830303815290604052805190602001206040516020016132b891906149f4565b604051602081830303815290604052805190602001209050919050565b600080600184846040015185600001518660200151604051600081526020016040526040516133079493929190614a38565b6020604051602081039080840390855afa158015613329573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156133a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339c90614ac9565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161491505092915050565b61340c8383836001613430565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156134cb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613506576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135136000868387613411565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561377857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561372c575061372a6000888488612f0d565b155b15613763576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506136b1565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506137bf6000868387613417565b5050505050565b8280546137d2906140ba565b90600052602060002090601f0160209004810192826137f4576000855561383b565b82601f1061380d57805160ff191683800117855561383b565b8280016001018555821561383b579182015b8281111561383a57825182559160200191906001019061381f565b5b509050613848919061388f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156138a8576000816000905550600101613890565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6138f5816138c0565b811461390057600080fd5b50565b600081359050613912816138ec565b92915050565b60006020828403121561392e5761392d6138b6565b5b600061393c84828501613903565b91505092915050565b60008115159050919050565b61395a81613945565b82525050565b60006020820190506139756000830184613951565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156139b557808201518184015260208101905061399a565b838111156139c4576000848401525b50505050565b6000601f19601f8301169050919050565b60006139e68261397b565b6139f08185613986565b9350613a00818560208601613997565b613a09816139ca565b840191505092915050565b60006020820190508181036000830152613a2e81846139db565b905092915050565b6000819050919050565b613a4981613a36565b8114613a5457600080fd5b50565b600081359050613a6681613a40565b92915050565b600060208284031215613a8257613a816138b6565b5b6000613a9084828501613a57565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ac482613a99565b9050919050565b613ad481613ab9565b82525050565b6000602082019050613aef6000830184613acb565b92915050565b613afe81613ab9565b8114613b0957600080fd5b50565b600081359050613b1b81613af5565b92915050565b60008060408385031215613b3857613b376138b6565b5b6000613b4685828601613b0c565b9250506020613b5785828601613a57565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613ba3826139ca565b810181811067ffffffffffffffff82111715613bc257613bc1613b6b565b5b80604052505050565b6000613bd56138ac565b9050613be18282613b9a565b919050565b600067ffffffffffffffff821115613c0157613c00613b6b565b5b613c0a826139ca565b9050602081019050919050565b82818337600083830152505050565b6000613c39613c3484613be6565b613bcb565b905082815260208101848484011115613c5557613c54613b66565b5b613c60848285613c17565b509392505050565b600082601f830112613c7d57613c7c613b61565b5b8135613c8d848260208601613c26565b91505092915050565b600060208284031215613cac57613cab6138b6565b5b600082013567ffffffffffffffff811115613cca57613cc96138bb565b5b613cd684828501613c68565b91505092915050565b613ce881613945565b8114613cf357600080fd5b50565b600081359050613d0581613cdf565b92915050565b600060208284031215613d2157613d206138b6565b5b6000613d2f84828501613cf6565b91505092915050565b613d4181613a36565b82525050565b6000602082019050613d5c6000830184613d38565b92915050565b600080600060608486031215613d7b57613d7a6138b6565b5b6000613d8986828701613b0c565b9350506020613d9a86828701613b0c565b9250506040613dab86828701613a57565b9150509250925092565b600060208284031215613dcb57613dca6138b6565b5b6000613dd984828501613b0c565b91505092915050565b60008060408385031215613df957613df86138b6565b5b6000613e0785828601613b0c565b9250506020613e1885828601613cf6565b9150509250929050565b600067ffffffffffffffff821115613e3d57613e3c613b6b565b5b613e46826139ca565b9050602081019050919050565b6000613e66613e6184613e22565b613bcb565b905082815260208101848484011115613e8257613e81613b66565b5b613e8d848285613c17565b509392505050565b600082601f830112613eaa57613ea9613b61565b5b8135613eba848260208601613e53565b91505092915050565b60008060008060808587031215613edd57613edc6138b6565b5b6000613eeb87828801613b0c565b9450506020613efc87828801613b0c565b9350506040613f0d87828801613a57565b925050606085013567ffffffffffffffff811115613f2e57613f2d6138bb565b5b613f3a87828801613e95565b91505092959194509250565b600080fd5b6000819050919050565b613f5e81613f4b565b8114613f6957600080fd5b50565b600081359050613f7b81613f55565b92915050565b600060ff82169050919050565b613f9781613f81565b8114613fa257600080fd5b50565b600081359050613fb481613f8e565b92915050565b600060608284031215613fd057613fcf613f46565b5b613fda6060613bcb565b90506000613fea84828501613f6c565b6000830152506020613ffe84828501613f6c565b602083015250604061401284828501613fa5565b60408301525092915050565b600060608284031215614034576140336138b6565b5b600061404284828501613fba565b91505092915050565b60008060408385031215614062576140616138b6565b5b600061407085828601613b0c565b925050602061408185828601613b0c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140d257607f821691505b602082108114156140e6576140e561408b565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614122602083613986565b915061412d826140ec565b602082019050919050565b6000602082019050818103600083015261415181614115565b9050919050565b7f4d696e74696e67206973207061757365642e0000000000000000000000000000600082015250565b600061418e601283613986565b915061419982614158565b602082019050919050565b600060208201905081810360008301526141bd81614181565b9050919050565b7f496e76616c6964207175616e746974792e000000000000000000000000000000600082015250565b60006141fa601183613986565b9150614205826141c4565b602082019050919050565b60006020820190508181036000830152614229816141ed565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061426a82613a36565b915061427583613a36565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142aa576142a9614230565b5b828201905092915050565b7f45786365656473206d6178696d756d20737570706c792e000000000000000000600082015250565b60006142eb601783613986565b91506142f6826142b5565b602082019050919050565b6000602082019050818103600083015261431a816142de565b9050919050565b600061432c82613a36565b915061433783613a36565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143705761436f614230565b5b828202905092915050565b7f4e6f7420656e6f75676820737570706c792e0000000000000000000000000000600082015250565b60006143b1601283613986565b91506143bc8261437b565b602082019050919050565b600060208201905081810360008301526143e0816143a4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061442182613a36565b915061442c83613a36565b92508261443c5761443b6143e7565b5b828204905092915050565b600081905092915050565b50565b6000614462600083614447565b915061446d82614452565b600082019050919050565b600061448382614455565b9150819050919050565b600061449882613a36565b91506144a383613a36565b9250828210156144b6576144b5614230565b5b828203905092915050565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b60006144f7601683613986565b9150614502826144c1565b602082019050919050565b60006020820190508181036000830152614526816144ea565b9050919050565b600081905092915050565b60006145438261397b565b61454d818561452d565b935061455d818560208601613997565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461458b816140ba565b614595818661452d565b945060018216600081146145b057600181146145c1576145f4565b60ff198316865281860193506145f4565b6145ca85614569565b60005b838110156145ec578154818901526001820191506020810190506145cd565b838801955050505b50505092915050565b60006146098286614538565b91506146158285614538565b9150614621828461457e565b9150819050949350505050565b7f436f75706f6e206973206e6f742076616c69642e000000000000000000000000600082015250565b6000614664601483613986565b915061466f8261462e565b602082019050919050565b6000602082019050818103600083015261469381614657565b9050919050565b7f57616c6c65742068617320616c7265616479206d696e7465642e000000000000600082015250565b60006146d0601a83613986565b91506146db8261469a565b602082019050919050565b600060208201905081810360008301526146ff816146c3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614762602683613986565b915061476d82614706565b604082019050919050565b6000602082019050818103600083015261479181614755565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006147bf82614798565b6147c981856147a3565b93506147d9818560208601613997565b6147e2816139ca565b840191505092915050565b60006080820190506148026000830187613acb565b61480f6020830186613acb565b61481c6040830185613d38565b818103606083015261482e81846147b4565b905095945050505050565b600081519050614848816138ec565b92915050565b600060208284031215614864576148636138b6565b5b600061487284828501614839565b91505092915050565b600061488682613a36565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148b9576148b8614230565b5b600182019050919050565b60006148cf82613a36565b91506148da83613a36565b9250826148ea576148e96143e7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160601b9050919050565b600061493c82614924565b9050919050565b600061494e82614931565b9050919050565b61496661496182613ab9565b614943565b82525050565b60006149788284614955565b60148201915081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b60006149bd601c8361452d565b91506149c882614987565b601c82019050919050565b6000819050919050565b6149ee6149e982613f4b565b6149d3565b82525050565b60006149ff826149b0565b9150614a0b82846149dd565b60208201915081905092915050565b614a2381613f4b565b82525050565b614a3281613f81565b82525050565b6000608082019050614a4d6000830187614a1a565b614a5a6020830186614a29565b614a676040830185614a1a565b614a746060830184614a1a565b95945050505050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000614ab3601883613986565b9150614abe82614a7d565b602082019050919050565b60006020820190508181036000830152614ae281614aa6565b905091905056fea264697066735822122014de5ab479058968525c00561bb0890b686ec757e3b9d33c53ca648e40e0bd9664736f6c634300080c0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000a2f72657665616c65642f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f756e626f7265646d6f6e6b6579732e6d7970696e6174612e636c6f75642f697066732f516d5251476556387546476575725057735574396d4c6e797153626256427776357272527042366a6e457a65464d0000000000000000000000000000000000000000000000000000000000000000000000000000052e6a736f6e000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80636352211e11610139578063a22cb465116100b6578063ce05ecba1161007a578063ce05ecba14610873578063d547cfb71461089c578063e0a80853146108c7578063e7c1a629146108f0578063e985e9c51461090c578063f2fde38b1461094957610251565b8063a22cb4651461078e578063b88d4fde146107b7578063c002d23d146107e0578063c87b56dd1461080b578063cd87fcfe1461084857610251565b80637f00c7a6116100fd5780637f00c7a6146106bb5780638da5cb5b146106e4578063902d55a51461070f57806395d89b411461073a578063a1470c1d1461076557610251565b80636352211e146105d85780636a420614146106155780636c19e7831461063e57806370a0823114610667578063715018a6146106a457610251565b80632f745c59116101d257806344a0d68a1161019657806344a0d68a146104c65780634f6ccce7146104ef578063518302271461052c5780635503a0e8146105575780635c5458ef146105825780635c975abb146105ad57610251565b80632f745c591461041157806330176e131461044e5780633ccfd60b1461047757806342842e0e14610481578063449a52f8146104aa57610251565b806316c38b3c1161021957806316c38b3c1461034d57806317fb85941461037657806318160ddd14610392578063187fad82146103bd57806323b872dd146103e857610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806316ba10e014610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613918565b610972565b60405161028a9190613960565b60405180910390f35b34801561029f57600080fd5b506102a8610abc565b6040516102b59190613a14565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613a6c565b610b4e565b6040516102f29190613ada565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613b21565b610bca565b005b34801561033057600080fd5b5061034b60048036038101906103469190613c96565b610cd5565b005b34801561035957600080fd5b50610374600480360381019061036f9190613d0b565b610d6b565b005b610390600480360381019061038b9190613a6c565b610e04565b005b34801561039e57600080fd5b506103a7610fb2565b6040516103b49190613d47565b60405180910390f35b3480156103c957600080fd5b506103d2611007565b6040516103df9190613a14565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613d62565b611095565b005b34801561041d57600080fd5b5061043860048036038101906104339190613b21565b6110a5565b6040516104459190613d47565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190613c96565b6112ac565b005b61047f611342565b005b34801561048d57600080fd5b506104a860048036038101906104a39190613d62565b6114fe565b005b6104c460048036038101906104bf9190613b21565b61151e565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190613a6c565b611611565b005b3480156104fb57600080fd5b5061051660048036038101906105119190613a6c565b611697565b6040516105239190613d47565b60405180910390f35b34801561053857600080fd5b50610541611808565b60405161054e9190613960565b60405180910390f35b34801561056357600080fd5b5061056c61181b565b6040516105799190613a14565b60405180910390f35b34801561058e57600080fd5b506105976118a9565b6040516105a49190613d47565b60405180910390f35b3480156105b957600080fd5b506105c26118af565b6040516105cf9190613960565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa9190613a6c565b6118c2565b60405161060c9190613ada565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190613a6c565b6118d8565b005b34801561064a57600080fd5b5061066560048036038101906106609190613db5565b61195e565b005b34801561067357600080fd5b5061068e60048036038101906106899190613db5565b611a1e565b60405161069b9190613d47565b60405180910390f35b3480156106b057600080fd5b506106b9611aee565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190613a6c565b611b76565b005b3480156106f057600080fd5b506106f9611bfc565b6040516107069190613ada565b60405180910390f35b34801561071b57600080fd5b50610724611c26565b6040516107319190613d47565b60405180910390f35b34801561074657600080fd5b5061074f611c2c565b60405161075c9190613a14565b60405180910390f35b34801561077157600080fd5b5061078c60048036038101906107879190613a6c565b611cbe565b005b34801561079a57600080fd5b506107b560048036038101906107b09190613de2565b611d44565b005b3480156107c357600080fd5b506107de60048036038101906107d99190613ec3565b611ebc565b005b3480156107ec57600080fd5b506107f5611f0f565b6040516108029190613d47565b60405180910390f35b34801561081757600080fd5b50610832600480360381019061082d9190613a6c565b611f15565b60405161083f9190613a14565b60405180910390f35b34801561085457600080fd5b5061085d612045565b60405161086a9190613d47565b60405180910390f35b34801561087f57600080fd5b5061089a60048036038101906108959190613c96565b61204b565b005b3480156108a857600080fd5b506108b16120e1565b6040516108be9190613a14565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e99190613d0b565b61216f565b005b61090a6004803603810190610905919061401e565b612208565b005b34801561091857600080fd5b50610933600480360381019061092e919061404b565b61234c565b6040516109409190613960565b60405180910390f35b34801561095557600080fd5b50610970600480360381019061096b9190613db5565b6123e0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aa557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab55750610ab4826124d8565b5b9050919050565b606060018054610acb906140ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610af7906140ba565b8015610b445780601f10610b1957610100808354040283529160200191610b44565b820191906000526020600020905b815481529060010190602001808311610b2757829003601f168201915b5050505050905090565b6000610b5982612542565b610b8f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bd5826118c2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c3d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c5c6125aa565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c8e5750610c8c81610c876125aa565b61234c565b155b15610cc5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cd08383836125b2565b505050565b610cdd6125aa565b73ffffffffffffffffffffffffffffffffffffffff16610cfb611bfc565b73ffffffffffffffffffffffffffffffffffffffff1614610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890614138565b60405180910390fd5b8060119080519060200190610d679291906137c6565b5050565b610d736125aa565b73ffffffffffffffffffffffffffffffffffffffff16610d91611bfc565b73ffffffffffffffffffffffffffffffffffffffff1614610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde90614138565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6000610e0e610fb2565b9050601260009054906101000a900460ff1615610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e57906141a4565b60405180910390fd5b600082118015610e725750600c548211155b610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea890614210565b60405180910390fd5b6009548282610ec0919061425f565b1115610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef890614301565b60405180910390fd5b610f09611bfc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fa457600b548282610f4a919061425f565b111580610f64575081600a54610f609190614321565b3410155b610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a906143c7565b60405180910390fd5b5b610fae3383612664565b5050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b60138054611014906140ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611040906140ba565b801561108d5780601f106110625761010080835404028352916020019161108d565b820191906000526020600020905b81548152906001019060200180831161107057829003601f168201915b505050505081565b6110a0838383612682565b505050565b60006110b083611a1e565b82106110e8576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b838110156112a0576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151156111ff5750611293565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461123f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561129157868414156112885781955050505050506112a6565b83806001019450505b505b8080600101915050611122565b50600080fd5b92915050565b6112b46125aa565b73ffffffffffffffffffffffffffffffffffffffff166112d2611bfc565b73ffffffffffffffffffffffffffffffffffffffff1614611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f90614138565b60405180910390fd5b806010908051906020019061133e9291906137c6565b5050565b61134a6125aa565b73ffffffffffffffffffffffffffffffffffffffff16611368611bfc565b73ffffffffffffffffffffffffffffffffffffffff16146113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b590614138565b60405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166002476114069190614416565b60405161141290614478565b60006040518083038185875af1925050503d806000811461144f576040519150601f19603f3d011682016040523d82523d6000602084013e611454565b606091505b505090508061146257600080fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516114aa90614478565b60006040518083038185875af1925050503d80600081146114e7576040519150601f19603f3d011682016040523d82523d6000602084013e6114ec565b606091505b50509050806114fa57600080fd5b5050565b61151983838360405180602001604052806000815250611ebc565b505050565b6115266125aa565b73ffffffffffffffffffffffffffffffffffffffff16611544611bfc565b73ffffffffffffffffffffffffffffffffffffffff161461159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159190614138565b60405180910390fd5b60006115a4610fb2565b9050600954600183836115b7919061425f565b6115c1919061448d565b1115611602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f99061450d565b60405180910390fd5b61160c8383612664565b505050565b6116196125aa565b73ffffffffffffffffffffffffffffffffffffffff16611637611bfc565b73ffffffffffffffffffffffffffffffffffffffff161461168d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168490614138565b60405180910390fd5b80600a8190555050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b828110156117d0576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516117c257858314156117b95781945050505050611803565b82806001019350505b5080806001019150506116cf565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b601260019054906101000a900460ff1681565b60118054611828906140ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611854906140ba565b80156118a15780601f10611876576101008083540402835291602001916118a1565b820191906000526020600020905b81548152906001019060200180831161188457829003601f168201915b505050505081565b600c5481565b601260009054906101000a900460ff1681565b60006118cd82612b9f565b600001519050919050565b6118e06125aa565b73ffffffffffffffffffffffffffffffffffffffff166118fe611bfc565b73ffffffffffffffffffffffffffffffffffffffff1614611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b90614138565b60405180910390fd5b80600b8190555050565b6119666125aa565b73ffffffffffffffffffffffffffffffffffffffff16611984611bfc565b73ffffffffffffffffffffffffffffffffffffffff16146119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d190614138565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a86576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611af66125aa565b73ffffffffffffffffffffffffffffffffffffffff16611b14611bfc565b73ffffffffffffffffffffffffffffffffffffffff1614611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190614138565b60405180910390fd5b611b746000612e47565b565b611b7e6125aa565b73ffffffffffffffffffffffffffffffffffffffff16611b9c611bfc565b73ffffffffffffffffffffffffffffffffffffffff1614611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990614138565b60405180910390fd5b8060098190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b606060028054611c3b906140ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611c67906140ba565b8015611cb45780601f10611c8957610100808354040283529160200191611cb4565b820191906000526020600020905b815481529060010190602001808311611c9757829003601f168201915b5050505050905090565b611cc66125aa565b73ffffffffffffffffffffffffffffffffffffffff16611ce4611bfc565b73ffffffffffffffffffffffffffffffffffffffff1614611d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3190614138565b60405180910390fd5b80600c8190555050565b611d4c6125aa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611db1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611dbe6125aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e6b6125aa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611eb09190613960565b60405180910390a35050565b611ec7848484612682565b611ed384848484612f0d565b611f09576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a5481565b6060611f2082612542565b611f56576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601260019054906101000a900460ff16611ffc5760138054611f77906140ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611fa3906140ba565b8015611ff05780601f10611fc557610100808354040283529160200191611ff0565b820191906000526020600020905b815481529060010190602001808311611fd357829003601f168201915b50505050509050612040565b61200461308c565b61201a61271084612015919061425f565b61311e565b601160405160200161202e939291906145fd565b60405160208183030381529060405290505b919050565b600b5481565b6120536125aa565b73ffffffffffffffffffffffffffffffffffffffff16612071611bfc565b73ffffffffffffffffffffffffffffffffffffffff16146120c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120be90614138565b60405180910390fd5b80601390805190602001906120dd9291906137c6565b5050565b601080546120ee906140ba565b80601f016020809104026020016040519081016040528092919081815260200182805461211a906140ba565b80156121675780601f1061213c57610100808354040283529160200191612167565b820191906000526020600020905b81548152906001019060200180831161214a57829003601f168201915b505050505081565b6121776125aa565b73ffffffffffffffffffffffffffffffffffffffff16612195611bfc565b73ffffffffffffffffffffffffffffffffffffffff16146121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290614138565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b61221a6122143361327f565b826132d5565b612259576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122509061467a565b60405180910390fd5b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd906146e6565b60405180910390fd5b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612349336001612664565b50565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123e86125aa565b73ffffffffffffffffffffffffffffffffffffffff16612406611bfc565b73ffffffffffffffffffffffffffffffffffffffff161461245c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245390614138565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c390614778565b60405180910390fd5b6124d581612e47565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16821080156125a3575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61267e8282604051806020016040528060008152506133ff565b5050565b600061268d82612b9f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166126b46125aa565b73ffffffffffffffffffffffffffffffffffffffff1614806126e757506126e682600001516126e16125aa565b61234c565b5b8061272c57506126f56125aa565b73ffffffffffffffffffffffffffffffffffffffff1661271484610b4e565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612765576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146127ce576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612835576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128428585856001613411565b61285260008484600001516125b2565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b2f5760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612b2e5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b988585856001613417565b5050505050565b612ba761384c565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612e10576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612e0e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cf2578092505050612e42565b5b600115612e0d57818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e08578092505050612e42565b612cf3565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612f2e8473ffffffffffffffffffffffffffffffffffffffff1661341d565b1561307f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f576125aa565b8786866040518563ffffffff1660e01b8152600401612f7994939291906147ed565b6020604051808303816000875af1925050508015612fb557506040513d601f19601f82011682018060405250810190612fb2919061484e565b60015b61302f573d8060008114612fe5576040519150601f19603f3d011682016040523d82523d6000602084013e612fea565b606091505b50600081511415613027576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613084565b600190505b949350505050565b60606010805461309b906140ba565b80601f01602080910402602001604051908101604052809291908181526020018280546130c7906140ba565b80156131145780601f106130e957610100808354040283529160200191613114565b820191906000526020600020905b8154815290600101906020018083116130f757829003601f168201915b5050505050905090565b60606000821415613166576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061327a565b600082905060005b600082146131985780806131819061487b565b915050600a826131919190614416565b915061316e565b60008167ffffffffffffffff8111156131b4576131b3613b6b565b5b6040519080825280601f01601f1916602001820160405280156131e65781602001600182028036833780820191505090505b5090505b60008514613273576001826131ff919061448d565b9150600a8561320e91906148c4565b603061321a919061425f565b60f81b8183815181106132305761322f6148f5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561326c9190614416565b94506131ea565b8093505050505b919050565b600081604051602001613292919061496c565b604051602081830303815290604052805190602001206040516020016132b891906149f4565b604051602081830303815290604052805190602001209050919050565b600080600184846040015185600001518660200151604051600081526020016040526040516133079493929190614a38565b6020604051602081039080840390855afa158015613329573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156133a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339c90614ac9565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161491505092915050565b61340c8383836001613430565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156134cb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613506576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135136000868387613411565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561377857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561372c575061372a6000888488612f0d565b155b15613763576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506136b1565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506137bf6000868387613417565b5050505050565b8280546137d2906140ba565b90600052602060002090601f0160209004810192826137f4576000855561383b565b82601f1061380d57805160ff191683800117855561383b565b8280016001018555821561383b579182015b8281111561383a57825182559160200191906001019061381f565b5b509050613848919061388f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156138a8576000816000905550600101613890565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6138f5816138c0565b811461390057600080fd5b50565b600081359050613912816138ec565b92915050565b60006020828403121561392e5761392d6138b6565b5b600061393c84828501613903565b91505092915050565b60008115159050919050565b61395a81613945565b82525050565b60006020820190506139756000830184613951565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156139b557808201518184015260208101905061399a565b838111156139c4576000848401525b50505050565b6000601f19601f8301169050919050565b60006139e68261397b565b6139f08185613986565b9350613a00818560208601613997565b613a09816139ca565b840191505092915050565b60006020820190508181036000830152613a2e81846139db565b905092915050565b6000819050919050565b613a4981613a36565b8114613a5457600080fd5b50565b600081359050613a6681613a40565b92915050565b600060208284031215613a8257613a816138b6565b5b6000613a9084828501613a57565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ac482613a99565b9050919050565b613ad481613ab9565b82525050565b6000602082019050613aef6000830184613acb565b92915050565b613afe81613ab9565b8114613b0957600080fd5b50565b600081359050613b1b81613af5565b92915050565b60008060408385031215613b3857613b376138b6565b5b6000613b4685828601613b0c565b9250506020613b5785828601613a57565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613ba3826139ca565b810181811067ffffffffffffffff82111715613bc257613bc1613b6b565b5b80604052505050565b6000613bd56138ac565b9050613be18282613b9a565b919050565b600067ffffffffffffffff821115613c0157613c00613b6b565b5b613c0a826139ca565b9050602081019050919050565b82818337600083830152505050565b6000613c39613c3484613be6565b613bcb565b905082815260208101848484011115613c5557613c54613b66565b5b613c60848285613c17565b509392505050565b600082601f830112613c7d57613c7c613b61565b5b8135613c8d848260208601613c26565b91505092915050565b600060208284031215613cac57613cab6138b6565b5b600082013567ffffffffffffffff811115613cca57613cc96138bb565b5b613cd684828501613c68565b91505092915050565b613ce881613945565b8114613cf357600080fd5b50565b600081359050613d0581613cdf565b92915050565b600060208284031215613d2157613d206138b6565b5b6000613d2f84828501613cf6565b91505092915050565b613d4181613a36565b82525050565b6000602082019050613d5c6000830184613d38565b92915050565b600080600060608486031215613d7b57613d7a6138b6565b5b6000613d8986828701613b0c565b9350506020613d9a86828701613b0c565b9250506040613dab86828701613a57565b9150509250925092565b600060208284031215613dcb57613dca6138b6565b5b6000613dd984828501613b0c565b91505092915050565b60008060408385031215613df957613df86138b6565b5b6000613e0785828601613b0c565b9250506020613e1885828601613cf6565b9150509250929050565b600067ffffffffffffffff821115613e3d57613e3c613b6b565b5b613e46826139ca565b9050602081019050919050565b6000613e66613e6184613e22565b613bcb565b905082815260208101848484011115613e8257613e81613b66565b5b613e8d848285613c17565b509392505050565b600082601f830112613eaa57613ea9613b61565b5b8135613eba848260208601613e53565b91505092915050565b60008060008060808587031215613edd57613edc6138b6565b5b6000613eeb87828801613b0c565b9450506020613efc87828801613b0c565b9350506040613f0d87828801613a57565b925050606085013567ffffffffffffffff811115613f2e57613f2d6138bb565b5b613f3a87828801613e95565b91505092959194509250565b600080fd5b6000819050919050565b613f5e81613f4b565b8114613f6957600080fd5b50565b600081359050613f7b81613f55565b92915050565b600060ff82169050919050565b613f9781613f81565b8114613fa257600080fd5b50565b600081359050613fb481613f8e565b92915050565b600060608284031215613fd057613fcf613f46565b5b613fda6060613bcb565b90506000613fea84828501613f6c565b6000830152506020613ffe84828501613f6c565b602083015250604061401284828501613fa5565b60408301525092915050565b600060608284031215614034576140336138b6565b5b600061404284828501613fba565b91505092915050565b60008060408385031215614062576140616138b6565b5b600061407085828601613b0c565b925050602061408185828601613b0c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140d257607f821691505b602082108114156140e6576140e561408b565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614122602083613986565b915061412d826140ec565b602082019050919050565b6000602082019050818103600083015261415181614115565b9050919050565b7f4d696e74696e67206973207061757365642e0000000000000000000000000000600082015250565b600061418e601283613986565b915061419982614158565b602082019050919050565b600060208201905081810360008301526141bd81614181565b9050919050565b7f496e76616c6964207175616e746974792e000000000000000000000000000000600082015250565b60006141fa601183613986565b9150614205826141c4565b602082019050919050565b60006020820190508181036000830152614229816141ed565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061426a82613a36565b915061427583613a36565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142aa576142a9614230565b5b828201905092915050565b7f45786365656473206d6178696d756d20737570706c792e000000000000000000600082015250565b60006142eb601783613986565b91506142f6826142b5565b602082019050919050565b6000602082019050818103600083015261431a816142de565b9050919050565b600061432c82613a36565b915061433783613a36565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143705761436f614230565b5b828202905092915050565b7f4e6f7420656e6f75676820737570706c792e0000000000000000000000000000600082015250565b60006143b1601283613986565b91506143bc8261437b565b602082019050919050565b600060208201905081810360008301526143e0816143a4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061442182613a36565b915061442c83613a36565b92508261443c5761443b6143e7565b5b828204905092915050565b600081905092915050565b50565b6000614462600083614447565b915061446d82614452565b600082019050919050565b600061448382614455565b9150819050919050565b600061449882613a36565b91506144a383613a36565b9250828210156144b6576144b5614230565b5b828203905092915050565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b60006144f7601683613986565b9150614502826144c1565b602082019050919050565b60006020820190508181036000830152614526816144ea565b9050919050565b600081905092915050565b60006145438261397b565b61454d818561452d565b935061455d818560208601613997565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461458b816140ba565b614595818661452d565b945060018216600081146145b057600181146145c1576145f4565b60ff198316865281860193506145f4565b6145ca85614569565b60005b838110156145ec578154818901526001820191506020810190506145cd565b838801955050505b50505092915050565b60006146098286614538565b91506146158285614538565b9150614621828461457e565b9150819050949350505050565b7f436f75706f6e206973206e6f742076616c69642e000000000000000000000000600082015250565b6000614664601483613986565b915061466f8261462e565b602082019050919050565b6000602082019050818103600083015261469381614657565b9050919050565b7f57616c6c65742068617320616c7265616479206d696e7465642e000000000000600082015250565b60006146d0601a83613986565b91506146db8261469a565b602082019050919050565b600060208201905081810360008301526146ff816146c3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614762602683613986565b915061476d82614706565b604082019050919050565b6000602082019050818103600083015261479181614755565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006147bf82614798565b6147c981856147a3565b93506147d9818560208601613997565b6147e2816139ca565b840191505092915050565b60006080820190506148026000830187613acb565b61480f6020830186613acb565b61481c6040830185613d38565b818103606083015261482e81846147b4565b905095945050505050565b600081519050614848816138ec565b92915050565b600060208284031215614864576148636138b6565b5b600061487284828501614839565b91505092915050565b600061488682613a36565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148b9576148b8614230565b5b600182019050919050565b60006148cf82613a36565b91506148da83613a36565b9250826148ea576148e96143e7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160601b9050919050565b600061493c82614924565b9050919050565b600061494e82614931565b9050919050565b61496661496182613ab9565b614943565b82525050565b60006149788284614955565b60148201915081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b60006149bd601c8361452d565b91506149c882614987565b601c82019050919050565b6000819050919050565b6149ee6149e982613f4b565b6149d3565b82525050565b60006149ff826149b0565b9150614a0b82846149dd565b60208201915081905092915050565b614a2381613f4b565b82525050565b614a3281613f81565b82525050565b6000608082019050614a4d6000830187614a1a565b614a5a6020830186614a29565b614a676040830185614a1a565b614a746060830184614a1a565b95945050505050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000614ab3601883613986565b9150614abe82614a7d565b602082019050919050565b60006020820190508181036000830152614ae281614aa6565b905091905056fea264697066735822122014de5ab479058968525c00561bb0890b686ec757e3b9d33c53ca648e40e0bd9664736f6c634300080c0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000a2f72657665616c65642f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f756e626f7265646d6f6e6b6579732e6d7970696e6174612e636c6f75642f697066732f516d5251476556387546476575725057735574396d4c6e797153626256427776357272527042366a6e457a65464d0000000000000000000000000000000000000000000000000000000000000000000000000000052e6a736f6e000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): /revealed/
Arg [1] : _revealImage (string): https://unboredmonkeys.mypinata.cloud/ipfs/QmRQGeV8uFGeurPWsUt9mLnyqSbbVBwv5rrRpB6jnEzeFM
Arg [2] : _uriSuffix (string): .json

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 2f72657665616c65642f00000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000059
Arg [6] : 68747470733a2f2f756e626f7265646d6f6e6b6579732e6d7970696e6174612e
Arg [7] : 636c6f75642f697066732f516d5251476556387546476575725057735574396d
Arg [8] : 4c6e797153626256427776357272527042366a6e457a65464d00000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [10] : 2e6a736f6e000000000000000000000000000000000000000000000000000000


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.