ETH Price: $2,379.20 (-3.11%)

Token

THE OEFB NFT (OEFB NFT)
 

Overview

Max Total Supply

473 OEFB NFT

Holders

159

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
the-book.eth
Balance
2 OEFB NFT
0x1e4d6ce09d136b948ce011c4d2b9a5ad9f8ee3b3
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:
OefbNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : OefbERC721A.sol
// SPDX-License-Identifier: MIT
// developed by Ahoi Kapptn! - https://ahoikapptn.com

/**
     _    _           _   _  __                 _         _ 
    / \  | |__   ___ (_) | |/ /__ _ _ __  _ __ | |_ _ __ | |
   / _ \ | '_ \ / _ \| | | ' // _` | '_ \| '_ \| __| '_ \| |
  / ___ \| | | | (_) | | | . \ (_| | |_) | |_) | |_| | | |_|
 /_/   \_\_| |_|\___/|_| |_|\_\__,_| .__/| .__/ \__|_| |_(_)
                                   |_|   |_|                                                                                                             
 */

pragma solidity ^0.8.4;

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

/// @author ahoikapptn.com
/// @title OEFB NFT
contract OefbNFT is ERC721A, Ownable, Pausable {
    /**
     @dev number of minted reserved NFTs
     */
    uint16 public mintedReserved = 0;
    /**
     @dev total number of reserved NFTs
     */
    uint16 public constant MAX_RESERVED = 50;
    /**
     @dev number of total minted NFTs - start must match MAX_RESERVED
     */
    uint16 public mintedPublic = 50;
    /**
     @dev maximum number of NFTs
     */
    uint16 public constant MAX_MINT = 810;
    /**
     @dev maximum number NFTs per transaction
     */
    uint16 public constant MAX_TRANSACTION_AMOUNT = 10;
    /**
    @dev open sale on 3rd March 19:04 CET (UTC+1)
     */
    uint32 public openSaleTimestamp = 1646330640;
    /**
     @dev the PRICE of the NFT
     */
    uint128 public constant PRICE = 0.08 ether;

    /**
     @dev the base url - initially pointing to unrevealed data and later to revealed uri,
     */
    string public baseURIString =
        "ipfs://QmP9siVrz6stVEh6fR8ropCvXRtCRZy6rjd3ADBqsc535s/";

    /**
     @dev events
     */
    event ReceivedETH(address, uint256);
    event NewTokenURI(string);

    constructor() ERC721A("THE OEFB NFT", "OEFB NFT") {}

    function mintNFT(uint8 amount) external payable {
        require(amount > 0, "No amount specified");
        require(amount <= MAX_TRANSACTION_AMOUNT, "Max amount exceeded");
        require(msg.value >= PRICE * amount, "Not enough ETH sent");
        require(mintedPublic + amount <= MAX_MINT, "No more NFTs");
        require(saleIsOpen(), "Sale not open");

        _safeMint(msg.sender, amount);
        mintedPublic += amount;
    }

    function mintReserved(address to, uint8 amount) external onlyOwner {
        require(amount > 0, "No amount specified");
        require(mintedReserved + amount <= MAX_RESERVED, "No more reserved");
        _safeMint(to, amount);
        mintedReserved += amount;
    }

    /**
     * @dev set a new baseURI
     *
     * Requirements:
     *
     * - the contract must not be frozen.
     */
    function setNewURI(string memory _newURI) external onlyOwner {
        baseURIString = _newURI;
        emit NewTokenURI(_newURI);
    }

    function setOpenSaleTimestamp(uint32 _timestamp) external onlyOwner {
        openSaleTimestamp = _timestamp;
    }

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

    /**
    @dev withdraw all eth from contract to owner address
    */
    function withdrawAll() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

    function saleIsOpen() public view returns (bool open) {
        return !paused() && (block.timestamp >= openSaleTimestamp);
    }

    /**
     @dev overrides
     */
    /**
     * @dev override ERC721A
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual override {
        super._beforeTokenTransfers(from, to, startTokenId, quantity);
        require(!paused(), "Token transfer while paused");
    }

    /**
    @dev receive ether if sent directly to this contract
    */
    receive() external payable {
        if (msg.value > 0) {
            emit ReceivedETH(msg.sender, msg.value);
        }
    }
}

File 2 of 13 : 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 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

File 4 of 13 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 5 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 7 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"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":false,"internalType":"string","name":"","type":"string"}],"name":"NewTokenURI","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"ReceivedETH","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVED","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TRANSACTION_AMOUNT","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"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":"baseURIString","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":"uint8","name":"amount","type":"uint8"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintedPublic","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedReserved","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openSaleTimestamp","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":[],"name":"saleIsOpen","outputs":[{"internalType":"bool","name":"open","type":"bool"}],"stateMutability":"view","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":"_newURI","type":"string"}],"name":"setNewURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_timestamp","type":"uint32"}],"name":"setOpenSaleTimestamp","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600760156101000a81548161ffff021916908361ffff1602179055506032600760176101000a81548161ffff021916908361ffff1602179055506362210310600760196101000a81548163ffffffff021916908363ffffffff1602179055506040518060600160405280603681526020016200469d60369139600890805190602001906200009692919062000254565b50348015620000a457600080fd5b506040518060400160405280600c81526020017f544845204f454642204e465400000000000000000000000000000000000000008152506040518060400160405280600881526020017f4f454642204e465400000000000000000000000000000000000000000000000081525081600190805190602001906200012992919062000254565b5080600290805190602001906200014292919062000254565b50505062000165620001596200018660201b60201c565b6200018e60201b60201c565b6000600760146101000a81548160ff02191690831515021790555062000369565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002629062000304565b90600052602060002090601f016020900481019282620002865760008555620002d2565b82601f10620002a157805160ff1916838001178555620002d2565b82800160010185558215620002d2579182015b82811115620002d1578251825591602001919060010190620002b4565b5b509050620002e19190620002e5565b5090565b5b8082111562000300576000816000905550600101620002e6565b5090565b600060028204905060018216806200031d57607f821691505b602082108114156200033457620003336200033a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61432480620003796000396000f3fe6080604052600436106102125760003560e01c8063715018a611610118578063c87b56dd116100a0578063e985e9c51161006f578063e985e9c5146107b4578063f0292a03146107f1578063f2fde38b1461081c578063f896c48d14610845578063fa77983e146108705761025c565b8063c87b56dd146106f8578063cb85eeb814610735578063cf76a1531461075e578063dbaca2d2146107895761025c565b80638da5cb5b116100e75780638da5cb5b146106275780638eb563961461065257806395d89b411461067b578063a22cb465146106a6578063b88d4fde146106cf5761025c565b8063715018a6146105b75780638456cb59146105ce578063853828b6146105e55780638d859f3e146105fc5761025c565b80632f745c591161019b57806355d5482a1161016a57806355d5482a146104bc5780635c975abb146104e75780636352211e146105125780636ba90c6e1461054f57806370a082311461057a5761025c565b80632f745c59146104025780633f4ba83a1461043f57806342842e0e146104565780634f6ccce71461047f5761025c565b8063095ea7b3116101e2578063095ea7b3146103315780630e709b1b1461035a5780631211b0761461038357806318160ddd146103ae57806323b872dd146103d95761025c565b80627f2fd51461026157806301ffc9a71461028c57806306fdde03146102c9578063081812fc146102f45761025c565b3661025c57600034111561025a577f4103257eaac983ca79a70d28f90dfc4fa16b619bb0c17ee7cab0d4034c279624333460405161025192919061399b565b60405180910390a15b005b600080fd5b34801561026d57600080fd5b5061027661088c565b6040516102839190613b7c565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae9190613584565b6108a0565b6040516102c091906139c4565b60405180910390f35b3480156102d557600080fd5b506102de6109ea565b6040516102eb91906139df565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190613617565b610a7c565b6040516103289190613934565b60405180910390f35b34801561033d57600080fd5b506103586004803603810190610353919061350c565b610af8565b005b34801561036657600080fd5b50610381600480360381019061037c91906135d6565b610c03565b005b34801561038f57600080fd5b50610398610cd0565b6040516103a591906139c4565b60405180910390f35b3480156103ba57600080fd5b506103c3610d04565b6040516103d09190613b97565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190613406565b610d59565b005b34801561040e57600080fd5b506104296004803603810190610424919061350c565b610d69565b6040516104369190613b97565b60405180910390f35b34801561044b57600080fd5b50610454610f70565b005b34801561046257600080fd5b5061047d60048036038101906104789190613406565b610ff6565b005b34801561048b57600080fd5b506104a660048036038101906104a19190613617565b611016565b6040516104b39190613b97565b60405180910390f35b3480156104c857600080fd5b506104d1611187565b6040516104de9190613b7c565b60405180910390f35b3480156104f357600080fd5b506104fc61119b565b60405161050991906139c4565b60405180910390f35b34801561051e57600080fd5b5061053960048036038101906105349190613617565b6111b2565b6040516105469190613934565b60405180910390f35b34801561055b57600080fd5b506105646111c8565b6040516105719190613b7c565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c91906133a1565b6111cd565b6040516105ae9190613b97565b60405180910390f35b3480156105c357600080fd5b506105cc61129d565b005b3480156105da57600080fd5b506105e3611325565b005b3480156105f157600080fd5b506105fa6113ab565b005b34801561060857600080fd5b50610611611470565b60405161061e9190613b61565b60405180910390f35b34801561063357600080fd5b5061063c61147c565b6040516106499190613934565b60405180910390f35b34801561065e57600080fd5b5061067960048036038101906106749190613548565b6114a6565b005b34801561068757600080fd5b5061069061161f565b60405161069d91906139df565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c891906134d0565b6116b1565b005b3480156106db57600080fd5b506106f660048036038101906106f19190613455565b611829565b005b34801561070457600080fd5b5061071f600480360381019061071a9190613617565b61187c565b60405161072c91906139df565b60405180910390f35b34801561074157600080fd5b5061075c60048036038101906107579190613640565b61191b565b005b34801561076a57600080fd5b506107736119bb565b60405161078091906139df565b60405180910390f35b34801561079557600080fd5b5061079e611a49565b6040516107ab9190613bb2565b60405180910390f35b3480156107c057600080fd5b506107db60048036038101906107d691906133ca565b611a5f565b6040516107e891906139c4565b60405180910390f35b3480156107fd57600080fd5b50610806611af3565b6040516108139190613b7c565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e91906133a1565b611af9565b005b34801561085157600080fd5b5061085a611bf1565b6040516108679190613b7c565b60405180910390f35b61088a60048036038101906108859190613669565b611bf6565b005b600760179054906101000a900461ffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109e357506109e282611df0565b5b9050919050565b6060600180546109f990613ed1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2590613ed1565b8015610a725780601f10610a4757610100808354040283529160200191610a72565b820191906000526020600020905b815481529060010190602001808311610a5557829003601f168201915b5050505050905090565b6000610a8782611e5a565b610abd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b03826111b2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b6b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b8a611ec2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bbc5750610bba81610bb5611ec2565b611a5f565b155b15610bf3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bfe838383611eca565b505050565b610c0b611ec2565b73ffffffffffffffffffffffffffffffffffffffff16610c2961147c565b73ffffffffffffffffffffffffffffffffffffffff1614610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690613ac1565b60405180910390fd5b8060089080519060200190610c95929190613158565b507f8eca6ea708f9bc34439b72366aa672afc86bb8b1294f1ba9637945c5dab8ea7481604051610cc591906139df565b60405180910390a150565b6000610cda61119b565b158015610cff5750600760199054906101000a900463ffffffff1663ffffffff164210155b905090565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610d64838383611f7c565b505050565b6000610d74836111cd565b8210610dac576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610f64576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610ec35750610f57565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f0357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f555786841415610f4c578195505050505050610f6a565b83806001019450505b505b8080600101915050610de6565b50600080fd5b92915050565b610f78611ec2565b73ffffffffffffffffffffffffffffffffffffffff16610f9661147c565b73ffffffffffffffffffffffffffffffffffffffff1614610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe390613ac1565b60405180910390fd5b610ff4612499565b565b61101183838360405180602001604052806000815250611829565b505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b8281101561114f576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161114157858314156111385781945050505050611182565b82806001019350505b50808060010191505061104e565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600760159054906101000a900461ffff1681565b6000600760149054906101000a900460ff16905090565b60006111bd8261253b565b600001519050919050565b603281565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611235576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112a5611ec2565b73ffffffffffffffffffffffffffffffffffffffff166112c361147c565b73ffffffffffffffffffffffffffffffffffffffff1614611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090613ac1565b60405180910390fd5b61132360006127e3565b565b61132d611ec2565b73ffffffffffffffffffffffffffffffffffffffff1661134b61147c565b73ffffffffffffffffffffffffffffffffffffffff16146113a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139890613ac1565b60405180910390fd5b6113a96128a9565b565b6113b3611ec2565b73ffffffffffffffffffffffffffffffffffffffff166113d161147c565b73ffffffffffffffffffffffffffffffffffffffff1614611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90613ac1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561146d573d6000803e3d6000fd5b50565b67011c37937e08000081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114ae611ec2565b73ffffffffffffffffffffffffffffffffffffffff166114cc61147c565b73ffffffffffffffffffffffffffffffffffffffff1614611522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151990613ac1565b60405180910390fd5b60008160ff1611611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155f90613b01565b60405180910390fd5b603261ffff168160ff16600760159054906101000a900461ffff1661158d9190613c97565b61ffff1611156115d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c990613a61565b60405180910390fd5b6115df828260ff1661294c565b8060ff16600760158282829054906101000a900461ffff166116019190613c97565b92506101000a81548161ffff021916908361ffff1602179055505050565b60606002805461162e90613ed1565b80601f016020809104026020016040519081016040528092919081815260200182805461165a90613ed1565b80156116a75780601f1061167c576101008083540402835291602001916116a7565b820191906000526020600020905b81548152906001019060200180831161168a57829003601f168201915b5050505050905090565b6116b9611ec2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561171e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806006600061172b611ec2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117d8611ec2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161181d91906139c4565b60405180910390a35050565b611834848484611f7c565b6118408484848461296a565b611876576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061188782611e5a565b6118bd576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118c7612af8565b90506000815114156118e85760405180602001604052806000815250611913565b806118f284612b8a565b604051602001611903929190613910565b6040516020818303038152906040525b915050919050565b611923611ec2565b73ffffffffffffffffffffffffffffffffffffffff1661194161147c565b73ffffffffffffffffffffffffffffffffffffffff1614611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e90613ac1565b60405180910390fd5b80600760196101000a81548163ffffffff021916908363ffffffff16021790555050565b600880546119c890613ed1565b80601f01602080910402602001604051908101604052809291908181526020018280546119f490613ed1565b8015611a415780601f10611a1657610100808354040283529160200191611a41565b820191906000526020600020905b815481529060010190602001808311611a2457829003601f168201915b505050505081565b600760199054906101000a900463ffffffff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61032a81565b611b01611ec2565b73ffffffffffffffffffffffffffffffffffffffff16611b1f61147c565b73ffffffffffffffffffffffffffffffffffffffff1614611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c90613ac1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdc90613a41565b60405180910390fd5b611bee816127e3565b50565b600a81565b60008160ff1611611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3390613b01565b60405180910390fd5b600a61ffff168160ff161115611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e90613a01565b60405180910390fd5b8060ff1667011c37937e080000611c9e9190613d56565b6fffffffffffffffffffffffffffffffff16341015611cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce990613ae1565b60405180910390fd5b61032a61ffff168160ff16600760179054906101000a900461ffff16611d189190613c97565b61ffff161115611d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5490613b21565b60405180910390fd5b611d65610cd0565b611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b90613a81565b60405180910390fd5b611db1338260ff1661294c565b8060ff16600760178282829054906101000a900461ffff16611dd39190613c97565b92506101000a81548161ffff021916908361ffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015611ebb575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611f878261253b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611fae611ec2565b73ffffffffffffffffffffffffffffffffffffffff161480611fe15750611fe08260000151611fdb611ec2565b611a5f565b5b806120265750611fef611ec2565b73ffffffffffffffffffffffffffffffffffffffff1661200e84610a7c565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061205f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120c8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561212f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61213c8585856001612d37565b61214c6000848460000151611eca565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124295760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156124285782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124928585856001612d91565b5050505050565b6124a161119b565b6124e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d790613a21565b60405180910390fd5b6000600760146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612524611ec2565b6040516125319190613934565b60405180910390a1565b6125436131de565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156127ac576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516127aa57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461268e5780925050506127de565b5b6001156127a957818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127a45780925050506127de565b61268f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128b161119b565b156128f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e890613aa1565b60405180910390fd5b6001600760146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612935611ec2565b6040516129429190613934565b60405180910390a1565b612966828260405180602001604052806000815250612d97565b5050565b600061298b8473ffffffffffffffffffffffffffffffffffffffff16612da9565b15612aeb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129b4611ec2565b8786866040518563ffffffff1660e01b81526004016129d6949392919061394f565b602060405180830381600087803b1580156129f057600080fd5b505af1925050508015612a2157506040513d601f19601f82011682018060405250810190612a1e91906135ad565b60015b612a9b573d8060008114612a51576040519150601f19603f3d011682016040523d82523d6000602084013e612a56565b606091505b50600081511415612a93576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612af0565b600190505b949350505050565b606060088054612b0790613ed1565b80601f0160208091040260200160405190810160405280929190818152602001828054612b3390613ed1565b8015612b805780601f10612b5557610100808354040283529160200191612b80565b820191906000526020600020905b815481529060010190602001808311612b6357829003601f168201915b5050505050905090565b60606000821415612bd2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d32565b600082905060005b60008214612c04578080612bed90613f34565b915050600a82612bfd9190613d25565b9150612bda565b60008167ffffffffffffffff811115612c46577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612c785781602001600182028036833780820191505090505b5090505b60008514612d2b57600182612c919190613da0565b9150600a85612ca09190613f7d565b6030612cac9190613ccf565b60f81b818381518110612ce8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d249190613d25565b9450612c7c565b8093505050505b919050565b612d4384848484612dbc565b612d4b61119b565b15612d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8290613b41565b60405180910390fd5b50505050565b50505050565b612da48383836001612dc2565b505050565b600080823b905060008111915050919050565b50505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e5d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612e98576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ea56000868387612d37565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561310a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156130be57506130bc600088848861296a565b155b156130f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613043565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506131516000868387612d91565b5050505050565b82805461316490613ed1565b90600052602060002090601f01602090048101928261318657600085556131cd565b82601f1061319f57805160ff19168380011785556131cd565b828001600101855582156131cd579182015b828111156131cc5782518255916020019190600101906131b1565b5b5090506131da9190613221565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561323a576000816000905550600101613222565b5090565b600061325161324c84613bf2565b613bcd565b90508281526020810184848401111561326957600080fd5b613274848285613e8f565b509392505050565b600061328f61328a84613c23565b613bcd565b9050828152602081018484840111156132a757600080fd5b6132b2848285613e8f565b509392505050565b6000813590506132c981614264565b92915050565b6000813590506132de8161427b565b92915050565b6000813590506132f381614292565b92915050565b60008151905061330881614292565b92915050565b600082601f83011261331f57600080fd5b813561332f84826020860161323e565b91505092915050565b600082601f83011261334957600080fd5b813561335984826020860161327c565b91505092915050565b600081359050613371816142a9565b92915050565b600081359050613386816142c0565b92915050565b60008135905061339b816142d7565b92915050565b6000602082840312156133b357600080fd5b60006133c1848285016132ba565b91505092915050565b600080604083850312156133dd57600080fd5b60006133eb858286016132ba565b92505060206133fc858286016132ba565b9150509250929050565b60008060006060848603121561341b57600080fd5b6000613429868287016132ba565b935050602061343a868287016132ba565b925050604061344b86828701613362565b9150509250925092565b6000806000806080858703121561346b57600080fd5b6000613479878288016132ba565b945050602061348a878288016132ba565b935050604061349b87828801613362565b925050606085013567ffffffffffffffff8111156134b857600080fd5b6134c48782880161330e565b91505092959194509250565b600080604083850312156134e357600080fd5b60006134f1858286016132ba565b9250506020613502858286016132cf565b9150509250929050565b6000806040838503121561351f57600080fd5b600061352d858286016132ba565b925050602061353e85828601613362565b9150509250929050565b6000806040838503121561355b57600080fd5b6000613569858286016132ba565b925050602061357a8582860161338c565b9150509250929050565b60006020828403121561359657600080fd5b60006135a4848285016132e4565b91505092915050565b6000602082840312156135bf57600080fd5b60006135cd848285016132f9565b91505092915050565b6000602082840312156135e857600080fd5b600082013567ffffffffffffffff81111561360257600080fd5b61360e84828501613338565b91505092915050565b60006020828403121561362957600080fd5b600061363784828501613362565b91505092915050565b60006020828403121561365257600080fd5b600061366084828501613377565b91505092915050565b60006020828403121561367b57600080fd5b60006136898482850161338c565b91505092915050565b61369b81613dd4565b82525050565b6136aa81613de6565b82525050565b60006136bb82613c54565b6136c58185613c6a565b93506136d5818560208601613e9e565b6136de8161406a565b840191505092915050565b60006136f482613c5f565b6136fe8185613c7b565b935061370e818560208601613e9e565b6137178161406a565b840191505092915050565b600061372d82613c5f565b6137378185613c8c565b9350613747818560208601613e9e565b80840191505092915050565b6000613760601383613c7b565b915061376b8261407b565b602082019050919050565b6000613783601483613c7b565b915061378e826140a4565b602082019050919050565b60006137a6602683613c7b565b91506137b1826140cd565b604082019050919050565b60006137c9601083613c7b565b91506137d48261411c565b602082019050919050565b60006137ec600d83613c7b565b91506137f782614145565b602082019050919050565b600061380f601083613c7b565b915061381a8261416e565b602082019050919050565b6000613832602083613c7b565b915061383d82614197565b602082019050919050565b6000613855601383613c7b565b9150613860826141c0565b602082019050919050565b6000613878601383613c7b565b9150613883826141e9565b602082019050919050565b600061389b600c83613c7b565b91506138a682614212565b602082019050919050565b60006138be601b83613c7b565b91506138c98261423b565b602082019050919050565b6138dd81613e1e565b82525050565b6138ec81613e3a565b82525050565b6138fb81613e68565b82525050565b61390a81613e72565b82525050565b600061391c8285613722565b91506139288284613722565b91508190509392505050565b60006020820190506139496000830184613692565b92915050565b60006080820190506139646000830187613692565b6139716020830186613692565b61397e60408301856138f2565b818103606083015261399081846136b0565b905095945050505050565b60006040820190506139b06000830185613692565b6139bd60208301846138f2565b9392505050565b60006020820190506139d960008301846136a1565b92915050565b600060208201905081810360008301526139f981846136e9565b905092915050565b60006020820190508181036000830152613a1a81613753565b9050919050565b60006020820190508181036000830152613a3a81613776565b9050919050565b60006020820190508181036000830152613a5a81613799565b9050919050565b60006020820190508181036000830152613a7a816137bc565b9050919050565b60006020820190508181036000830152613a9a816137df565b9050919050565b60006020820190508181036000830152613aba81613802565b9050919050565b60006020820190508181036000830152613ada81613825565b9050919050565b60006020820190508181036000830152613afa81613848565b9050919050565b60006020820190508181036000830152613b1a8161386b565b9050919050565b60006020820190508181036000830152613b3a8161388e565b9050919050565b60006020820190508181036000830152613b5a816138b1565b9050919050565b6000602082019050613b7660008301846138d4565b92915050565b6000602082019050613b9160008301846138e3565b92915050565b6000602082019050613bac60008301846138f2565b92915050565b6000602082019050613bc76000830184613901565b92915050565b6000613bd7613be8565b9050613be38282613f03565b919050565b6000604051905090565b600067ffffffffffffffff821115613c0d57613c0c61403b565b5b613c168261406a565b9050602081019050919050565b600067ffffffffffffffff821115613c3e57613c3d61403b565b5b613c478261406a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ca282613e3a565b9150613cad83613e3a565b92508261ffff03821115613cc457613cc3613fae565b5b828201905092915050565b6000613cda82613e68565b9150613ce583613e68565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d1a57613d19613fae565b5b828201905092915050565b6000613d3082613e68565b9150613d3b83613e68565b925082613d4b57613d4a613fdd565b5b828204905092915050565b6000613d6182613e1e565b9150613d6c83613e1e565b9250816fffffffffffffffffffffffffffffffff0483118215151615613d9557613d94613fae565b5b828202905092915050565b6000613dab82613e68565b9150613db683613e68565b925082821015613dc957613dc8613fae565b5b828203905092915050565b6000613ddf82613e48565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613ebc578082015181840152602081019050613ea1565b83811115613ecb576000848401525b50505050565b60006002820490506001821680613ee957607f821691505b60208210811415613efd57613efc61400c565b5b50919050565b613f0c8261406a565b810181811067ffffffffffffffff82111715613f2b57613f2a61403b565b5b80604052505050565b6000613f3f82613e68565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f7257613f71613fae565b5b600182019050919050565b6000613f8882613e68565b9150613f9383613e68565b925082613fa357613fa2613fdd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d617820616d6f756e7420657863656564656400000000000000000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726520726573657276656400000000000000000000000000000000600082015250565b7f53616c65206e6f74206f70656e00000000000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f4e6f20616d6f756e742073706563696669656400000000000000000000000000600082015250565b7f4e6f206d6f7265204e4654730000000000000000000000000000000000000000600082015250565b7f546f6b656e207472616e73666572207768696c65207061757365640000000000600082015250565b61426d81613dd4565b811461427857600080fd5b50565b61428481613de6565b811461428f57600080fd5b50565b61429b81613df2565b81146142a657600080fd5b50565b6142b281613e68565b81146142bd57600080fd5b50565b6142c981613e72565b81146142d457600080fd5b50565b6142e081613e82565b81146142eb57600080fd5b5056fea26469706673582212201bc59b5d57100ee015404ee7d7f0e88eea54f195d674ba19455b354c32c9699c64736f6c63430008040033697066733a2f2f516d5039736956727a36737456456836665238726f70437658527443525a7936726a6433414442717363353335732f

Deployed Bytecode

0x6080604052600436106102125760003560e01c8063715018a611610118578063c87b56dd116100a0578063e985e9c51161006f578063e985e9c5146107b4578063f0292a03146107f1578063f2fde38b1461081c578063f896c48d14610845578063fa77983e146108705761025c565b8063c87b56dd146106f8578063cb85eeb814610735578063cf76a1531461075e578063dbaca2d2146107895761025c565b80638da5cb5b116100e75780638da5cb5b146106275780638eb563961461065257806395d89b411461067b578063a22cb465146106a6578063b88d4fde146106cf5761025c565b8063715018a6146105b75780638456cb59146105ce578063853828b6146105e55780638d859f3e146105fc5761025c565b80632f745c591161019b57806355d5482a1161016a57806355d5482a146104bc5780635c975abb146104e75780636352211e146105125780636ba90c6e1461054f57806370a082311461057a5761025c565b80632f745c59146104025780633f4ba83a1461043f57806342842e0e146104565780634f6ccce71461047f5761025c565b8063095ea7b3116101e2578063095ea7b3146103315780630e709b1b1461035a5780631211b0761461038357806318160ddd146103ae57806323b872dd146103d95761025c565b80627f2fd51461026157806301ffc9a71461028c57806306fdde03146102c9578063081812fc146102f45761025c565b3661025c57600034111561025a577f4103257eaac983ca79a70d28f90dfc4fa16b619bb0c17ee7cab0d4034c279624333460405161025192919061399b565b60405180910390a15b005b600080fd5b34801561026d57600080fd5b5061027661088c565b6040516102839190613b7c565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae9190613584565b6108a0565b6040516102c091906139c4565b60405180910390f35b3480156102d557600080fd5b506102de6109ea565b6040516102eb91906139df565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190613617565b610a7c565b6040516103289190613934565b60405180910390f35b34801561033d57600080fd5b506103586004803603810190610353919061350c565b610af8565b005b34801561036657600080fd5b50610381600480360381019061037c91906135d6565b610c03565b005b34801561038f57600080fd5b50610398610cd0565b6040516103a591906139c4565b60405180910390f35b3480156103ba57600080fd5b506103c3610d04565b6040516103d09190613b97565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190613406565b610d59565b005b34801561040e57600080fd5b506104296004803603810190610424919061350c565b610d69565b6040516104369190613b97565b60405180910390f35b34801561044b57600080fd5b50610454610f70565b005b34801561046257600080fd5b5061047d60048036038101906104789190613406565b610ff6565b005b34801561048b57600080fd5b506104a660048036038101906104a19190613617565b611016565b6040516104b39190613b97565b60405180910390f35b3480156104c857600080fd5b506104d1611187565b6040516104de9190613b7c565b60405180910390f35b3480156104f357600080fd5b506104fc61119b565b60405161050991906139c4565b60405180910390f35b34801561051e57600080fd5b5061053960048036038101906105349190613617565b6111b2565b6040516105469190613934565b60405180910390f35b34801561055b57600080fd5b506105646111c8565b6040516105719190613b7c565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c91906133a1565b6111cd565b6040516105ae9190613b97565b60405180910390f35b3480156105c357600080fd5b506105cc61129d565b005b3480156105da57600080fd5b506105e3611325565b005b3480156105f157600080fd5b506105fa6113ab565b005b34801561060857600080fd5b50610611611470565b60405161061e9190613b61565b60405180910390f35b34801561063357600080fd5b5061063c61147c565b6040516106499190613934565b60405180910390f35b34801561065e57600080fd5b5061067960048036038101906106749190613548565b6114a6565b005b34801561068757600080fd5b5061069061161f565b60405161069d91906139df565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c891906134d0565b6116b1565b005b3480156106db57600080fd5b506106f660048036038101906106f19190613455565b611829565b005b34801561070457600080fd5b5061071f600480360381019061071a9190613617565b61187c565b60405161072c91906139df565b60405180910390f35b34801561074157600080fd5b5061075c60048036038101906107579190613640565b61191b565b005b34801561076a57600080fd5b506107736119bb565b60405161078091906139df565b60405180910390f35b34801561079557600080fd5b5061079e611a49565b6040516107ab9190613bb2565b60405180910390f35b3480156107c057600080fd5b506107db60048036038101906107d691906133ca565b611a5f565b6040516107e891906139c4565b60405180910390f35b3480156107fd57600080fd5b50610806611af3565b6040516108139190613b7c565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e91906133a1565b611af9565b005b34801561085157600080fd5b5061085a611bf1565b6040516108679190613b7c565b60405180910390f35b61088a60048036038101906108859190613669565b611bf6565b005b600760179054906101000a900461ffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109e357506109e282611df0565b5b9050919050565b6060600180546109f990613ed1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2590613ed1565b8015610a725780601f10610a4757610100808354040283529160200191610a72565b820191906000526020600020905b815481529060010190602001808311610a5557829003601f168201915b5050505050905090565b6000610a8782611e5a565b610abd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b03826111b2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b6b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b8a611ec2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bbc5750610bba81610bb5611ec2565b611a5f565b155b15610bf3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bfe838383611eca565b505050565b610c0b611ec2565b73ffffffffffffffffffffffffffffffffffffffff16610c2961147c565b73ffffffffffffffffffffffffffffffffffffffff1614610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690613ac1565b60405180910390fd5b8060089080519060200190610c95929190613158565b507f8eca6ea708f9bc34439b72366aa672afc86bb8b1294f1ba9637945c5dab8ea7481604051610cc591906139df565b60405180910390a150565b6000610cda61119b565b158015610cff5750600760199054906101000a900463ffffffff1663ffffffff164210155b905090565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610d64838383611f7c565b505050565b6000610d74836111cd565b8210610dac576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610f64576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610ec35750610f57565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f0357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f555786841415610f4c578195505050505050610f6a565b83806001019450505b505b8080600101915050610de6565b50600080fd5b92915050565b610f78611ec2565b73ffffffffffffffffffffffffffffffffffffffff16610f9661147c565b73ffffffffffffffffffffffffffffffffffffffff1614610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe390613ac1565b60405180910390fd5b610ff4612499565b565b61101183838360405180602001604052806000815250611829565b505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b8281101561114f576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161114157858314156111385781945050505050611182565b82806001019350505b50808060010191505061104e565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600760159054906101000a900461ffff1681565b6000600760149054906101000a900460ff16905090565b60006111bd8261253b565b600001519050919050565b603281565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611235576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112a5611ec2565b73ffffffffffffffffffffffffffffffffffffffff166112c361147c565b73ffffffffffffffffffffffffffffffffffffffff1614611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090613ac1565b60405180910390fd5b61132360006127e3565b565b61132d611ec2565b73ffffffffffffffffffffffffffffffffffffffff1661134b61147c565b73ffffffffffffffffffffffffffffffffffffffff16146113a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139890613ac1565b60405180910390fd5b6113a96128a9565b565b6113b3611ec2565b73ffffffffffffffffffffffffffffffffffffffff166113d161147c565b73ffffffffffffffffffffffffffffffffffffffff1614611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90613ac1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561146d573d6000803e3d6000fd5b50565b67011c37937e08000081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114ae611ec2565b73ffffffffffffffffffffffffffffffffffffffff166114cc61147c565b73ffffffffffffffffffffffffffffffffffffffff1614611522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151990613ac1565b60405180910390fd5b60008160ff1611611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155f90613b01565b60405180910390fd5b603261ffff168160ff16600760159054906101000a900461ffff1661158d9190613c97565b61ffff1611156115d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c990613a61565b60405180910390fd5b6115df828260ff1661294c565b8060ff16600760158282829054906101000a900461ffff166116019190613c97565b92506101000a81548161ffff021916908361ffff1602179055505050565b60606002805461162e90613ed1565b80601f016020809104026020016040519081016040528092919081815260200182805461165a90613ed1565b80156116a75780601f1061167c576101008083540402835291602001916116a7565b820191906000526020600020905b81548152906001019060200180831161168a57829003601f168201915b5050505050905090565b6116b9611ec2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561171e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806006600061172b611ec2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117d8611ec2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161181d91906139c4565b60405180910390a35050565b611834848484611f7c565b6118408484848461296a565b611876576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061188782611e5a565b6118bd576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118c7612af8565b90506000815114156118e85760405180602001604052806000815250611913565b806118f284612b8a565b604051602001611903929190613910565b6040516020818303038152906040525b915050919050565b611923611ec2565b73ffffffffffffffffffffffffffffffffffffffff1661194161147c565b73ffffffffffffffffffffffffffffffffffffffff1614611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e90613ac1565b60405180910390fd5b80600760196101000a81548163ffffffff021916908363ffffffff16021790555050565b600880546119c890613ed1565b80601f01602080910402602001604051908101604052809291908181526020018280546119f490613ed1565b8015611a415780601f10611a1657610100808354040283529160200191611a41565b820191906000526020600020905b815481529060010190602001808311611a2457829003601f168201915b505050505081565b600760199054906101000a900463ffffffff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61032a81565b611b01611ec2565b73ffffffffffffffffffffffffffffffffffffffff16611b1f61147c565b73ffffffffffffffffffffffffffffffffffffffff1614611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c90613ac1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdc90613a41565b60405180910390fd5b611bee816127e3565b50565b600a81565b60008160ff1611611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3390613b01565b60405180910390fd5b600a61ffff168160ff161115611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e90613a01565b60405180910390fd5b8060ff1667011c37937e080000611c9e9190613d56565b6fffffffffffffffffffffffffffffffff16341015611cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce990613ae1565b60405180910390fd5b61032a61ffff168160ff16600760179054906101000a900461ffff16611d189190613c97565b61ffff161115611d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5490613b21565b60405180910390fd5b611d65610cd0565b611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b90613a81565b60405180910390fd5b611db1338260ff1661294c565b8060ff16600760178282829054906101000a900461ffff16611dd39190613c97565b92506101000a81548161ffff021916908361ffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015611ebb575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611f878261253b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611fae611ec2565b73ffffffffffffffffffffffffffffffffffffffff161480611fe15750611fe08260000151611fdb611ec2565b611a5f565b5b806120265750611fef611ec2565b73ffffffffffffffffffffffffffffffffffffffff1661200e84610a7c565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061205f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120c8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561212f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61213c8585856001612d37565b61214c6000848460000151611eca565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124295760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156124285782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124928585856001612d91565b5050505050565b6124a161119b565b6124e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d790613a21565b60405180910390fd5b6000600760146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612524611ec2565b6040516125319190613934565b60405180910390a1565b6125436131de565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156127ac576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516127aa57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461268e5780925050506127de565b5b6001156127a957818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127a45780925050506127de565b61268f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128b161119b565b156128f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e890613aa1565b60405180910390fd5b6001600760146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612935611ec2565b6040516129429190613934565b60405180910390a1565b612966828260405180602001604052806000815250612d97565b5050565b600061298b8473ffffffffffffffffffffffffffffffffffffffff16612da9565b15612aeb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129b4611ec2565b8786866040518563ffffffff1660e01b81526004016129d6949392919061394f565b602060405180830381600087803b1580156129f057600080fd5b505af1925050508015612a2157506040513d601f19601f82011682018060405250810190612a1e91906135ad565b60015b612a9b573d8060008114612a51576040519150601f19603f3d011682016040523d82523d6000602084013e612a56565b606091505b50600081511415612a93576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612af0565b600190505b949350505050565b606060088054612b0790613ed1565b80601f0160208091040260200160405190810160405280929190818152602001828054612b3390613ed1565b8015612b805780601f10612b5557610100808354040283529160200191612b80565b820191906000526020600020905b815481529060010190602001808311612b6357829003601f168201915b5050505050905090565b60606000821415612bd2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d32565b600082905060005b60008214612c04578080612bed90613f34565b915050600a82612bfd9190613d25565b9150612bda565b60008167ffffffffffffffff811115612c46577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612c785781602001600182028036833780820191505090505b5090505b60008514612d2b57600182612c919190613da0565b9150600a85612ca09190613f7d565b6030612cac9190613ccf565b60f81b818381518110612ce8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d249190613d25565b9450612c7c565b8093505050505b919050565b612d4384848484612dbc565b612d4b61119b565b15612d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8290613b41565b60405180910390fd5b50505050565b50505050565b612da48383836001612dc2565b505050565b600080823b905060008111915050919050565b50505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e5d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612e98576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ea56000868387612d37565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561310a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156130be57506130bc600088848861296a565b155b156130f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613043565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506131516000868387612d91565b5050505050565b82805461316490613ed1565b90600052602060002090601f01602090048101928261318657600085556131cd565b82601f1061319f57805160ff19168380011785556131cd565b828001600101855582156131cd579182015b828111156131cc5782518255916020019190600101906131b1565b5b5090506131da9190613221565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561323a576000816000905550600101613222565b5090565b600061325161324c84613bf2565b613bcd565b90508281526020810184848401111561326957600080fd5b613274848285613e8f565b509392505050565b600061328f61328a84613c23565b613bcd565b9050828152602081018484840111156132a757600080fd5b6132b2848285613e8f565b509392505050565b6000813590506132c981614264565b92915050565b6000813590506132de8161427b565b92915050565b6000813590506132f381614292565b92915050565b60008151905061330881614292565b92915050565b600082601f83011261331f57600080fd5b813561332f84826020860161323e565b91505092915050565b600082601f83011261334957600080fd5b813561335984826020860161327c565b91505092915050565b600081359050613371816142a9565b92915050565b600081359050613386816142c0565b92915050565b60008135905061339b816142d7565b92915050565b6000602082840312156133b357600080fd5b60006133c1848285016132ba565b91505092915050565b600080604083850312156133dd57600080fd5b60006133eb858286016132ba565b92505060206133fc858286016132ba565b9150509250929050565b60008060006060848603121561341b57600080fd5b6000613429868287016132ba565b935050602061343a868287016132ba565b925050604061344b86828701613362565b9150509250925092565b6000806000806080858703121561346b57600080fd5b6000613479878288016132ba565b945050602061348a878288016132ba565b935050604061349b87828801613362565b925050606085013567ffffffffffffffff8111156134b857600080fd5b6134c48782880161330e565b91505092959194509250565b600080604083850312156134e357600080fd5b60006134f1858286016132ba565b9250506020613502858286016132cf565b9150509250929050565b6000806040838503121561351f57600080fd5b600061352d858286016132ba565b925050602061353e85828601613362565b9150509250929050565b6000806040838503121561355b57600080fd5b6000613569858286016132ba565b925050602061357a8582860161338c565b9150509250929050565b60006020828403121561359657600080fd5b60006135a4848285016132e4565b91505092915050565b6000602082840312156135bf57600080fd5b60006135cd848285016132f9565b91505092915050565b6000602082840312156135e857600080fd5b600082013567ffffffffffffffff81111561360257600080fd5b61360e84828501613338565b91505092915050565b60006020828403121561362957600080fd5b600061363784828501613362565b91505092915050565b60006020828403121561365257600080fd5b600061366084828501613377565b91505092915050565b60006020828403121561367b57600080fd5b60006136898482850161338c565b91505092915050565b61369b81613dd4565b82525050565b6136aa81613de6565b82525050565b60006136bb82613c54565b6136c58185613c6a565b93506136d5818560208601613e9e565b6136de8161406a565b840191505092915050565b60006136f482613c5f565b6136fe8185613c7b565b935061370e818560208601613e9e565b6137178161406a565b840191505092915050565b600061372d82613c5f565b6137378185613c8c565b9350613747818560208601613e9e565b80840191505092915050565b6000613760601383613c7b565b915061376b8261407b565b602082019050919050565b6000613783601483613c7b565b915061378e826140a4565b602082019050919050565b60006137a6602683613c7b565b91506137b1826140cd565b604082019050919050565b60006137c9601083613c7b565b91506137d48261411c565b602082019050919050565b60006137ec600d83613c7b565b91506137f782614145565b602082019050919050565b600061380f601083613c7b565b915061381a8261416e565b602082019050919050565b6000613832602083613c7b565b915061383d82614197565b602082019050919050565b6000613855601383613c7b565b9150613860826141c0565b602082019050919050565b6000613878601383613c7b565b9150613883826141e9565b602082019050919050565b600061389b600c83613c7b565b91506138a682614212565b602082019050919050565b60006138be601b83613c7b565b91506138c98261423b565b602082019050919050565b6138dd81613e1e565b82525050565b6138ec81613e3a565b82525050565b6138fb81613e68565b82525050565b61390a81613e72565b82525050565b600061391c8285613722565b91506139288284613722565b91508190509392505050565b60006020820190506139496000830184613692565b92915050565b60006080820190506139646000830187613692565b6139716020830186613692565b61397e60408301856138f2565b818103606083015261399081846136b0565b905095945050505050565b60006040820190506139b06000830185613692565b6139bd60208301846138f2565b9392505050565b60006020820190506139d960008301846136a1565b92915050565b600060208201905081810360008301526139f981846136e9565b905092915050565b60006020820190508181036000830152613a1a81613753565b9050919050565b60006020820190508181036000830152613a3a81613776565b9050919050565b60006020820190508181036000830152613a5a81613799565b9050919050565b60006020820190508181036000830152613a7a816137bc565b9050919050565b60006020820190508181036000830152613a9a816137df565b9050919050565b60006020820190508181036000830152613aba81613802565b9050919050565b60006020820190508181036000830152613ada81613825565b9050919050565b60006020820190508181036000830152613afa81613848565b9050919050565b60006020820190508181036000830152613b1a8161386b565b9050919050565b60006020820190508181036000830152613b3a8161388e565b9050919050565b60006020820190508181036000830152613b5a816138b1565b9050919050565b6000602082019050613b7660008301846138d4565b92915050565b6000602082019050613b9160008301846138e3565b92915050565b6000602082019050613bac60008301846138f2565b92915050565b6000602082019050613bc76000830184613901565b92915050565b6000613bd7613be8565b9050613be38282613f03565b919050565b6000604051905090565b600067ffffffffffffffff821115613c0d57613c0c61403b565b5b613c168261406a565b9050602081019050919050565b600067ffffffffffffffff821115613c3e57613c3d61403b565b5b613c478261406a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ca282613e3a565b9150613cad83613e3a565b92508261ffff03821115613cc457613cc3613fae565b5b828201905092915050565b6000613cda82613e68565b9150613ce583613e68565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d1a57613d19613fae565b5b828201905092915050565b6000613d3082613e68565b9150613d3b83613e68565b925082613d4b57613d4a613fdd565b5b828204905092915050565b6000613d6182613e1e565b9150613d6c83613e1e565b9250816fffffffffffffffffffffffffffffffff0483118215151615613d9557613d94613fae565b5b828202905092915050565b6000613dab82613e68565b9150613db683613e68565b925082821015613dc957613dc8613fae565b5b828203905092915050565b6000613ddf82613e48565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613ebc578082015181840152602081019050613ea1565b83811115613ecb576000848401525b50505050565b60006002820490506001821680613ee957607f821691505b60208210811415613efd57613efc61400c565b5b50919050565b613f0c8261406a565b810181811067ffffffffffffffff82111715613f2b57613f2a61403b565b5b80604052505050565b6000613f3f82613e68565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f7257613f71613fae565b5b600182019050919050565b6000613f8882613e68565b9150613f9383613e68565b925082613fa357613fa2613fdd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d617820616d6f756e7420657863656564656400000000000000000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726520726573657276656400000000000000000000000000000000600082015250565b7f53616c65206e6f74206f70656e00000000000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f4e6f20616d6f756e742073706563696669656400000000000000000000000000600082015250565b7f4e6f206d6f7265204e4654730000000000000000000000000000000000000000600082015250565b7f546f6b656e207472616e73666572207768696c65207061757365640000000000600082015250565b61426d81613dd4565b811461427857600080fd5b50565b61428481613de6565b811461428f57600080fd5b50565b61429b81613df2565b81146142a657600080fd5b50565b6142b281613e68565b81146142bd57600080fd5b50565b6142c981613e72565b81146142d457600080fd5b50565b6142e081613e82565b81146142eb57600080fd5b5056fea26469706673582212201bc59b5d57100ee015404ee7d7f0e88eea54f195d674ba19455b354c32c9699c64736f6c63430008040033

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.