ETH Price: $2,332.53 (+1.00%)

Token

AiWorlds (AIWRLDS)
 

Overview

Max Total Supply

50 AIWRLDS

Holders

47

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AIWRLDS
0xcc7EF8719a31CD658ca455B0CCE08e492AE6c521
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:
AIWRLDS

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

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

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

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

    mapping(address => bool) _mintedAddresses;

    // Constants
    uint256 public TOTAL_SUPPLY = 2222;
    uint256 public MINT_PRICE = 0.01 ether;
    uint256 public FREE_ITEMS_COUNT = 0;
    uint256 public MAX_IN_TRX = 10;

    address payable withdrawTo =
        payable(0xCc92F5DA26f156681fa6EeE8E63BfEEc605D228f);

    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("AiWorlds", "AIWRLDS") {
        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 {
        uint256 supply = totalSupply();

        require(
            _isVerifiedCoupon(_createMessageDigest(msg.sender), coupon),
            "Coupon is not valid."
        ); // require that each wallet can only mint one token

        require(supply + 1 <= TOTAL_SUPPLY, "Exceeds maximum supply.");

        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 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 AIWRLDS.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"}]

60806040526108ae600955662386f26fc10000600a556000600b55600a600c5573cc92f5da26f156681fa6eee8e63bfeec605d228f600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507318090cfacb9879b0d631ea6bf826d32a28d381ec600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055503480156200010c57600080fd5b50604051620053fd380380620053fd833981810160405281019062000132919062000774565b6040518060400160405280600881526020017f4169576f726c64730000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f414957524c4453000000000000000000000000000000000000000000000000008152508160019080519060200190620001b692919062000527565b508060029080519060200190620001cf92919062000527565b505050620001f2620001e66200022e60201b60201c565b6200023660201b60201c565b6200020383620002fc60201b60201c565b6200021482620003a760201b60201c565b62000225816200045260201b60201c565b50505062000915565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200030c6200022e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000332620004fd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200038b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000382906200088e565b60405180910390fd5b80600f9080519060200190620003a392919062000527565b5050565b620003b76200022e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003dd620004fd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000436576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200042d906200088e565b60405180910390fd5b80601290805190602001906200044e92919062000527565b5050565b620004626200022e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000488620004fd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004d8906200088e565b60405180910390fd5b8060109080519060200190620004f992919062000527565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200053590620008df565b90600052602060002090601f016020900481019282620005595760008555620005a5565b82601f106200057457805160ff1916838001178555620005a5565b82800160010185558215620005a5579182015b82811115620005a457825182559160200191906001019062000587565b5b509050620005b49190620005b8565b5090565b5b80821115620005d3576000816000905550600101620005b9565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200064082620005f5565b810181811067ffffffffffffffff8211171562000662576200066162000606565b5b80604052505050565b600062000677620005d7565b905062000685828262000635565b919050565b600067ffffffffffffffff821115620006a857620006a762000606565b5b620006b382620005f5565b9050602081019050919050565b60005b83811015620006e0578082015181840152602081019050620006c3565b83811115620006f0576000848401525b50505050565b60006200070d62000707846200068a565b6200066b565b9050828152602081018484840111156200072c576200072b620005f0565b5b62000739848285620006c0565b509392505050565b600082601f830112620007595762000758620005eb565b5b81516200076b848260208601620006f6565b91505092915050565b60008060006060848603121562000790576200078f620005e1565b5b600084015167ffffffffffffffff811115620007b157620007b0620005e6565b5b620007bf8682870162000741565b935050602084015167ffffffffffffffff811115620007e357620007e2620005e6565b5b620007f18682870162000741565b925050604084015167ffffffffffffffff811115620008155762000814620005e6565b5b620008238682870162000741565b9150509250925092565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620008766020836200082d565b915062000883826200083e565b602082019050919050565b60006020820190508181036000830152620008a98162000867565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008f857607f821691505b602082108114156200090f576200090e620008b0565b5b50919050565b614ad880620009256000396000f3fe6080604052600436106102515760003560e01c80636352211e11610139578063a22cb465116100b6578063ce05ecba1161007a578063ce05ecba14610873578063d547cfb71461089c578063e0a80853146108c7578063e7c1a629146108f0578063e985e9c51461090c578063f2fde38b1461094957610251565b8063a22cb4651461078e578063b88d4fde146107b7578063c002d23d146107e0578063c87b56dd1461080b578063cd87fcfe1461084857610251565b80637f00c7a6116100fd5780637f00c7a6146106bb5780638da5cb5b146106e4578063902d55a51461070f57806395d89b411461073a578063a1470c1d1461076557610251565b80636352211e146105d85780636a420614146106155780636c19e7831461063e57806370a0823114610667578063715018a6146106a457610251565b80632f745c59116101d257806344a0d68a1161019657806344a0d68a146104c65780634f6ccce7146104ef578063518302271461052c5780635503a0e8146105575780635c5458ef146105825780635c975abb146105ad57610251565b80632f745c591461041157806330176e131461044e5780633ccfd60b1461047757806342842e0e14610481578063449a52f8146104aa57610251565b806316c38b3c1161021957806316c38b3c1461034d57806317fb85941461037657806318160ddd14610392578063187fad82146103bd57806323b872dd146103e857610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806316ba10e014610324575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906138d1565b610972565b60405161028a9190613919565b60405180910390f35b34801561029f57600080fd5b506102a8610abc565b6040516102b591906139cd565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613a25565b610b4e565b6040516102f29190613a93565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613ada565b610bca565b005b34801561033057600080fd5b5061034b60048036038101906103469190613c4f565b610cd5565b005b34801561035957600080fd5b50610374600480360381019061036f9190613cc4565b610d6b565b005b610390600480360381019061038b9190613a25565b610e04565b005b34801561039e57600080fd5b506103a7610fb2565b6040516103b49190613d00565b60405180910390f35b3480156103c957600080fd5b506103d2611007565b6040516103df91906139cd565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613d1b565b611095565b005b34801561041d57600080fd5b5061043860048036038101906104339190613ada565b6110a5565b6040516104459190613d00565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190613c4f565b6112ac565b005b61047f611342565b005b34801561048d57600080fd5b506104a860048036038101906104a39190613d1b565b611459565b005b6104c460048036038101906104bf9190613ada565b611479565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190613a25565b61156c565b005b3480156104fb57600080fd5b5061051660048036038101906105119190613a25565b6115f2565b6040516105239190613d00565b60405180910390f35b34801561053857600080fd5b50610541611763565b60405161054e9190613919565b60405180910390f35b34801561056357600080fd5b5061056c611776565b60405161057991906139cd565b60405180910390f35b34801561058e57600080fd5b50610597611804565b6040516105a49190613d00565b60405180910390f35b3480156105b957600080fd5b506105c261180a565b6040516105cf9190613919565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa9190613a25565b61181d565b60405161060c9190613a93565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190613a25565b611833565b005b34801561064a57600080fd5b5061066560048036038101906106609190613d6e565b6118b9565b005b34801561067357600080fd5b5061068e60048036038101906106899190613d6e565b611979565b60405161069b9190613d00565b60405180910390f35b3480156106b057600080fd5b506106b9611a49565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190613a25565b611ad1565b005b3480156106f057600080fd5b506106f9611b57565b6040516107069190613a93565b60405180910390f35b34801561071b57600080fd5b50610724611b81565b6040516107319190613d00565b60405180910390f35b34801561074657600080fd5b5061074f611b87565b60405161075c91906139cd565b60405180910390f35b34801561077157600080fd5b5061078c60048036038101906107879190613a25565b611c19565b005b34801561079a57600080fd5b506107b560048036038101906107b09190613d9b565b611c9f565b005b3480156107c357600080fd5b506107de60048036038101906107d99190613e7c565b611e17565b005b3480156107ec57600080fd5b506107f5611e6a565b6040516108029190613d00565b60405180910390f35b34801561081757600080fd5b50610832600480360381019061082d9190613a25565b611e70565b60405161083f91906139cd565b60405180910390f35b34801561085457600080fd5b5061085d611fa0565b60405161086a9190613d00565b60405180910390f35b34801561087f57600080fd5b5061089a60048036038101906108959190613c4f565b611fa6565b005b3480156108a857600080fd5b506108b161203c565b6040516108be91906139cd565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e99190613cc4565b6120ca565b005b61090a60048036038101906109059190613fd7565b612163565b005b34801561091857600080fd5b50610933600480360381019061092e9190614004565b612305565b6040516109409190613919565b60405180910390f35b34801561095557600080fd5b50610970600480360381019061096b9190613d6e565b612399565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aa557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab55750610ab482612491565b5b9050919050565b606060018054610acb90614073565b80601f0160208091040260200160405190810160405280929190818152602001828054610af790614073565b8015610b445780601f10610b1957610100808354040283529160200191610b44565b820191906000526020600020905b815481529060010190602001808311610b2757829003601f168201915b5050505050905090565b6000610b59826124fb565b610b8f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bd58261181d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c3d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c5c612563565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c8e5750610c8c81610c87612563565b612305565b155b15610cc5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cd083838361256b565b505050565b610cdd612563565b73ffffffffffffffffffffffffffffffffffffffff16610cfb611b57565b73ffffffffffffffffffffffffffffffffffffffff1614610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d48906140f1565b60405180910390fd5b8060109080519060200190610d6792919061377f565b5050565b610d73612563565b73ffffffffffffffffffffffffffffffffffffffff16610d91611b57565b73ffffffffffffffffffffffffffffffffffffffff1614610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde906140f1565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000610e0e610fb2565b9050601160009054906101000a900460ff1615610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e579061415d565b60405180910390fd5b600082118015610e725750600c548211155b610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea8906141c9565b60405180910390fd5b6009548282610ec09190614218565b1115610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef8906142ba565b60405180910390fd5b610f09611b57565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fa457600b548282610f4a9190614218565b111580610f64575081600a54610f6091906142da565b3410155b610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a90614380565b60405180910390fd5b5b610fae338361261d565b5050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b6012805461101490614073565b80601f016020809104026020016040519081016040528092919081815260200182805461104090614073565b801561108d5780601f106110625761010080835404028352916020019161108d565b820191906000526020600020905b81548152906001019060200180831161107057829003601f168201915b505050505081565b6110a083838361263b565b505050565b60006110b083611979565b82106110e8576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b838110156112a0576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151156111ff5750611293565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461123f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561129157868414156112885781955050505050506112a6565b83806001019450505b505b8080600101915050611122565b50600080fd5b92915050565b6112b4612563565b73ffffffffffffffffffffffffffffffffffffffff166112d2611b57565b73ffffffffffffffffffffffffffffffffffffffff1614611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f906140f1565b60405180910390fd5b80600f908051906020019061133e92919061377f565b5050565b61134a612563565b73ffffffffffffffffffffffffffffffffffffffff16611368611b57565b73ffffffffffffffffffffffffffffffffffffffff16146113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b5906140f1565b60405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611406906143d1565b60006040518083038185875af1925050503d8060008114611443576040519150601f19603f3d011682016040523d82523d6000602084013e611448565b606091505b505090508061145657600080fd5b50565b61147483838360405180602001604052806000815250611e17565b505050565b611481612563565b73ffffffffffffffffffffffffffffffffffffffff1661149f611b57565b73ffffffffffffffffffffffffffffffffffffffff16146114f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ec906140f1565b60405180910390fd5b60006114ff610fb2565b9050600954600183836115129190614218565b61151c91906143e6565b111561155d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155490614466565b60405180910390fd5b611567838361261d565b505050565b611574612563565b73ffffffffffffffffffffffffffffffffffffffff16611592611b57565b73ffffffffffffffffffffffffffffffffffffffff16146115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df906140f1565b60405180910390fd5b80600a8190555050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b8281101561172b576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161171d5785831415611714578194505050505061175e565b82806001019350505b50808060010191505061162a565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b601160019054906101000a900460ff1681565b6010805461178390614073565b80601f01602080910402602001604051908101604052809291908181526020018280546117af90614073565b80156117fc5780601f106117d1576101008083540402835291602001916117fc565b820191906000526020600020905b8154815290600101906020018083116117df57829003601f168201915b505050505081565b600c5481565b601160009054906101000a900460ff1681565b600061182882612b58565b600001519050919050565b61183b612563565b73ffffffffffffffffffffffffffffffffffffffff16611859611b57565b73ffffffffffffffffffffffffffffffffffffffff16146118af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a6906140f1565b60405180910390fd5b80600b8190555050565b6118c1612563565b73ffffffffffffffffffffffffffffffffffffffff166118df611b57565b73ffffffffffffffffffffffffffffffffffffffff1614611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c906140f1565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119e1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611a51612563565b73ffffffffffffffffffffffffffffffffffffffff16611a6f611b57565b73ffffffffffffffffffffffffffffffffffffffff1614611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc906140f1565b60405180910390fd5b611acf6000612e00565b565b611ad9612563565b73ffffffffffffffffffffffffffffffffffffffff16611af7611b57565b73ffffffffffffffffffffffffffffffffffffffff1614611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b44906140f1565b60405180910390fd5b8060098190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b606060028054611b9690614073565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc290614073565b8015611c0f5780601f10611be457610100808354040283529160200191611c0f565b820191906000526020600020905b815481529060010190602001808311611bf257829003601f168201915b5050505050905090565b611c21612563565b73ffffffffffffffffffffffffffffffffffffffff16611c3f611b57565b73ffffffffffffffffffffffffffffffffffffffff1614611c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8c906140f1565b60405180910390fd5b80600c8190555050565b611ca7612563565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d0c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611d19612563565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dc6612563565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e0b9190613919565b60405180910390a35050565b611e2284848461263b565b611e2e84848484612ec6565b611e64576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a5481565b6060611e7b826124fb565b611eb1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601160019054906101000a900460ff16611f575760128054611ed290614073565b80601f0160208091040260200160405190810160405280929190818152602001828054611efe90614073565b8015611f4b5780601f10611f2057610100808354040283529160200191611f4b565b820191906000526020600020905b815481529060010190602001808311611f2e57829003601f168201915b50505050509050611f9b565b611f5f613045565b611f7561271084611f709190614218565b6130d7565b6010604051602001611f8993929190614556565b60405160208183030381529060405290505b919050565b600b5481565b611fae612563565b73ffffffffffffffffffffffffffffffffffffffff16611fcc611b57565b73ffffffffffffffffffffffffffffffffffffffff1614612022576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612019906140f1565b60405180910390fd5b806012908051906020019061203892919061377f565b5050565b600f805461204990614073565b80601f016020809104026020016040519081016040528092919081815260200182805461207590614073565b80156120c25780601f10612097576101008083540402835291602001916120c2565b820191906000526020600020905b8154815290600101906020018083116120a557829003601f168201915b505050505081565b6120d2612563565b73ffffffffffffffffffffffffffffffffffffffff166120f0611b57565b73ffffffffffffffffffffffffffffffffffffffff1614612146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213d906140f1565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b600061216d610fb2565b905061218161217b33613238565b8361328e565b6121c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b7906145d3565b60405180910390fd5b6009546001826121d09190614218565b1115612211576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612208906142ba565b60405180910390fd5b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561229e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122959061463f565b60405180910390fd5b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061230133600161261d565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123a1612563565b73ffffffffffffffffffffffffffffffffffffffff166123bf611b57565b73ffffffffffffffffffffffffffffffffffffffff1614612415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240c906140f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247c906146d1565b60405180910390fd5b61248e81612e00565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168210801561255c575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6126378282604051806020016040528060008152506133b8565b5050565b600061264682612b58565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661266d612563565b73ffffffffffffffffffffffffffffffffffffffff1614806126a0575061269f826000015161269a612563565b612305565b5b806126e557506126ae612563565b73ffffffffffffffffffffffffffffffffffffffff166126cd84610b4e565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061271e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612787576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127ee576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127fb85858560016133ca565b61280b600084846000015161256b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612ae85760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612ae75782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b5185858560016133d0565b5050505050565b612b60613805565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612dc9576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612dc757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cab578092505050612dfb565b5b600115612dc657818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dc1578092505050612dfb565b612cac565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612ee78473ffffffffffffffffffffffffffffffffffffffff166133d6565b15613038578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f10612563565b8786866040518563ffffffff1660e01b8152600401612f329493929190614746565b6020604051808303816000875af1925050508015612f6e57506040513d601f19601f82011682018060405250810190612f6b91906147a7565b60015b612fe8573d8060008114612f9e576040519150601f19603f3d011682016040523d82523d6000602084013e612fa3565b606091505b50600081511415612fe0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061303d565b600190505b949350505050565b6060600f805461305490614073565b80601f016020809104026020016040519081016040528092919081815260200182805461308090614073565b80156130cd5780601f106130a2576101008083540402835291602001916130cd565b820191906000526020600020905b8154815290600101906020018083116130b057829003601f168201915b5050505050905090565b6060600082141561311f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613233565b600082905060005b6000821461315157808061313a906147d4565b915050600a8261314a919061484c565b9150613127565b60008167ffffffffffffffff81111561316d5761316c613b24565b5b6040519080825280601f01601f19166020018201604052801561319f5781602001600182028036833780820191505090505b5090505b6000851461322c576001826131b891906143e6565b9150600a856131c7919061487d565b60306131d39190614218565b60f81b8183815181106131e9576131e86148ae565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613225919061484c565b94506131a3565b8093505050505b919050565b60008160405160200161324b9190614925565b6040516020818303038152906040528051906020012060405160200161327191906149ad565b604051602081830303815290604052805190602001209050919050565b600080600184846040015185600001518660200151604051600081526020016040526040516132c094939291906149f1565b6020604051602081039080840390855afa1580156132e2573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561335e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335590614a82565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161491505092915050565b6133c583838360016133e9565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613484576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156134bf576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134cc60008683876133ca565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561373157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156136e557506136e36000888488612ec6565b155b1561371c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505061366a565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055505061377860008683876133d0565b5050505050565b82805461378b90614073565b90600052602060002090601f0160209004810192826137ad57600085556137f4565b82601f106137c657805160ff19168380011785556137f4565b828001600101855582156137f4579182015b828111156137f35782518255916020019190600101906137d8565b5b5090506138019190613848565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613861576000816000905550600101613849565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6138ae81613879565b81146138b957600080fd5b50565b6000813590506138cb816138a5565b92915050565b6000602082840312156138e7576138e661386f565b5b60006138f5848285016138bc565b91505092915050565b60008115159050919050565b613913816138fe565b82525050565b600060208201905061392e600083018461390a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561396e578082015181840152602081019050613953565b8381111561397d576000848401525b50505050565b6000601f19601f8301169050919050565b600061399f82613934565b6139a9818561393f565b93506139b9818560208601613950565b6139c281613983565b840191505092915050565b600060208201905081810360008301526139e78184613994565b905092915050565b6000819050919050565b613a02816139ef565b8114613a0d57600080fd5b50565b600081359050613a1f816139f9565b92915050565b600060208284031215613a3b57613a3a61386f565b5b6000613a4984828501613a10565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a7d82613a52565b9050919050565b613a8d81613a72565b82525050565b6000602082019050613aa86000830184613a84565b92915050565b613ab781613a72565b8114613ac257600080fd5b50565b600081359050613ad481613aae565b92915050565b60008060408385031215613af157613af061386f565b5b6000613aff85828601613ac5565b9250506020613b1085828601613a10565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b5c82613983565b810181811067ffffffffffffffff82111715613b7b57613b7a613b24565b5b80604052505050565b6000613b8e613865565b9050613b9a8282613b53565b919050565b600067ffffffffffffffff821115613bba57613bb9613b24565b5b613bc382613983565b9050602081019050919050565b82818337600083830152505050565b6000613bf2613bed84613b9f565b613b84565b905082815260208101848484011115613c0e57613c0d613b1f565b5b613c19848285613bd0565b509392505050565b600082601f830112613c3657613c35613b1a565b5b8135613c46848260208601613bdf565b91505092915050565b600060208284031215613c6557613c6461386f565b5b600082013567ffffffffffffffff811115613c8357613c82613874565b5b613c8f84828501613c21565b91505092915050565b613ca1816138fe565b8114613cac57600080fd5b50565b600081359050613cbe81613c98565b92915050565b600060208284031215613cda57613cd961386f565b5b6000613ce884828501613caf565b91505092915050565b613cfa816139ef565b82525050565b6000602082019050613d156000830184613cf1565b92915050565b600080600060608486031215613d3457613d3361386f565b5b6000613d4286828701613ac5565b9350506020613d5386828701613ac5565b9250506040613d6486828701613a10565b9150509250925092565b600060208284031215613d8457613d8361386f565b5b6000613d9284828501613ac5565b91505092915050565b60008060408385031215613db257613db161386f565b5b6000613dc085828601613ac5565b9250506020613dd185828601613caf565b9150509250929050565b600067ffffffffffffffff821115613df657613df5613b24565b5b613dff82613983565b9050602081019050919050565b6000613e1f613e1a84613ddb565b613b84565b905082815260208101848484011115613e3b57613e3a613b1f565b5b613e46848285613bd0565b509392505050565b600082601f830112613e6357613e62613b1a565b5b8135613e73848260208601613e0c565b91505092915050565b60008060008060808587031215613e9657613e9561386f565b5b6000613ea487828801613ac5565b9450506020613eb587828801613ac5565b9350506040613ec687828801613a10565b925050606085013567ffffffffffffffff811115613ee757613ee6613874565b5b613ef387828801613e4e565b91505092959194509250565b600080fd5b6000819050919050565b613f1781613f04565b8114613f2257600080fd5b50565b600081359050613f3481613f0e565b92915050565b600060ff82169050919050565b613f5081613f3a565b8114613f5b57600080fd5b50565b600081359050613f6d81613f47565b92915050565b600060608284031215613f8957613f88613eff565b5b613f936060613b84565b90506000613fa384828501613f25565b6000830152506020613fb784828501613f25565b6020830152506040613fcb84828501613f5e565b60408301525092915050565b600060608284031215613fed57613fec61386f565b5b6000613ffb84828501613f73565b91505092915050565b6000806040838503121561401b5761401a61386f565b5b600061402985828601613ac5565b925050602061403a85828601613ac5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061408b57607f821691505b6020821081141561409f5761409e614044565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140db60208361393f565b91506140e6826140a5565b602082019050919050565b6000602082019050818103600083015261410a816140ce565b9050919050565b7f4d696e74696e67206973207061757365642e0000000000000000000000000000600082015250565b600061414760128361393f565b915061415282614111565b602082019050919050565b600060208201905081810360008301526141768161413a565b9050919050565b7f496e76616c6964207175616e746974792e000000000000000000000000000000600082015250565b60006141b360118361393f565b91506141be8261417d565b602082019050919050565b600060208201905081810360008301526141e2816141a6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614223826139ef565b915061422e836139ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614263576142626141e9565b5b828201905092915050565b7f45786365656473206d6178696d756d20737570706c792e000000000000000000600082015250565b60006142a460178361393f565b91506142af8261426e565b602082019050919050565b600060208201905081810360008301526142d381614297565b9050919050565b60006142e5826139ef565b91506142f0836139ef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614329576143286141e9565b5b828202905092915050565b7f4e6f7420656e6f75676820737570706c792e0000000000000000000000000000600082015250565b600061436a60128361393f565b915061437582614334565b602082019050919050565b600060208201905081810360008301526143998161435d565b9050919050565b600081905092915050565b50565b60006143bb6000836143a0565b91506143c6826143ab565b600082019050919050565b60006143dc826143ae565b9150819050919050565b60006143f1826139ef565b91506143fc836139ef565b92508282101561440f5761440e6141e9565b5b828203905092915050565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b600061445060168361393f565b915061445b8261441a565b602082019050919050565b6000602082019050818103600083015261447f81614443565b9050919050565b600081905092915050565b600061449c82613934565b6144a68185614486565b93506144b6818560208601613950565b80840191505092915050565b60008190508160005260206000209050919050565b600081546144e481614073565b6144ee8186614486565b94506001821660008114614509576001811461451a5761454d565b60ff1983168652818601935061454d565b614523856144c2565b60005b8381101561454557815481890152600182019150602081019050614526565b838801955050505b50505092915050565b60006145628286614491565b915061456e8285614491565b915061457a82846144d7565b9150819050949350505050565b7f436f75706f6e206973206e6f742076616c69642e000000000000000000000000600082015250565b60006145bd60148361393f565b91506145c882614587565b602082019050919050565b600060208201905081810360008301526145ec816145b0565b9050919050565b7f57616c6c65742068617320616c7265616479206d696e7465642e000000000000600082015250565b6000614629601a8361393f565b9150614634826145f3565b602082019050919050565b600060208201905081810360008301526146588161461c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146bb60268361393f565b91506146c68261465f565b604082019050919050565b600060208201905081810360008301526146ea816146ae565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614718826146f1565b61472281856146fc565b9350614732818560208601613950565b61473b81613983565b840191505092915050565b600060808201905061475b6000830187613a84565b6147686020830186613a84565b6147756040830185613cf1565b8181036060830152614787818461470d565b905095945050505050565b6000815190506147a1816138a5565b92915050565b6000602082840312156147bd576147bc61386f565b5b60006147cb84828501614792565b91505092915050565b60006147df826139ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614812576148116141e9565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614857826139ef565b9150614862836139ef565b9250826148725761487161481d565b5b828204905092915050565b6000614888826139ef565b9150614893836139ef565b9250826148a3576148a261481d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160601b9050919050565b60006148f5826148dd565b9050919050565b6000614907826148ea565b9050919050565b61491f61491a82613a72565b6148fc565b82525050565b6000614931828461490e565b60148201915081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614976601c83614486565b915061498182614940565b601c82019050919050565b6000819050919050565b6149a76149a282613f04565b61498c565b82525050565b60006149b882614969565b91506149c48284614996565b60208201915081905092915050565b6149dc81613f04565b82525050565b6149eb81613f3a565b82525050565b6000608082019050614a0660008301876149d3565b614a1360208301866149e2565b614a2060408301856149d3565b614a2d60608301846149d3565b95945050505050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000614a6c60188361393f565b9150614a7782614a36565b602082019050919050565b60006020820190508181036000830152614a9b81614a5f565b905091905056fea26469706673582212208a91570ce17681ea289b84fdee52d2ddcd8272f76f83f70dd8a6fee198011f3b64736f6c634300080c0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000a2f72657665616c65642f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d643566655a445a477a316b4e746d515a6f6179424c71475a505442457967504336505a3273744e7377375479000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000052e6a736f6e000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80636352211e11610139578063a22cb465116100b6578063ce05ecba1161007a578063ce05ecba14610873578063d547cfb71461089c578063e0a80853146108c7578063e7c1a629146108f0578063e985e9c51461090c578063f2fde38b1461094957610251565b8063a22cb4651461078e578063b88d4fde146107b7578063c002d23d146107e0578063c87b56dd1461080b578063cd87fcfe1461084857610251565b80637f00c7a6116100fd5780637f00c7a6146106bb5780638da5cb5b146106e4578063902d55a51461070f57806395d89b411461073a578063a1470c1d1461076557610251565b80636352211e146105d85780636a420614146106155780636c19e7831461063e57806370a0823114610667578063715018a6146106a457610251565b80632f745c59116101d257806344a0d68a1161019657806344a0d68a146104c65780634f6ccce7146104ef578063518302271461052c5780635503a0e8146105575780635c5458ef146105825780635c975abb146105ad57610251565b80632f745c591461041157806330176e131461044e5780633ccfd60b1461047757806342842e0e14610481578063449a52f8146104aa57610251565b806316c38b3c1161021957806316c38b3c1461034d57806317fb85941461037657806318160ddd14610392578063187fad82146103bd57806323b872dd146103e857610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806316ba10e014610324575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906138d1565b610972565b60405161028a9190613919565b60405180910390f35b34801561029f57600080fd5b506102a8610abc565b6040516102b591906139cd565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613a25565b610b4e565b6040516102f29190613a93565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613ada565b610bca565b005b34801561033057600080fd5b5061034b60048036038101906103469190613c4f565b610cd5565b005b34801561035957600080fd5b50610374600480360381019061036f9190613cc4565b610d6b565b005b610390600480360381019061038b9190613a25565b610e04565b005b34801561039e57600080fd5b506103a7610fb2565b6040516103b49190613d00565b60405180910390f35b3480156103c957600080fd5b506103d2611007565b6040516103df91906139cd565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613d1b565b611095565b005b34801561041d57600080fd5b5061043860048036038101906104339190613ada565b6110a5565b6040516104459190613d00565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190613c4f565b6112ac565b005b61047f611342565b005b34801561048d57600080fd5b506104a860048036038101906104a39190613d1b565b611459565b005b6104c460048036038101906104bf9190613ada565b611479565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190613a25565b61156c565b005b3480156104fb57600080fd5b5061051660048036038101906105119190613a25565b6115f2565b6040516105239190613d00565b60405180910390f35b34801561053857600080fd5b50610541611763565b60405161054e9190613919565b60405180910390f35b34801561056357600080fd5b5061056c611776565b60405161057991906139cd565b60405180910390f35b34801561058e57600080fd5b50610597611804565b6040516105a49190613d00565b60405180910390f35b3480156105b957600080fd5b506105c261180a565b6040516105cf9190613919565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa9190613a25565b61181d565b60405161060c9190613a93565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190613a25565b611833565b005b34801561064a57600080fd5b5061066560048036038101906106609190613d6e565b6118b9565b005b34801561067357600080fd5b5061068e60048036038101906106899190613d6e565b611979565b60405161069b9190613d00565b60405180910390f35b3480156106b057600080fd5b506106b9611a49565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190613a25565b611ad1565b005b3480156106f057600080fd5b506106f9611b57565b6040516107069190613a93565b60405180910390f35b34801561071b57600080fd5b50610724611b81565b6040516107319190613d00565b60405180910390f35b34801561074657600080fd5b5061074f611b87565b60405161075c91906139cd565b60405180910390f35b34801561077157600080fd5b5061078c60048036038101906107879190613a25565b611c19565b005b34801561079a57600080fd5b506107b560048036038101906107b09190613d9b565b611c9f565b005b3480156107c357600080fd5b506107de60048036038101906107d99190613e7c565b611e17565b005b3480156107ec57600080fd5b506107f5611e6a565b6040516108029190613d00565b60405180910390f35b34801561081757600080fd5b50610832600480360381019061082d9190613a25565b611e70565b60405161083f91906139cd565b60405180910390f35b34801561085457600080fd5b5061085d611fa0565b60405161086a9190613d00565b60405180910390f35b34801561087f57600080fd5b5061089a60048036038101906108959190613c4f565b611fa6565b005b3480156108a857600080fd5b506108b161203c565b6040516108be91906139cd565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e99190613cc4565b6120ca565b005b61090a60048036038101906109059190613fd7565b612163565b005b34801561091857600080fd5b50610933600480360381019061092e9190614004565b612305565b6040516109409190613919565b60405180910390f35b34801561095557600080fd5b50610970600480360381019061096b9190613d6e565b612399565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aa557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab55750610ab482612491565b5b9050919050565b606060018054610acb90614073565b80601f0160208091040260200160405190810160405280929190818152602001828054610af790614073565b8015610b445780601f10610b1957610100808354040283529160200191610b44565b820191906000526020600020905b815481529060010190602001808311610b2757829003601f168201915b5050505050905090565b6000610b59826124fb565b610b8f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bd58261181d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c3d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c5c612563565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c8e5750610c8c81610c87612563565b612305565b155b15610cc5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cd083838361256b565b505050565b610cdd612563565b73ffffffffffffffffffffffffffffffffffffffff16610cfb611b57565b73ffffffffffffffffffffffffffffffffffffffff1614610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d48906140f1565b60405180910390fd5b8060109080519060200190610d6792919061377f565b5050565b610d73612563565b73ffffffffffffffffffffffffffffffffffffffff16610d91611b57565b73ffffffffffffffffffffffffffffffffffffffff1614610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde906140f1565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000610e0e610fb2565b9050601160009054906101000a900460ff1615610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e579061415d565b60405180910390fd5b600082118015610e725750600c548211155b610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea8906141c9565b60405180910390fd5b6009548282610ec09190614218565b1115610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef8906142ba565b60405180910390fd5b610f09611b57565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fa457600b548282610f4a9190614218565b111580610f64575081600a54610f6091906142da565b3410155b610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a90614380565b60405180910390fd5b5b610fae338361261d565b5050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b6012805461101490614073565b80601f016020809104026020016040519081016040528092919081815260200182805461104090614073565b801561108d5780601f106110625761010080835404028352916020019161108d565b820191906000526020600020905b81548152906001019060200180831161107057829003601f168201915b505050505081565b6110a083838361263b565b505050565b60006110b083611979565b82106110e8576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b838110156112a0576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151156111ff5750611293565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461123f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561129157868414156112885781955050505050506112a6565b83806001019450505b505b8080600101915050611122565b50600080fd5b92915050565b6112b4612563565b73ffffffffffffffffffffffffffffffffffffffff166112d2611b57565b73ffffffffffffffffffffffffffffffffffffffff1614611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f906140f1565b60405180910390fd5b80600f908051906020019061133e92919061377f565b5050565b61134a612563565b73ffffffffffffffffffffffffffffffffffffffff16611368611b57565b73ffffffffffffffffffffffffffffffffffffffff16146113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b5906140f1565b60405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611406906143d1565b60006040518083038185875af1925050503d8060008114611443576040519150601f19603f3d011682016040523d82523d6000602084013e611448565b606091505b505090508061145657600080fd5b50565b61147483838360405180602001604052806000815250611e17565b505050565b611481612563565b73ffffffffffffffffffffffffffffffffffffffff1661149f611b57565b73ffffffffffffffffffffffffffffffffffffffff16146114f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ec906140f1565b60405180910390fd5b60006114ff610fb2565b9050600954600183836115129190614218565b61151c91906143e6565b111561155d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155490614466565b60405180910390fd5b611567838361261d565b505050565b611574612563565b73ffffffffffffffffffffffffffffffffffffffff16611592611b57565b73ffffffffffffffffffffffffffffffffffffffff16146115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df906140f1565b60405180910390fd5b80600a8190555050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b8281101561172b576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161171d5785831415611714578194505050505061175e565b82806001019350505b50808060010191505061162a565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b601160019054906101000a900460ff1681565b6010805461178390614073565b80601f01602080910402602001604051908101604052809291908181526020018280546117af90614073565b80156117fc5780601f106117d1576101008083540402835291602001916117fc565b820191906000526020600020905b8154815290600101906020018083116117df57829003601f168201915b505050505081565b600c5481565b601160009054906101000a900460ff1681565b600061182882612b58565b600001519050919050565b61183b612563565b73ffffffffffffffffffffffffffffffffffffffff16611859611b57565b73ffffffffffffffffffffffffffffffffffffffff16146118af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a6906140f1565b60405180910390fd5b80600b8190555050565b6118c1612563565b73ffffffffffffffffffffffffffffffffffffffff166118df611b57565b73ffffffffffffffffffffffffffffffffffffffff1614611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c906140f1565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119e1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611a51612563565b73ffffffffffffffffffffffffffffffffffffffff16611a6f611b57565b73ffffffffffffffffffffffffffffffffffffffff1614611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc906140f1565b60405180910390fd5b611acf6000612e00565b565b611ad9612563565b73ffffffffffffffffffffffffffffffffffffffff16611af7611b57565b73ffffffffffffffffffffffffffffffffffffffff1614611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b44906140f1565b60405180910390fd5b8060098190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b606060028054611b9690614073565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc290614073565b8015611c0f5780601f10611be457610100808354040283529160200191611c0f565b820191906000526020600020905b815481529060010190602001808311611bf257829003601f168201915b5050505050905090565b611c21612563565b73ffffffffffffffffffffffffffffffffffffffff16611c3f611b57565b73ffffffffffffffffffffffffffffffffffffffff1614611c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8c906140f1565b60405180910390fd5b80600c8190555050565b611ca7612563565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d0c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611d19612563565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dc6612563565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e0b9190613919565b60405180910390a35050565b611e2284848461263b565b611e2e84848484612ec6565b611e64576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a5481565b6060611e7b826124fb565b611eb1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601160019054906101000a900460ff16611f575760128054611ed290614073565b80601f0160208091040260200160405190810160405280929190818152602001828054611efe90614073565b8015611f4b5780601f10611f2057610100808354040283529160200191611f4b565b820191906000526020600020905b815481529060010190602001808311611f2e57829003601f168201915b50505050509050611f9b565b611f5f613045565b611f7561271084611f709190614218565b6130d7565b6010604051602001611f8993929190614556565b60405160208183030381529060405290505b919050565b600b5481565b611fae612563565b73ffffffffffffffffffffffffffffffffffffffff16611fcc611b57565b73ffffffffffffffffffffffffffffffffffffffff1614612022576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612019906140f1565b60405180910390fd5b806012908051906020019061203892919061377f565b5050565b600f805461204990614073565b80601f016020809104026020016040519081016040528092919081815260200182805461207590614073565b80156120c25780601f10612097576101008083540402835291602001916120c2565b820191906000526020600020905b8154815290600101906020018083116120a557829003601f168201915b505050505081565b6120d2612563565b73ffffffffffffffffffffffffffffffffffffffff166120f0611b57565b73ffffffffffffffffffffffffffffffffffffffff1614612146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213d906140f1565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b600061216d610fb2565b905061218161217b33613238565b8361328e565b6121c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b7906145d3565b60405180910390fd5b6009546001826121d09190614218565b1115612211576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612208906142ba565b60405180910390fd5b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561229e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122959061463f565b60405180910390fd5b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061230133600161261d565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123a1612563565b73ffffffffffffffffffffffffffffffffffffffff166123bf611b57565b73ffffffffffffffffffffffffffffffffffffffff1614612415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240c906140f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247c906146d1565b60405180910390fd5b61248e81612e00565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168210801561255c575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6126378282604051806020016040528060008152506133b8565b5050565b600061264682612b58565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661266d612563565b73ffffffffffffffffffffffffffffffffffffffff1614806126a0575061269f826000015161269a612563565b612305565b5b806126e557506126ae612563565b73ffffffffffffffffffffffffffffffffffffffff166126cd84610b4e565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061271e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612787576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127ee576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127fb85858560016133ca565b61280b600084846000015161256b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612ae85760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612ae75782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b5185858560016133d0565b5050505050565b612b60613805565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612dc9576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612dc757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cab578092505050612dfb565b5b600115612dc657818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dc1578092505050612dfb565b612cac565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612ee78473ffffffffffffffffffffffffffffffffffffffff166133d6565b15613038578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f10612563565b8786866040518563ffffffff1660e01b8152600401612f329493929190614746565b6020604051808303816000875af1925050508015612f6e57506040513d601f19601f82011682018060405250810190612f6b91906147a7565b60015b612fe8573d8060008114612f9e576040519150601f19603f3d011682016040523d82523d6000602084013e612fa3565b606091505b50600081511415612fe0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061303d565b600190505b949350505050565b6060600f805461305490614073565b80601f016020809104026020016040519081016040528092919081815260200182805461308090614073565b80156130cd5780601f106130a2576101008083540402835291602001916130cd565b820191906000526020600020905b8154815290600101906020018083116130b057829003601f168201915b5050505050905090565b6060600082141561311f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613233565b600082905060005b6000821461315157808061313a906147d4565b915050600a8261314a919061484c565b9150613127565b60008167ffffffffffffffff81111561316d5761316c613b24565b5b6040519080825280601f01601f19166020018201604052801561319f5781602001600182028036833780820191505090505b5090505b6000851461322c576001826131b891906143e6565b9150600a856131c7919061487d565b60306131d39190614218565b60f81b8183815181106131e9576131e86148ae565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613225919061484c565b94506131a3565b8093505050505b919050565b60008160405160200161324b9190614925565b6040516020818303038152906040528051906020012060405160200161327191906149ad565b604051602081830303815290604052805190602001209050919050565b600080600184846040015185600001518660200151604051600081526020016040526040516132c094939291906149f1565b6020604051602081039080840390855afa1580156132e2573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561335e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335590614a82565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161491505092915050565b6133c583838360016133e9565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613484576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156134bf576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134cc60008683876133ca565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561373157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156136e557506136e36000888488612ec6565b155b1561371c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505061366a565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055505061377860008683876133d0565b5050505050565b82805461378b90614073565b90600052602060002090601f0160209004810192826137ad57600085556137f4565b82601f106137c657805160ff19168380011785556137f4565b828001600101855582156137f4579182015b828111156137f35782518255916020019190600101906137d8565b5b5090506138019190613848565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613861576000816000905550600101613849565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6138ae81613879565b81146138b957600080fd5b50565b6000813590506138cb816138a5565b92915050565b6000602082840312156138e7576138e661386f565b5b60006138f5848285016138bc565b91505092915050565b60008115159050919050565b613913816138fe565b82525050565b600060208201905061392e600083018461390a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561396e578082015181840152602081019050613953565b8381111561397d576000848401525b50505050565b6000601f19601f8301169050919050565b600061399f82613934565b6139a9818561393f565b93506139b9818560208601613950565b6139c281613983565b840191505092915050565b600060208201905081810360008301526139e78184613994565b905092915050565b6000819050919050565b613a02816139ef565b8114613a0d57600080fd5b50565b600081359050613a1f816139f9565b92915050565b600060208284031215613a3b57613a3a61386f565b5b6000613a4984828501613a10565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a7d82613a52565b9050919050565b613a8d81613a72565b82525050565b6000602082019050613aa86000830184613a84565b92915050565b613ab781613a72565b8114613ac257600080fd5b50565b600081359050613ad481613aae565b92915050565b60008060408385031215613af157613af061386f565b5b6000613aff85828601613ac5565b9250506020613b1085828601613a10565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b5c82613983565b810181811067ffffffffffffffff82111715613b7b57613b7a613b24565b5b80604052505050565b6000613b8e613865565b9050613b9a8282613b53565b919050565b600067ffffffffffffffff821115613bba57613bb9613b24565b5b613bc382613983565b9050602081019050919050565b82818337600083830152505050565b6000613bf2613bed84613b9f565b613b84565b905082815260208101848484011115613c0e57613c0d613b1f565b5b613c19848285613bd0565b509392505050565b600082601f830112613c3657613c35613b1a565b5b8135613c46848260208601613bdf565b91505092915050565b600060208284031215613c6557613c6461386f565b5b600082013567ffffffffffffffff811115613c8357613c82613874565b5b613c8f84828501613c21565b91505092915050565b613ca1816138fe565b8114613cac57600080fd5b50565b600081359050613cbe81613c98565b92915050565b600060208284031215613cda57613cd961386f565b5b6000613ce884828501613caf565b91505092915050565b613cfa816139ef565b82525050565b6000602082019050613d156000830184613cf1565b92915050565b600080600060608486031215613d3457613d3361386f565b5b6000613d4286828701613ac5565b9350506020613d5386828701613ac5565b9250506040613d6486828701613a10565b9150509250925092565b600060208284031215613d8457613d8361386f565b5b6000613d9284828501613ac5565b91505092915050565b60008060408385031215613db257613db161386f565b5b6000613dc085828601613ac5565b9250506020613dd185828601613caf565b9150509250929050565b600067ffffffffffffffff821115613df657613df5613b24565b5b613dff82613983565b9050602081019050919050565b6000613e1f613e1a84613ddb565b613b84565b905082815260208101848484011115613e3b57613e3a613b1f565b5b613e46848285613bd0565b509392505050565b600082601f830112613e6357613e62613b1a565b5b8135613e73848260208601613e0c565b91505092915050565b60008060008060808587031215613e9657613e9561386f565b5b6000613ea487828801613ac5565b9450506020613eb587828801613ac5565b9350506040613ec687828801613a10565b925050606085013567ffffffffffffffff811115613ee757613ee6613874565b5b613ef387828801613e4e565b91505092959194509250565b600080fd5b6000819050919050565b613f1781613f04565b8114613f2257600080fd5b50565b600081359050613f3481613f0e565b92915050565b600060ff82169050919050565b613f5081613f3a565b8114613f5b57600080fd5b50565b600081359050613f6d81613f47565b92915050565b600060608284031215613f8957613f88613eff565b5b613f936060613b84565b90506000613fa384828501613f25565b6000830152506020613fb784828501613f25565b6020830152506040613fcb84828501613f5e565b60408301525092915050565b600060608284031215613fed57613fec61386f565b5b6000613ffb84828501613f73565b91505092915050565b6000806040838503121561401b5761401a61386f565b5b600061402985828601613ac5565b925050602061403a85828601613ac5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061408b57607f821691505b6020821081141561409f5761409e614044565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140db60208361393f565b91506140e6826140a5565b602082019050919050565b6000602082019050818103600083015261410a816140ce565b9050919050565b7f4d696e74696e67206973207061757365642e0000000000000000000000000000600082015250565b600061414760128361393f565b915061415282614111565b602082019050919050565b600060208201905081810360008301526141768161413a565b9050919050565b7f496e76616c6964207175616e746974792e000000000000000000000000000000600082015250565b60006141b360118361393f565b91506141be8261417d565b602082019050919050565b600060208201905081810360008301526141e2816141a6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614223826139ef565b915061422e836139ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614263576142626141e9565b5b828201905092915050565b7f45786365656473206d6178696d756d20737570706c792e000000000000000000600082015250565b60006142a460178361393f565b91506142af8261426e565b602082019050919050565b600060208201905081810360008301526142d381614297565b9050919050565b60006142e5826139ef565b91506142f0836139ef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614329576143286141e9565b5b828202905092915050565b7f4e6f7420656e6f75676820737570706c792e0000000000000000000000000000600082015250565b600061436a60128361393f565b915061437582614334565b602082019050919050565b600060208201905081810360008301526143998161435d565b9050919050565b600081905092915050565b50565b60006143bb6000836143a0565b91506143c6826143ab565b600082019050919050565b60006143dc826143ae565b9150819050919050565b60006143f1826139ef565b91506143fc836139ef565b92508282101561440f5761440e6141e9565b5b828203905092915050565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b600061445060168361393f565b915061445b8261441a565b602082019050919050565b6000602082019050818103600083015261447f81614443565b9050919050565b600081905092915050565b600061449c82613934565b6144a68185614486565b93506144b6818560208601613950565b80840191505092915050565b60008190508160005260206000209050919050565b600081546144e481614073565b6144ee8186614486565b94506001821660008114614509576001811461451a5761454d565b60ff1983168652818601935061454d565b614523856144c2565b60005b8381101561454557815481890152600182019150602081019050614526565b838801955050505b50505092915050565b60006145628286614491565b915061456e8285614491565b915061457a82846144d7565b9150819050949350505050565b7f436f75706f6e206973206e6f742076616c69642e000000000000000000000000600082015250565b60006145bd60148361393f565b91506145c882614587565b602082019050919050565b600060208201905081810360008301526145ec816145b0565b9050919050565b7f57616c6c65742068617320616c7265616479206d696e7465642e000000000000600082015250565b6000614629601a8361393f565b9150614634826145f3565b602082019050919050565b600060208201905081810360008301526146588161461c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146bb60268361393f565b91506146c68261465f565b604082019050919050565b600060208201905081810360008301526146ea816146ae565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614718826146f1565b61472281856146fc565b9350614732818560208601613950565b61473b81613983565b840191505092915050565b600060808201905061475b6000830187613a84565b6147686020830186613a84565b6147756040830185613cf1565b8181036060830152614787818461470d565b905095945050505050565b6000815190506147a1816138a5565b92915050565b6000602082840312156147bd576147bc61386f565b5b60006147cb84828501614792565b91505092915050565b60006147df826139ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614812576148116141e9565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614857826139ef565b9150614862836139ef565b9250826148725761487161481d565b5b828204905092915050565b6000614888826139ef565b9150614893836139ef565b9250826148a3576148a261481d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160601b9050919050565b60006148f5826148dd565b9050919050565b6000614907826148ea565b9050919050565b61491f61491a82613a72565b6148fc565b82525050565b6000614931828461490e565b60148201915081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614976601c83614486565b915061498182614940565b601c82019050919050565b6000819050919050565b6149a76149a282613f04565b61498c565b82525050565b60006149b882614969565b91506149c48284614996565b60208201915081905092915050565b6149dc81613f04565b82525050565b6149eb81613f3a565b82525050565b6000608082019050614a0660008301876149d3565b614a1360208301866149e2565b614a2060408301856149d3565b614a2d60608301846149d3565b95945050505050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000614a6c60188361393f565b9150614a7782614a36565b602082019050919050565b60006020820190508181036000830152614a9b81614a5f565b905091905056fea26469706673582212208a91570ce17681ea289b84fdee52d2ddcd8272f76f83f70dd8a6fee198011f3b64736f6c634300080c0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000a2f72657665616c65642f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d643566655a445a477a316b4e746d515a6f6179424c71475a505442457967504336505a3273744e7377375479000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000052e6a736f6e000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): /revealed/
Arg [1] : _revealImage (string): https://ipfs.io/ipfs/Qmd5feZDZGz1kNtmQZoayBLqGZPTBEygPC6PZ2stNsw7Ty
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] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [6] : 68747470733a2f2f697066732e696f2f697066732f516d643566655a445a477a
Arg [7] : 316b4e746d515a6f6179424c71475a505442457967504336505a3273744e7377
Arg [8] : 3754790000000000000000000000000000000000000000000000000000000000
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.