ETH Price: $2,735.80 (-0.74%)

Token

GenericContract (GENC)
 

Overview

Max Total Supply

194 GENC

Holders

101

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
froghybrid.eth
Balance
1 GENC
0x4f8ac8ddf07594dc07efab48cdc1aca5602fd50c
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:
Junglemaniacs

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : Junglemaniacs.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

error AntiBot();
error PubSaleNotStarted();
error PreSaleNotStarted();
error PreSaleEnded();
error PubSaleEnded();
error ExceedMaxAmount();
error ExceedMaxSupply();
error ValueTooLow();
error NotWhitelisted();

contract Junglemaniacs is Ownable, ERC721A, ReentrancyGuard {
    using Strings for uint256;

    uint256 public maxSupply;
    uint256 public maxPerAccount;

    uint256 public preSalePrice;
    uint256 public pubSalePrice;

    string public baseUri;
    string public unreUri;

    uint256 public prSaleTime;
    uint256 public puSaleTime;
    uint256 public revealTime;

    address private passwordSigner;

    constructor(
        uint256 _maxSupply,
        uint256 _maxPerAccount,
        uint256 _preSalePrice,
        uint256 _pubSalePrice,
        uint256 _prSaleTime,
        uint256 _puSaleTime,
        uint256 _revealTime,
        address _passwordSigner
    ) ERC721A("GenericContract", "GENC") {
        maxSupply = _maxSupply;
        maxPerAccount = _maxPerAccount;
        preSalePrice = _preSalePrice;
        pubSalePrice = _pubSalePrice;
        prSaleTime = _prSaleTime;
        puSaleTime = _puSaleTime;
        revealTime = _revealTime;
        passwordSigner = _passwordSigner;
        _safeMint(msg.sender, 1);
    }

    /* Transactions */
    function preSaleMint(uint256 amount, bytes memory signature)
        external
        payable
    {
        uint256 currentTime = block.timestamp;

        if (msg.sender != tx.origin) revert AntiBot();
        if (!isWhitelisted(msg.sender, signature)) revert NotWhitelisted();
        if (currentTime > puSaleTime) revert PreSaleEnded();
        if (currentTime < prSaleTime) revert PreSaleNotStarted();
        if (totalSupply() + amount > maxSupply) revert ExceedMaxSupply();
        if (amount > maxPerAccount) revert ExceedMaxAmount();
        if (msg.value < amount * preSalePrice) revert ValueTooLow();

        _safeMint(msg.sender, amount);
    }

    function pubSaleMint(uint256 amount) external payable {
        uint256 currentTime = block.timestamp;

        if (msg.sender != tx.origin) revert AntiBot();
        if (currentTime < puSaleTime) revert PubSaleNotStarted();
        if (totalSupply() + amount > maxSupply) revert ExceedMaxSupply();
        if (amount > maxPerAccount) revert ExceedMaxAmount();
        if (msg.value < amount * pubSalePrice) revert ValueTooLow();

        _safeMint(msg.sender, amount);
    }

    /* Utils */
    function isWhitelisted(address user, bytes memory signature)
        public
        view
        returns (bool)
    {
        bytes32 message = keccak256(
            abi.encodePacked(
                "\x19Ethereum Signed Message:\n32",
                bytes32(uint256(uint160(user)))
            )
        );

        return recoverSigner(message, signature) == passwordSigner;
    }

    function recoverSigner(bytes32 _message, bytes memory _signature)
        internal
        pure
        returns (address)
    {
        (bytes32 r, bytes32 s, uint8 v) = splitSignature(_signature);
        return ecrecover(_message, v, r, s);
    }

    function splitSignature(bytes memory sig)
        internal
        pure
        returns (
            bytes32 r,
            bytes32 s,
            uint8 v
        )
    {
        require(sig.length == 65, "invalid signature length");

        assembly {
            r := mload(add(sig, 32))
            s := mload(add(sig, 64))
            v := byte(0, mload(add(sig, 96)))
        }
    }

    /* Getters */
    function tokenURI(uint256 id) public view override returns (string memory) {
        uint256 currentTime = block.timestamp;

        if (currentTime < revealTime || bytes(baseUri).length == 0) {
            return unreUri;
        } else {
            return string(abi.encodePacked(baseUri, id.toString(), ".json"));
        }
    }

    /* Setters */
    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

    function setMaxPerAccount(uint256 _maxPerAccount) public onlyOwner {
        maxPerAccount = _maxPerAccount;
    }

    function setPreSalePrice(uint256 _preSalePrice) public onlyOwner {
        preSalePrice = _preSalePrice;
    }

    function setPubSalePrice(uint256 _pubSalePrice) public onlyOwner {
        pubSalePrice = _pubSalePrice;
    }

    function setBaseUri(string memory _baseUri) public onlyOwner {
        baseUri = _baseUri;
    }

    function setUnreUri(string memory _unreUri) public onlyOwner {
        unreUri = _unreUri;
    }

    function setPrSaleTime(uint256 _prSaleTime) public onlyOwner {
        prSaleTime = _prSaleTime;
    }

    function setPuSaleTime(uint256 _puSaleTime) public onlyOwner {
        puSaleTime = _puSaleTime;
    }

    function setRevealTime(uint256 _revealTime) public onlyOwner {
        revealTime = _revealTime;
    }

    function setPasswordSigner(address _passwordSigner) public onlyOwner {
        passwordSigner = _passwordSigner;
    }
}

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

pragma solidity ^0.8.0;

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 AuxQueryForZeroAddress();
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 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**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

        unchecked {
            if (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 > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;

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

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        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**256.
        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**256.
        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 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 5 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 6 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

File 8 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 9 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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);

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

File 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 11 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 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":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxPerAccount","type":"uint256"},{"internalType":"uint256","name":"_preSalePrice","type":"uint256"},{"internalType":"uint256","name":"_pubSalePrice","type":"uint256"},{"internalType":"uint256","name":"_prSaleTime","type":"uint256"},{"internalType":"uint256","name":"_puSaleTime","type":"uint256"},{"internalType":"uint256","name":"_revealTime","type":"uint256"},{"internalType":"address","name":"_passwordSigner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AntiBot","type":"error"},{"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":"ExceedMaxAmount","type":"error"},{"inputs":[],"name":"ExceedMaxSupply","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotWhitelisted","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"PreSaleEnded","type":"error"},{"inputs":[],"name":"PreSaleNotStarted","type":"error"},{"inputs":[],"name":"PubSaleNotStarted","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"ValueTooLow","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","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":"address","name":"user","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAccount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prSaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"puSaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"pubSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"pubSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerAccount","type":"uint256"}],"name":"setMaxPerAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_passwordSigner","type":"address"}],"name":"setPasswordSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_prSaleTime","type":"uint256"}],"name":"setPrSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preSalePrice","type":"uint256"}],"name":"setPreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_puSaleTime","type":"uint256"}],"name":"setPuSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pubSalePrice","type":"uint256"}],"name":"setPubSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revealTime","type":"uint256"}],"name":"setRevealTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_unreUri","type":"string"}],"name":"setUnreUri","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":"id","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":"unreUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162004a4138038062004a418339818101604052810190620000379190620008f9565b6040518060400160405280600f81526020017f47656e65726963436f6e747261637400000000000000000000000000000000008152506040518060400160405280600481526020017f47454e4300000000000000000000000000000000000000000000000000000000815250620000c3620000b76200019260201b60201c565b6200019a60201b60201c565b8160039080519060200190620000db929190620007d2565b508060049080519060200190620000f4929190620007d2565b505050600160098190555087600a8190555086600b8190555085600c8190555084600d8190555083601081905550826011819055508160128190555080601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001843360016200025e60201b60201c565b505050505050505062000bfe565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002808282604051806020016040528060008152506200028460201b60201c565b5050565b6200029983838360016200029e60201b60201c565b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156200030d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141562000349576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200035e6000868387620005f460201b60201c565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015620005cf57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156200058157506200057f6000888488620005fa60201b60201c565b155b15620005b9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050620004fc565b508060018190555050620005ed6000868387620007a960201b60201c565b5050505050565b50505050565b6000620006288473ffffffffffffffffffffffffffffffffffffffff16620007af60201b62001da31760201c565b156200079c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200065a6200019260201b60201c565b8786866040518563ffffffff1660e01b81526004016200067e949392919062000a25565b602060405180830381600087803b1580156200069957600080fd5b505af1925050508015620006cd57506040513d601f19601f82011682018060405250810190620006ca9190620008c7565b60015b6200074b573d806000811462000700576040519150601f19603f3d011682016040523d82523d6000602084013e62000705565b606091505b5060008151141562000743576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620007a1565b600190505b949350505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054620007e09062000b35565b90600052602060002090601f01602090048101928262000804576000855562000850565b82601f106200081f57805160ff191683800117855562000850565b8280016001018555821562000850579182015b828111156200084f57825182559160200191906001019062000832565b5b5090506200085f919062000863565b5090565b5b808211156200087e57600081600090555060010162000864565b5090565b600081519050620008938162000bb0565b92915050565b600081519050620008aa8162000bca565b92915050565b600081519050620008c18162000be4565b92915050565b600060208284031215620008e057620008df62000b9a565b5b6000620008f08482850162000899565b91505092915050565b600080600080600080600080610100898b0312156200091d576200091c62000b9a565b5b60006200092d8b828c01620008b0565b9850506020620009408b828c01620008b0565b9750506040620009538b828c01620008b0565b9650506060620009668b828c01620008b0565b9550506080620009798b828c01620008b0565b94505060a06200098c8b828c01620008b0565b93505060c06200099f8b828c01620008b0565b92505060e0620009b28b828c0162000882565b9150509295985092959890939650565b620009cd8162000a95565b82525050565b6000620009e08262000a79565b620009ec818562000a84565b9350620009fe81856020860162000aff565b62000a098162000b9f565b840191505092915050565b62000a1f8162000af5565b82525050565b600060808201905062000a3c6000830187620009c2565b62000a4b6020830186620009c2565b62000a5a604083018562000a14565b818103606083015262000a6e8184620009d3565b905095945050505050565b600081519050919050565b600082825260208201905092915050565b600062000aa28262000ad5565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000b1f57808201518184015260208101905062000b02565b8381111562000b2f576000848401525b50505050565b6000600282049050600182168062000b4e57607f821691505b6020821081141562000b655762000b6462000b6b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b62000bbb8162000a95565b811462000bc757600080fd5b50565b62000bd58162000aa9565b811462000be157600080fd5b50565b62000bef8162000af5565b811462000bfb57600080fd5b50565b613e338062000c0e6000396000f3fe6080604052600436106102305760003560e01c80637d7eee421161012e578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb0114610807578063ddac0a6f14610832578063e757c17d1461085d578063e985e9c514610888578063f2fde38b146108c557610230565b8063b88d4fde14610722578063ba829d711461074b578063bf61320214610776578063c1e28507146107a1578063c87b56dd146107ca57610230565b8063a08f56bd116100f2578063a08f56bd14610660578063a0bcfc7f1461068b578063a22cb465146106b4578063a272284a146106dd578063b4686a7a146106f957610230565b80637d7eee421461058b5780638da5cb5b146105b457806393f8ed7e146105df57806395d89b411461060a5780639abc83201461063557610230565b80633eff84a1116101bc57806365da78571161018057806365da7857146104c95780636a261ab5146104f25780636f8b44b01461050e57806370a0823114610537578063715018a61461057457610230565b80633eff84a1146103e857806342842e0e146104115780634bf9698d1461043a5780634c1303ad146104635780636352211e1461048c57610230565b8063095ea7b311610203578063095ea7b31461030357806318160ddd1461032c5780631f0a8fa71461035757806323b872dd146103945780633318e277146103bd57610230565b806301ffc9a71461023557806303ed4a441461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906132de565b6108ee565b60405161026991906136f9565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190613381565b6109d0565b005b3480156102a757600080fd5b506102b0610a56565b6040516102bd9190613759565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190613381565b610ae8565b6040516102fa9190613692565b60405180910390f35b34801561030f57600080fd5b5061032a6004803603810190610325919061329e565b610b64565b005b34801561033857600080fd5b50610341610c6f565b60405161034e91906137db565b60405180910390f35b34801561036357600080fd5b5061037e60048036038101906103799190613242565b610c7d565b60405161038b91906136f9565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b6919061312c565b610d25565b005b3480156103c957600080fd5b506103d2610d35565b6040516103df91906137db565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613381565b610d3b565b005b34801561041d57600080fd5b506104386004803603810190610433919061312c565b610dc1565b005b34801561044657600080fd5b50610461600480360381019061045c91906130bf565b610de1565b005b34801561046f57600080fd5b5061048a60048036038101906104859190613381565b610ea1565b005b34801561049857600080fd5b506104b360048036038101906104ae9190613381565b610f27565b6040516104c09190613692565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb9190613338565b610f3d565b005b61050c60048036038101906105079190613381565b610fd3565b005b34801561051a57600080fd5b5061053560048036038101906105309190613381565b611158565b005b34801561054357600080fd5b5061055e600480360381019061055991906130bf565b6111de565b60405161056b91906137db565b60405180910390f35b34801561058057600080fd5b506105896112ae565b005b34801561059757600080fd5b506105b260048036038101906105ad9190613381565b611336565b005b3480156105c057600080fd5b506105c96113bc565b6040516105d69190613692565b60405180910390f35b3480156105eb57600080fd5b506105f46113e5565b60405161060191906137db565b60405180910390f35b34801561061657600080fd5b5061061f6113eb565b60405161062c9190613759565b60405180910390f35b34801561064157600080fd5b5061064a61147d565b6040516106579190613759565b60405180910390f35b34801561066c57600080fd5b5061067561150b565b60405161068291906137db565b60405180910390f35b34801561069757600080fd5b506106b260048036038101906106ad9190613338565b611511565b005b3480156106c057600080fd5b506106db60048036038101906106d69190613202565b6115a7565b005b6106f760048036038101906106f291906133ae565b61171f565b005b34801561070557600080fd5b50610720600480360381019061071b9190613381565b611921565b005b34801561072e57600080fd5b506107496004803603810190610744919061317f565b6119a7565b005b34801561075757600080fd5b506107606119fa565b60405161076d91906137db565b60405180910390f35b34801561078257600080fd5b5061078b611a00565b60405161079891906137db565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190613381565b611a06565b005b3480156107d657600080fd5b506107f160048036038101906107ec9190613381565b611a8c565b6040516107fe9190613759565b60405180910390f35b34801561081357600080fd5b5061081c611b7d565b60405161082991906137db565b60405180910390f35b34801561083e57600080fd5b50610847611b83565b6040516108549190613759565b60405180910390f35b34801561086957600080fd5b50610872611c11565b60405161087f91906137db565b60405180910390f35b34801561089457600080fd5b506108af60048036038101906108aa91906130ec565b611c17565b6040516108bc91906136f9565b60405180910390f35b3480156108d157600080fd5b506108ec60048036038101906108e791906130bf565b611cab565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109b957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c957506109c882611dc6565b5b9050919050565b6109d8611e30565b73ffffffffffffffffffffffffffffffffffffffff166109f66113bc565b73ffffffffffffffffffffffffffffffffffffffff1614610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a439061379b565b60405180910390fd5b8060108190555050565b606060038054610a6590613ab7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9190613ab7565b8015610ade5780601f10610ab357610100808354040283529160200191610ade565b820191906000526020600020905b815481529060010190602001808311610ac157829003601f168201915b5050505050905090565b6000610af382611e38565b610b29576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6f82610f27565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bd7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bf6611e30565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c285750610c2681610c21611e30565b611c17565b155b15610c5f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c6a838383611e73565b505050565b600060025460015403905090565b6000808373ffffffffffffffffffffffffffffffffffffffff1660001b604051602001610caa919061366c565b604051602081830303815290604052805190602001209050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610d058285611f25565b73ffffffffffffffffffffffffffffffffffffffff161491505092915050565b610d30838383611f94565b505050565b600d5481565b610d43611e30565b73ffffffffffffffffffffffffffffffffffffffff16610d616113bc565b73ffffffffffffffffffffffffffffffffffffffff1614610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae9061379b565b60405180910390fd5b80600d8190555050565b610ddc838383604051806020016040528060008152506119a7565b505050565b610de9611e30565b73ffffffffffffffffffffffffffffffffffffffff16610e076113bc565b73ffffffffffffffffffffffffffffffffffffffff1614610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e549061379b565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ea9611e30565b73ffffffffffffffffffffffffffffffffffffffff16610ec76113bc565b73ffffffffffffffffffffffffffffffffffffffff1614610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f149061379b565b60405180910390fd5b80600b8190555050565b6000610f3282612485565b600001519050919050565b610f45611e30565b73ffffffffffffffffffffffffffffffffffffffff16610f636113bc565b73ffffffffffffffffffffffffffffffffffffffff1614610fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb09061379b565b60405180910390fd5b80600f9080519060200190610fcf929190612e90565b5050565b60004290503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461103d576040517f629f2dce00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601154811015611079576040517fd7e96c2200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5482611085610c6f565b61108f91906138d5565b11156110c7576040517f1e186f7200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b54821115611103576040517f4d9258af00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d5482611111919061395c565b34101561114a576040517f5321e1df00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111543383612701565b5050565b611160611e30565b73ffffffffffffffffffffffffffffffffffffffff1661117e6113bc565b73ffffffffffffffffffffffffffffffffffffffff16146111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb9061379b565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611246576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112b6611e30565b73ffffffffffffffffffffffffffffffffffffffff166112d46113bc565b73ffffffffffffffffffffffffffffffffffffffff161461132a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113219061379b565b60405180910390fd5b611334600061271f565b565b61133e611e30565b73ffffffffffffffffffffffffffffffffffffffff1661135c6113bc565b73ffffffffffffffffffffffffffffffffffffffff16146113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a99061379b565b60405180910390fd5b80600c8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b6060600480546113fa90613ab7565b80601f016020809104026020016040519081016040528092919081815260200182805461142690613ab7565b80156114735780601f1061144857610100808354040283529160200191611473565b820191906000526020600020905b81548152906001019060200180831161145657829003601f168201915b5050505050905090565b600e805461148a90613ab7565b80601f01602080910402602001604051908101604052809291908181526020018280546114b690613ab7565b80156115035780601f106114d857610100808354040283529160200191611503565b820191906000526020600020905b8154815290600101906020018083116114e657829003601f168201915b505050505081565b60115481565b611519611e30565b73ffffffffffffffffffffffffffffffffffffffff166115376113bc565b73ffffffffffffffffffffffffffffffffffffffff161461158d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115849061379b565b60405180910390fd5b80600e90805190602001906115a3929190612e90565b5050565b6115af611e30565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611614576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611621611e30565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116ce611e30565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161171391906136f9565b60405180910390a35050565b60004290503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611789576040517f629f2dce00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117933383610c7d565b6117c9576040517f584a793800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601154811115611805576040517fc82e605500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601054811015611841576040517f2ef77f0000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548361184d610c6f565b61185791906138d5565b111561188f576040517f1e186f7200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b548311156118cb576040517f4d9258af00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54836118d9919061395c565b341015611912576040517f5321e1df00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61191c3384612701565b505050565b611929611e30565b73ffffffffffffffffffffffffffffffffffffffff166119476113bc565b73ffffffffffffffffffffffffffffffffffffffff161461199d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119949061379b565b60405180910390fd5b8060118190555050565b6119b2848484611f94565b6119be848484846127e3565b6119f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60125481565b600b5481565b611a0e611e30565b73ffffffffffffffffffffffffffffffffffffffff16611a2c6113bc565b73ffffffffffffffffffffffffffffffffffffffff1614611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a799061379b565b60405180910390fd5b8060128190555050565b60606000429050601254811080611ab157506000600e8054611aad90613ab7565b9050145b15611b4957600f8054611ac390613ab7565b80601f0160208091040260200160405190810160405280929190818152602001828054611aef90613ab7565b8015611b3c5780601f10611b1157610100808354040283529160200191611b3c565b820191906000526020600020905b815481529060010190602001808311611b1f57829003601f168201915b5050505050915050611b78565b600e611b5484612971565b604051602001611b6592919061363d565b6040516020818303038152906040529150505b919050565b600a5481565b600f8054611b9090613ab7565b80601f0160208091040260200160405190810160405280929190818152602001828054611bbc90613ab7565b8015611c095780601f10611bde57610100808354040283529160200191611c09565b820191906000526020600020905b815481529060010190602001808311611bec57829003601f168201915b505050505081565b600c5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cb3611e30565b73ffffffffffffffffffffffffffffffffffffffff16611cd16113bc565b73ffffffffffffffffffffffffffffffffffffffff1614611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e9061379b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8e9061377b565b60405180910390fd5b611da08161271f565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600060015482108015611e6c575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080600080611f3485612ad2565b92509250925060018682858560405160008152602001604052604051611f5d9493929190613714565b6020604051602081039080840390855afa158015611f7f573d6000803e3d6000fd5b50505060206040510351935050505092915050565b6000611f9f82612485565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611fc6611e30565b73ffffffffffffffffffffffffffffffffffffffff161480611ff95750611ff88260000151611ff3611e30565b611c17565b5b8061203e5750612007611e30565b73ffffffffffffffffffffffffffffffffffffffff1661202684610ae8565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612077576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120e0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612147576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121548585856001612b3a565b6121646000848460000151611e73565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612415576001548110156124145782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461247e8585856001612b40565b5050505050565b61248d612f16565b60008290506001548110156126ca576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516126c857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125ac5780925050506126fc565b5b6001156126c757818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126c25780925050506126fc565b6125ad565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61271b828260405180602001604052806000815250612b46565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006128048473ffffffffffffffffffffffffffffffffffffffff16611da3565b15612964578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261282d611e30565b8786866040518563ffffffff1660e01b815260040161284f94939291906136ad565b602060405180830381600087803b15801561286957600080fd5b505af192505050801561289a57506040513d601f19601f82011682018060405250810190612897919061330b565b60015b612914573d80600081146128ca576040519150601f19603f3d011682016040523d82523d6000602084013e6128cf565b606091505b5060008151141561290c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612969565b600190505b949350505050565b606060008214156129b9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612acd565b600082905060005b600082146129eb5780806129d490613b1a565b915050600a826129e4919061392b565b91506129c1565b60008167ffffffffffffffff811115612a0757612a06613c5a565b5b6040519080825280601f01601f191660200182016040528015612a395781602001600182028036833780820191505090505b5090505b60008514612ac657600182612a5291906139b6565b9150600a85612a619190613b6d565b6030612a6d91906138d5565b60f81b818381518110612a8357612a82613c2b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612abf919061392b565b9450612a3d565b8093505050505b919050565b60008060006041845114612b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b12906137bb565b60405180910390fd5b6020840151925060408401519150606084015160001a90509193909250565b50505050565b50505050565b612b538383836001612b58565b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612bc6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612c01576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c0e6000868387612b3a565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612e7357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612e275750612e2560008884886127e3565b155b15612e5e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612dac565b508060018190555050612e896000868387612b40565b5050505050565b828054612e9c90613ab7565b90600052602060002090601f016020900481019282612ebe5760008555612f05565b82601f10612ed757805160ff1916838001178555612f05565b82800160010185558215612f05579182015b82811115612f04578251825591602001919060010190612ee9565b5b509050612f129190612f59565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f72576000816000905550600101612f5a565b5090565b6000612f89612f848461381b565b6137f6565b905082815260208101848484011115612fa557612fa4613c8e565b5b612fb0848285613a75565b509392505050565b6000612fcb612fc68461384c565b6137f6565b905082815260208101848484011115612fe757612fe6613c8e565b5b612ff2848285613a75565b509392505050565b60008135905061300981613da1565b92915050565b60008135905061301e81613db8565b92915050565b60008135905061303381613dcf565b92915050565b60008151905061304881613dcf565b92915050565b600082601f83011261306357613062613c89565b5b8135613073848260208601612f76565b91505092915050565b600082601f83011261309157613090613c89565b5b81356130a1848260208601612fb8565b91505092915050565b6000813590506130b981613de6565b92915050565b6000602082840312156130d5576130d4613c98565b5b60006130e384828501612ffa565b91505092915050565b6000806040838503121561310357613102613c98565b5b600061311185828601612ffa565b925050602061312285828601612ffa565b9150509250929050565b60008060006060848603121561314557613144613c98565b5b600061315386828701612ffa565b935050602061316486828701612ffa565b9250506040613175868287016130aa565b9150509250925092565b6000806000806080858703121561319957613198613c98565b5b60006131a787828801612ffa565b94505060206131b887828801612ffa565b93505060406131c9878288016130aa565b925050606085013567ffffffffffffffff8111156131ea576131e9613c93565b5b6131f68782880161304e565b91505092959194509250565b6000806040838503121561321957613218613c98565b5b600061322785828601612ffa565b92505060206132388582860161300f565b9150509250929050565b6000806040838503121561325957613258613c98565b5b600061326785828601612ffa565b925050602083013567ffffffffffffffff81111561328857613287613c93565b5b6132948582860161304e565b9150509250929050565b600080604083850312156132b5576132b4613c98565b5b60006132c385828601612ffa565b92505060206132d4858286016130aa565b9150509250929050565b6000602082840312156132f4576132f3613c98565b5b600061330284828501613024565b91505092915050565b60006020828403121561332157613320613c98565b5b600061332f84828501613039565b91505092915050565b60006020828403121561334e5761334d613c98565b5b600082013567ffffffffffffffff81111561336c5761336b613c93565b5b6133788482850161307c565b91505092915050565b60006020828403121561339757613396613c98565b5b60006133a5848285016130aa565b91505092915050565b600080604083850312156133c5576133c4613c98565b5b60006133d3858286016130aa565b925050602083013567ffffffffffffffff8111156133f4576133f3613c93565b5b6134008582860161304e565b9150509250929050565b613413816139ea565b82525050565b613422816139fc565b82525050565b61343181613a08565b82525050565b61344861344382613a08565b613b63565b82525050565b600061345982613892565b61346381856138a8565b9350613473818560208601613a84565b61347c81613c9d565b840191505092915050565b60006134928261389d565b61349c81856138b9565b93506134ac818560208601613a84565b6134b581613c9d565b840191505092915050565b60006134cb8261389d565b6134d581856138ca565b93506134e5818560208601613a84565b80840191505092915050565b600081546134fe81613ab7565b61350881866138ca565b94506001821660008114613523576001811461353457613567565b60ff19831686528186019350613567565b61353d8561387d565b60005b8381101561355f57815481890152600182019150602081019050613540565b838801955050505b50505092915050565b600061357d601c836138ca565b915061358882613cae565b601c82019050919050565b60006135a06026836138b9565b91506135ab82613cd7565b604082019050919050565b60006135c36005836138ca565b91506135ce82613d26565b600582019050919050565b60006135e66020836138b9565b91506135f182613d4f565b602082019050919050565b60006136096018836138b9565b915061361482613d78565b602082019050919050565b61362881613a5e565b82525050565b61363781613a68565b82525050565b600061364982856134f1565b915061365582846134c0565b9150613660826135b6565b91508190509392505050565b600061367782613570565b91506136838284613437565b60208201915081905092915050565b60006020820190506136a7600083018461340a565b92915050565b60006080820190506136c2600083018761340a565b6136cf602083018661340a565b6136dc604083018561361f565b81810360608301526136ee818461344e565b905095945050505050565b600060208201905061370e6000830184613419565b92915050565b60006080820190506137296000830187613428565b613736602083018661362e565b6137436040830185613428565b6137506060830184613428565b95945050505050565b600060208201905081810360008301526137738184613487565b905092915050565b6000602082019050818103600083015261379481613593565b9050919050565b600060208201905081810360008301526137b4816135d9565b9050919050565b600060208201905081810360008301526137d4816135fc565b9050919050565b60006020820190506137f0600083018461361f565b92915050565b6000613800613811565b905061380c8282613ae9565b919050565b6000604051905090565b600067ffffffffffffffff82111561383657613835613c5a565b5b61383f82613c9d565b9050602081019050919050565b600067ffffffffffffffff82111561386757613866613c5a565b5b61387082613c9d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138e082613a5e565b91506138eb83613a5e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139205761391f613b9e565b5b828201905092915050565b600061393682613a5e565b915061394183613a5e565b92508261395157613950613bcd565b5b828204905092915050565b600061396782613a5e565b915061397283613a5e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139ab576139aa613b9e565b5b828202905092915050565b60006139c182613a5e565b91506139cc83613a5e565b9250828210156139df576139de613b9e565b5b828203905092915050565b60006139f582613a3e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613aa2578082015181840152602081019050613a87565b83811115613ab1576000848401525b50505050565b60006002820490506001821680613acf57607f821691505b60208210811415613ae357613ae2613bfc565b5b50919050565b613af282613c9d565b810181811067ffffffffffffffff82111715613b1157613b10613c5a565b5b80604052505050565b6000613b2582613a5e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b5857613b57613b9e565b5b600182019050919050565b6000819050919050565b6000613b7882613a5e565b9150613b8383613a5e565b925082613b9357613b92613bcd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f696e76616c6964207369676e6174757265206c656e6774680000000000000000600082015250565b613daa816139ea565b8114613db557600080fd5b50565b613dc1816139fc565b8114613dcc57600080fd5b50565b613dd881613a12565b8114613de357600080fd5b50565b613def81613a5e565b8114613dfa57600080fd5b5056fea2646970667358221220bf04330bb523b7e256bc55cf4de1a59272c236fda8b43997bb7495341ef4894864736f6c6343000807003300000000000000000000000000000000000000000000000000000000000003e90000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000116886276640000000000000000000000000000000000000000000000000000000000062be0ed00000000000000000000000000000000000000000000000000000000062be13800000000000000000000000000000000000000000000000000000000062d0ae0000000000000000000000000036d8bfb015b07cda7bbfcb022910640d5b202196

Deployed Bytecode

0x6080604052600436106102305760003560e01c80637d7eee421161012e578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb0114610807578063ddac0a6f14610832578063e757c17d1461085d578063e985e9c514610888578063f2fde38b146108c557610230565b8063b88d4fde14610722578063ba829d711461074b578063bf61320214610776578063c1e28507146107a1578063c87b56dd146107ca57610230565b8063a08f56bd116100f2578063a08f56bd14610660578063a0bcfc7f1461068b578063a22cb465146106b4578063a272284a146106dd578063b4686a7a146106f957610230565b80637d7eee421461058b5780638da5cb5b146105b457806393f8ed7e146105df57806395d89b411461060a5780639abc83201461063557610230565b80633eff84a1116101bc57806365da78571161018057806365da7857146104c95780636a261ab5146104f25780636f8b44b01461050e57806370a0823114610537578063715018a61461057457610230565b80633eff84a1146103e857806342842e0e146104115780634bf9698d1461043a5780634c1303ad146104635780636352211e1461048c57610230565b8063095ea7b311610203578063095ea7b31461030357806318160ddd1461032c5780631f0a8fa71461035757806323b872dd146103945780633318e277146103bd57610230565b806301ffc9a71461023557806303ed4a441461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906132de565b6108ee565b60405161026991906136f9565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190613381565b6109d0565b005b3480156102a757600080fd5b506102b0610a56565b6040516102bd9190613759565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190613381565b610ae8565b6040516102fa9190613692565b60405180910390f35b34801561030f57600080fd5b5061032a6004803603810190610325919061329e565b610b64565b005b34801561033857600080fd5b50610341610c6f565b60405161034e91906137db565b60405180910390f35b34801561036357600080fd5b5061037e60048036038101906103799190613242565b610c7d565b60405161038b91906136f9565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b6919061312c565b610d25565b005b3480156103c957600080fd5b506103d2610d35565b6040516103df91906137db565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613381565b610d3b565b005b34801561041d57600080fd5b506104386004803603810190610433919061312c565b610dc1565b005b34801561044657600080fd5b50610461600480360381019061045c91906130bf565b610de1565b005b34801561046f57600080fd5b5061048a60048036038101906104859190613381565b610ea1565b005b34801561049857600080fd5b506104b360048036038101906104ae9190613381565b610f27565b6040516104c09190613692565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb9190613338565b610f3d565b005b61050c60048036038101906105079190613381565b610fd3565b005b34801561051a57600080fd5b5061053560048036038101906105309190613381565b611158565b005b34801561054357600080fd5b5061055e600480360381019061055991906130bf565b6111de565b60405161056b91906137db565b60405180910390f35b34801561058057600080fd5b506105896112ae565b005b34801561059757600080fd5b506105b260048036038101906105ad9190613381565b611336565b005b3480156105c057600080fd5b506105c96113bc565b6040516105d69190613692565b60405180910390f35b3480156105eb57600080fd5b506105f46113e5565b60405161060191906137db565b60405180910390f35b34801561061657600080fd5b5061061f6113eb565b60405161062c9190613759565b60405180910390f35b34801561064157600080fd5b5061064a61147d565b6040516106579190613759565b60405180910390f35b34801561066c57600080fd5b5061067561150b565b60405161068291906137db565b60405180910390f35b34801561069757600080fd5b506106b260048036038101906106ad9190613338565b611511565b005b3480156106c057600080fd5b506106db60048036038101906106d69190613202565b6115a7565b005b6106f760048036038101906106f291906133ae565b61171f565b005b34801561070557600080fd5b50610720600480360381019061071b9190613381565b611921565b005b34801561072e57600080fd5b506107496004803603810190610744919061317f565b6119a7565b005b34801561075757600080fd5b506107606119fa565b60405161076d91906137db565b60405180910390f35b34801561078257600080fd5b5061078b611a00565b60405161079891906137db565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190613381565b611a06565b005b3480156107d657600080fd5b506107f160048036038101906107ec9190613381565b611a8c565b6040516107fe9190613759565b60405180910390f35b34801561081357600080fd5b5061081c611b7d565b60405161082991906137db565b60405180910390f35b34801561083e57600080fd5b50610847611b83565b6040516108549190613759565b60405180910390f35b34801561086957600080fd5b50610872611c11565b60405161087f91906137db565b60405180910390f35b34801561089457600080fd5b506108af60048036038101906108aa91906130ec565b611c17565b6040516108bc91906136f9565b60405180910390f35b3480156108d157600080fd5b506108ec60048036038101906108e791906130bf565b611cab565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109b957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c957506109c882611dc6565b5b9050919050565b6109d8611e30565b73ffffffffffffffffffffffffffffffffffffffff166109f66113bc565b73ffffffffffffffffffffffffffffffffffffffff1614610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a439061379b565b60405180910390fd5b8060108190555050565b606060038054610a6590613ab7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9190613ab7565b8015610ade5780601f10610ab357610100808354040283529160200191610ade565b820191906000526020600020905b815481529060010190602001808311610ac157829003601f168201915b5050505050905090565b6000610af382611e38565b610b29576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6f82610f27565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bd7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bf6611e30565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c285750610c2681610c21611e30565b611c17565b155b15610c5f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c6a838383611e73565b505050565b600060025460015403905090565b6000808373ffffffffffffffffffffffffffffffffffffffff1660001b604051602001610caa919061366c565b604051602081830303815290604052805190602001209050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610d058285611f25565b73ffffffffffffffffffffffffffffffffffffffff161491505092915050565b610d30838383611f94565b505050565b600d5481565b610d43611e30565b73ffffffffffffffffffffffffffffffffffffffff16610d616113bc565b73ffffffffffffffffffffffffffffffffffffffff1614610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae9061379b565b60405180910390fd5b80600d8190555050565b610ddc838383604051806020016040528060008152506119a7565b505050565b610de9611e30565b73ffffffffffffffffffffffffffffffffffffffff16610e076113bc565b73ffffffffffffffffffffffffffffffffffffffff1614610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e549061379b565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ea9611e30565b73ffffffffffffffffffffffffffffffffffffffff16610ec76113bc565b73ffffffffffffffffffffffffffffffffffffffff1614610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f149061379b565b60405180910390fd5b80600b8190555050565b6000610f3282612485565b600001519050919050565b610f45611e30565b73ffffffffffffffffffffffffffffffffffffffff16610f636113bc565b73ffffffffffffffffffffffffffffffffffffffff1614610fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb09061379b565b60405180910390fd5b80600f9080519060200190610fcf929190612e90565b5050565b60004290503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461103d576040517f629f2dce00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601154811015611079576040517fd7e96c2200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5482611085610c6f565b61108f91906138d5565b11156110c7576040517f1e186f7200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b54821115611103576040517f4d9258af00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d5482611111919061395c565b34101561114a576040517f5321e1df00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111543383612701565b5050565b611160611e30565b73ffffffffffffffffffffffffffffffffffffffff1661117e6113bc565b73ffffffffffffffffffffffffffffffffffffffff16146111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb9061379b565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611246576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112b6611e30565b73ffffffffffffffffffffffffffffffffffffffff166112d46113bc565b73ffffffffffffffffffffffffffffffffffffffff161461132a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113219061379b565b60405180910390fd5b611334600061271f565b565b61133e611e30565b73ffffffffffffffffffffffffffffffffffffffff1661135c6113bc565b73ffffffffffffffffffffffffffffffffffffffff16146113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a99061379b565b60405180910390fd5b80600c8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b6060600480546113fa90613ab7565b80601f016020809104026020016040519081016040528092919081815260200182805461142690613ab7565b80156114735780601f1061144857610100808354040283529160200191611473565b820191906000526020600020905b81548152906001019060200180831161145657829003601f168201915b5050505050905090565b600e805461148a90613ab7565b80601f01602080910402602001604051908101604052809291908181526020018280546114b690613ab7565b80156115035780601f106114d857610100808354040283529160200191611503565b820191906000526020600020905b8154815290600101906020018083116114e657829003601f168201915b505050505081565b60115481565b611519611e30565b73ffffffffffffffffffffffffffffffffffffffff166115376113bc565b73ffffffffffffffffffffffffffffffffffffffff161461158d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115849061379b565b60405180910390fd5b80600e90805190602001906115a3929190612e90565b5050565b6115af611e30565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611614576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611621611e30565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116ce611e30565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161171391906136f9565b60405180910390a35050565b60004290503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611789576040517f629f2dce00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117933383610c7d565b6117c9576040517f584a793800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601154811115611805576040517fc82e605500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601054811015611841576040517f2ef77f0000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548361184d610c6f565b61185791906138d5565b111561188f576040517f1e186f7200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b548311156118cb576040517f4d9258af00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54836118d9919061395c565b341015611912576040517f5321e1df00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61191c3384612701565b505050565b611929611e30565b73ffffffffffffffffffffffffffffffffffffffff166119476113bc565b73ffffffffffffffffffffffffffffffffffffffff161461199d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119949061379b565b60405180910390fd5b8060118190555050565b6119b2848484611f94565b6119be848484846127e3565b6119f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60125481565b600b5481565b611a0e611e30565b73ffffffffffffffffffffffffffffffffffffffff16611a2c6113bc565b73ffffffffffffffffffffffffffffffffffffffff1614611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a799061379b565b60405180910390fd5b8060128190555050565b60606000429050601254811080611ab157506000600e8054611aad90613ab7565b9050145b15611b4957600f8054611ac390613ab7565b80601f0160208091040260200160405190810160405280929190818152602001828054611aef90613ab7565b8015611b3c5780601f10611b1157610100808354040283529160200191611b3c565b820191906000526020600020905b815481529060010190602001808311611b1f57829003601f168201915b5050505050915050611b78565b600e611b5484612971565b604051602001611b6592919061363d565b6040516020818303038152906040529150505b919050565b600a5481565b600f8054611b9090613ab7565b80601f0160208091040260200160405190810160405280929190818152602001828054611bbc90613ab7565b8015611c095780601f10611bde57610100808354040283529160200191611c09565b820191906000526020600020905b815481529060010190602001808311611bec57829003601f168201915b505050505081565b600c5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cb3611e30565b73ffffffffffffffffffffffffffffffffffffffff16611cd16113bc565b73ffffffffffffffffffffffffffffffffffffffff1614611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e9061379b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8e9061377b565b60405180910390fd5b611da08161271f565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600060015482108015611e6c575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080600080611f3485612ad2565b92509250925060018682858560405160008152602001604052604051611f5d9493929190613714565b6020604051602081039080840390855afa158015611f7f573d6000803e3d6000fd5b50505060206040510351935050505092915050565b6000611f9f82612485565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611fc6611e30565b73ffffffffffffffffffffffffffffffffffffffff161480611ff95750611ff88260000151611ff3611e30565b611c17565b5b8061203e5750612007611e30565b73ffffffffffffffffffffffffffffffffffffffff1661202684610ae8565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612077576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120e0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612147576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121548585856001612b3a565b6121646000848460000151611e73565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612415576001548110156124145782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461247e8585856001612b40565b5050505050565b61248d612f16565b60008290506001548110156126ca576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516126c857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125ac5780925050506126fc565b5b6001156126c757818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126c25780925050506126fc565b6125ad565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61271b828260405180602001604052806000815250612b46565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006128048473ffffffffffffffffffffffffffffffffffffffff16611da3565b15612964578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261282d611e30565b8786866040518563ffffffff1660e01b815260040161284f94939291906136ad565b602060405180830381600087803b15801561286957600080fd5b505af192505050801561289a57506040513d601f19601f82011682018060405250810190612897919061330b565b60015b612914573d80600081146128ca576040519150601f19603f3d011682016040523d82523d6000602084013e6128cf565b606091505b5060008151141561290c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612969565b600190505b949350505050565b606060008214156129b9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612acd565b600082905060005b600082146129eb5780806129d490613b1a565b915050600a826129e4919061392b565b91506129c1565b60008167ffffffffffffffff811115612a0757612a06613c5a565b5b6040519080825280601f01601f191660200182016040528015612a395781602001600182028036833780820191505090505b5090505b60008514612ac657600182612a5291906139b6565b9150600a85612a619190613b6d565b6030612a6d91906138d5565b60f81b818381518110612a8357612a82613c2b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612abf919061392b565b9450612a3d565b8093505050505b919050565b60008060006041845114612b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b12906137bb565b60405180910390fd5b6020840151925060408401519150606084015160001a90509193909250565b50505050565b50505050565b612b538383836001612b58565b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612bc6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612c01576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c0e6000868387612b3a565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612e7357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612e275750612e2560008884886127e3565b155b15612e5e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612dac565b508060018190555050612e896000868387612b40565b5050505050565b828054612e9c90613ab7565b90600052602060002090601f016020900481019282612ebe5760008555612f05565b82601f10612ed757805160ff1916838001178555612f05565b82800160010185558215612f05579182015b82811115612f04578251825591602001919060010190612ee9565b5b509050612f129190612f59565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f72576000816000905550600101612f5a565b5090565b6000612f89612f848461381b565b6137f6565b905082815260208101848484011115612fa557612fa4613c8e565b5b612fb0848285613a75565b509392505050565b6000612fcb612fc68461384c565b6137f6565b905082815260208101848484011115612fe757612fe6613c8e565b5b612ff2848285613a75565b509392505050565b60008135905061300981613da1565b92915050565b60008135905061301e81613db8565b92915050565b60008135905061303381613dcf565b92915050565b60008151905061304881613dcf565b92915050565b600082601f83011261306357613062613c89565b5b8135613073848260208601612f76565b91505092915050565b600082601f83011261309157613090613c89565b5b81356130a1848260208601612fb8565b91505092915050565b6000813590506130b981613de6565b92915050565b6000602082840312156130d5576130d4613c98565b5b60006130e384828501612ffa565b91505092915050565b6000806040838503121561310357613102613c98565b5b600061311185828601612ffa565b925050602061312285828601612ffa565b9150509250929050565b60008060006060848603121561314557613144613c98565b5b600061315386828701612ffa565b935050602061316486828701612ffa565b9250506040613175868287016130aa565b9150509250925092565b6000806000806080858703121561319957613198613c98565b5b60006131a787828801612ffa565b94505060206131b887828801612ffa565b93505060406131c9878288016130aa565b925050606085013567ffffffffffffffff8111156131ea576131e9613c93565b5b6131f68782880161304e565b91505092959194509250565b6000806040838503121561321957613218613c98565b5b600061322785828601612ffa565b92505060206132388582860161300f565b9150509250929050565b6000806040838503121561325957613258613c98565b5b600061326785828601612ffa565b925050602083013567ffffffffffffffff81111561328857613287613c93565b5b6132948582860161304e565b9150509250929050565b600080604083850312156132b5576132b4613c98565b5b60006132c385828601612ffa565b92505060206132d4858286016130aa565b9150509250929050565b6000602082840312156132f4576132f3613c98565b5b600061330284828501613024565b91505092915050565b60006020828403121561332157613320613c98565b5b600061332f84828501613039565b91505092915050565b60006020828403121561334e5761334d613c98565b5b600082013567ffffffffffffffff81111561336c5761336b613c93565b5b6133788482850161307c565b91505092915050565b60006020828403121561339757613396613c98565b5b60006133a5848285016130aa565b91505092915050565b600080604083850312156133c5576133c4613c98565b5b60006133d3858286016130aa565b925050602083013567ffffffffffffffff8111156133f4576133f3613c93565b5b6134008582860161304e565b9150509250929050565b613413816139ea565b82525050565b613422816139fc565b82525050565b61343181613a08565b82525050565b61344861344382613a08565b613b63565b82525050565b600061345982613892565b61346381856138a8565b9350613473818560208601613a84565b61347c81613c9d565b840191505092915050565b60006134928261389d565b61349c81856138b9565b93506134ac818560208601613a84565b6134b581613c9d565b840191505092915050565b60006134cb8261389d565b6134d581856138ca565b93506134e5818560208601613a84565b80840191505092915050565b600081546134fe81613ab7565b61350881866138ca565b94506001821660008114613523576001811461353457613567565b60ff19831686528186019350613567565b61353d8561387d565b60005b8381101561355f57815481890152600182019150602081019050613540565b838801955050505b50505092915050565b600061357d601c836138ca565b915061358882613cae565b601c82019050919050565b60006135a06026836138b9565b91506135ab82613cd7565b604082019050919050565b60006135c36005836138ca565b91506135ce82613d26565b600582019050919050565b60006135e66020836138b9565b91506135f182613d4f565b602082019050919050565b60006136096018836138b9565b915061361482613d78565b602082019050919050565b61362881613a5e565b82525050565b61363781613a68565b82525050565b600061364982856134f1565b915061365582846134c0565b9150613660826135b6565b91508190509392505050565b600061367782613570565b91506136838284613437565b60208201915081905092915050565b60006020820190506136a7600083018461340a565b92915050565b60006080820190506136c2600083018761340a565b6136cf602083018661340a565b6136dc604083018561361f565b81810360608301526136ee818461344e565b905095945050505050565b600060208201905061370e6000830184613419565b92915050565b60006080820190506137296000830187613428565b613736602083018661362e565b6137436040830185613428565b6137506060830184613428565b95945050505050565b600060208201905081810360008301526137738184613487565b905092915050565b6000602082019050818103600083015261379481613593565b9050919050565b600060208201905081810360008301526137b4816135d9565b9050919050565b600060208201905081810360008301526137d4816135fc565b9050919050565b60006020820190506137f0600083018461361f565b92915050565b6000613800613811565b905061380c8282613ae9565b919050565b6000604051905090565b600067ffffffffffffffff82111561383657613835613c5a565b5b61383f82613c9d565b9050602081019050919050565b600067ffffffffffffffff82111561386757613866613c5a565b5b61387082613c9d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138e082613a5e565b91506138eb83613a5e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139205761391f613b9e565b5b828201905092915050565b600061393682613a5e565b915061394183613a5e565b92508261395157613950613bcd565b5b828204905092915050565b600061396782613a5e565b915061397283613a5e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139ab576139aa613b9e565b5b828202905092915050565b60006139c182613a5e565b91506139cc83613a5e565b9250828210156139df576139de613b9e565b5b828203905092915050565b60006139f582613a3e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613aa2578082015181840152602081019050613a87565b83811115613ab1576000848401525b50505050565b60006002820490506001821680613acf57607f821691505b60208210811415613ae357613ae2613bfc565b5b50919050565b613af282613c9d565b810181811067ffffffffffffffff82111715613b1157613b10613c5a565b5b80604052505050565b6000613b2582613a5e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b5857613b57613b9e565b5b600182019050919050565b6000819050919050565b6000613b7882613a5e565b9150613b8383613a5e565b925082613b9357613b92613bcd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f696e76616c6964207369676e6174757265206c656e6774680000000000000000600082015250565b613daa816139ea565b8114613db557600080fd5b50565b613dc1816139fc565b8114613dcc57600080fd5b50565b613dd881613a12565b8114613de357600080fd5b50565b613def81613a5e565b8114613dfa57600080fd5b5056fea2646970667358221220bf04330bb523b7e256bc55cf4de1a59272c236fda8b43997bb7495341ef4894864736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000003e90000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000116886276640000000000000000000000000000000000000000000000000000000000062be0ed00000000000000000000000000000000000000000000000000000000062be13800000000000000000000000000000000000000000000000000000000062d0ae0000000000000000000000000036d8bfb015b07cda7bbfcb022910640d5b202196

-----Decoded View---------------
Arg [0] : _maxSupply (uint256): 1001
Arg [1] : _maxPerAccount (uint256): 1
Arg [2] : _preSalePrice (uint256): 0
Arg [3] : _pubSalePrice (uint256): 4900000000000000
Arg [4] : _prSaleTime (uint256): 1656622800
Arg [5] : _puSaleTime (uint256): 1656624000
Arg [6] : _revealTime (uint256): 1657843200
Arg [7] : _passwordSigner (address): 0x36D8bFb015b07Cda7bbfCB022910640d5B202196

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000003e9
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000011688627664000
Arg [4] : 0000000000000000000000000000000000000000000000000000000062be0ed0
Arg [5] : 0000000000000000000000000000000000000000000000000000000062be1380
Arg [6] : 0000000000000000000000000000000000000000000000000000000062d0ae00
Arg [7] : 00000000000000000000000036d8bfb015b07cda7bbfcb022910640d5b202196


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.