ETH Price: $2,402.72 (-9.56%)

Token

$100K PFP ($100KPFP)
 

Overview

Max Total Supply

1,018 $100KPFP

Holders

30

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
200 $100KPFP
0x56ad1a128a06b0024ef067ebaf05d9f46f8a366c
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:
Real100K

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 13 of 13: tttttt.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Ownable.sol";
import "./ERC721A.sol";

contract Real100K is ERC721A, Ownable {

    uint256 public price = 0.01 ether;
    uint256 public maxMintPerWallet = 50;
    uint256 public freeMintAmount = 1000;
    uint256 public maxTotalSupply = 4444;
    uint256 public saleStartTime;
    string private baseURI;

    constructor() ERC721A("$100K PFP", "$100KPFP") {
        saleStartTime = block.timestamp;
    }

    modifier mintableSupply(uint256 _quantity) {
        require(
            totalSupply() + _quantity <= maxTotalSupply,
            "Over maximum supply."
        );
        _;
    }

    modifier maxPerWalletLimits(uint256 _quantity, uint256 _limits) {
        require(
            _quantity > 0 &&  _quantity <= _limits,
            "Over maximum limit."
        );
        _;
    }


    modifier saleActive() {
        require(
            saleStartTime <= block.timestamp,
            "Not start yet."
        );
        _;
    }

    function mint100k(uint256 _quantity)
        external
        payable
        saleActive
        maxPerWalletLimits(_quantity,maxMintPerWallet)
        mintableSupply(_quantity) 
    {
        uint256 curr_value;
        if(totalSupply() + _quantity <= freeMintAmount){
        curr_value = 0;
        }
        if(totalSupply() < freeMintAmount && (totalSupply() + _quantity > freeMintAmount)) {
        curr_value = (totalSupply() + _quantity - freeMintAmount) * price;
        }
        if(totalSupply() >= freeMintAmount) {
        curr_value = _quantity * price;
        }
        require(msg.value >= curr_value, "Insufficent funds.");
        
        _safeMint(msg.sender, _quantity);
    }

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

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


    function setMintPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setSaleTime(uint256 _time) external onlyOwner {
        saleStartTime = _time;
    }


    function withdraw() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 13: ContentMixin.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

abstract contract ContextMixin {
    function msgSender() internal view returns (address payable sender) {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

File 3 of 13: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 5 of 13: ERC721A.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Enumerable.sol";
import "./IERC721Metadata.sol";
import "./Strings.sol";
import "./Context.sol";
import "./ERC165.sol";
import "./Address.sol";
import "./IERC721Receiver.sol";

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

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

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

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

File 6 of 13: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 7 of 13: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 9 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"freeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint100k","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052662386f26fc1000060085560326009556103e8600a5561115c600b553480156200002d57600080fd5b5060408051808201825260098152680243130304b205046560bc1b6020808301918252835180850190945260088452670243130304b5046560c41b9084015281519192916200007f9160019162000112565b5080516200009590600290602084019062000112565b505050620000b2620000ac620000bc60201b60201c565b620000c0565b42600c55620001f5565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012090620001b8565b90600052602060002090601f0160209004810192826200014457600085556200018f565b82601f106200015f57805160ff19168380011785556200018f565b828001600101855582156200018f579182015b828111156200018f57825182559160200191906001019062000172565b506200019d929150620001a1565b5090565b5b808211156200019d5760008155600101620001a2565b600181811c90821680620001cd57607f821691505b60208210811415620001ef57634e487b7160e01b600052602260045260246000fd5b50919050565b611c9780620002056000396000f3fe6080604052600436106101c25760003560e01c806355f804b3116100f7578063a035b1fe11610095578063c87b56dd11610064578063c87b56dd146104b9578063e985e9c5146104d9578063f2fde38b14610522578063f4a0a5281461054257600080fd5b8063a035b1fe1461044d578063a22cb46514610463578063b228d92514610483578063b88d4fde1461049957600080fd5b806370a08231116100d157806370a08231146103e5578063715018a6146104055780638da5cb5b1461041a57806395d89b411461043857600080fd5b806355f804b3146103925780635ec80d3c146103b25780636352211e146103c557600080fd5b80632ab4d052116101645780633bd2b67d1161013e5780633bd2b67d1461031d5780633ccfd60b1461033d57806342842e0e146103525780634f6ccce71461037257600080fd5b80632ab4d052146102d15780632f745c59146102e75780633a467e3d1461030757600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd146102785780631cbaee2d1461029b57806323b872dd146102b157600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e236600461197f565b610562565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105cf565b6040516101f39190611ab3565b34801561022a57600080fd5b5061023e610239366004611a02565b610661565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611955565b6106a5565b005b34801561028457600080fd5b5061028d610733565b6040519081526020016101f3565b3480156102a757600080fd5b5061028d600c5481565b3480156102bd57600080fd5b506102766102cc366004611861565b610752565b3480156102dd57600080fd5b5061028d600b5481565b3480156102f357600080fd5b5061028d610302366004611955565b61075d565b34801561031357600080fd5b5061028d600a5481565b34801561032957600080fd5b50610276610338366004611a02565b61085a565b34801561034957600080fd5b50610276610892565b34801561035e57600080fd5b5061027661036d366004611861565b61094a565b34801561037e57600080fd5b5061028d61038d366004611a02565b610965565b34801561039e57600080fd5b506102766103ad3660046119b9565b610a10565b6102766103c0366004611a02565b610a51565b3480156103d157600080fd5b5061023e6103e0366004611a02565b610c3d565b3480156103f157600080fd5b5061028d610400366004611813565b610c4f565b34801561041157600080fd5b50610276610c9e565b34801561042657600080fd5b506007546001600160a01b031661023e565b34801561044457600080fd5b50610211610cd4565b34801561045957600080fd5b5061028d60085481565b34801561046f57600080fd5b5061027661047e366004611919565b610ce3565b34801561048f57600080fd5b5061028d60095481565b3480156104a557600080fd5b506102766104b436600461189d565b610d79565b3480156104c557600080fd5b506102116104d4366004611a02565b610db3565b3480156104e557600080fd5b506101e76104f436600461182e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561052e57600080fd5b5061027661053d366004611813565b610e38565b34801561054e57600080fd5b5061027661055d366004611a02565b610ed0565b60006001600160e01b031982166380ac58cd60e01b148061059357506001600160e01b03198216635b5e139f60e01b145b806105ae57506001600160e01b0319821663780e9d6360e01b145b806105c957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105de90611b89565b80601f016020809104026020016040519081016040528092919081815260200182805461060a90611b89565b80156106575780601f1061062c57610100808354040283529160200191610657565b820191906000526020600020905b81548152906001019060200180831161063a57829003601f168201915b5050505050905090565b600061066c82610eff565b610689576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106b082610c3d565b9050806001600160a01b0316836001600160a01b031614156106e55760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610705575061070381336104f4565b155b15610723576040516367d9dca160e11b815260040160405180910390fd5b61072e838383610f33565b505050565b6000546001600160801b03600160801b82048116918116919091031690565b61072e838383610f8f565b600061076883610c4f565b8210610787576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b8381101561085457600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161580159282019290925290610800575061084c565b80516001600160a01b03161561081557805192505b876001600160a01b0316836001600160a01b0316141561084a5786841415610843575093506105c992505050565b6001909301925b505b600101610798565b50600080fd5b6007546001600160a01b0316331461088d5760405162461bcd60e51b815260040161088490611ac6565b60405180910390fd5b600c55565b6007546001600160a01b031633146108bc5760405162461bcd60e51b815260040161088490611ac6565b604051600090339047908381818185875af1925050503d80600081146108fe576040519150601f19603f3d011682016040523d82523d6000602084013e610903565b606091505b50509050806109475760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610884565b50565b61072e83838360405180602001604052806000815250610d79565b600080546001600160801b031681805b828110156109f657600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906109ed57858314156109e65750949350505050565b6001909201915b50600101610975565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610a3a5760405162461bcd60e51b815260040161088490611ac6565b8051610a4d90600d9060208401906116e8565b5050565b42600c541115610a945760405162461bcd60e51b815260206004820152600e60248201526d2737ba1039ba30b93a103cb2ba1760911b6044820152606401610884565b80600954600082118015610aa85750808211155b610aea5760405162461bcd60e51b815260206004820152601360248201527227bb32b91036b0bc34b6bab6903634b6b4ba1760691b6044820152606401610884565b82600b5481610af7610733565b610b019190611afb565b1115610b465760405162461bcd60e51b815260206004820152601460248201527327bb32b91036b0bc34b6bab69039bab838363c9760611b6044820152606401610884565b6000600a5485610b54610733565b610b5e9190611afb565b11610b67575060005b600a54610b72610733565b108015610b925750600a5485610b86610733565b610b909190611afb565b115b15610bc757600854600a5486610ba6610733565b610bb09190611afb565b610bba9190611b46565b610bc49190611b27565b90505b600a54610bd2610733565b10610be757600854610be49086611b27565b90505b80341015610c2c5760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b2b73a10333ab732399760711b6044820152606401610884565b610c3633866111ab565b5050505050565b6000610c48826111c5565b5192915050565b60006001600160a01b038216610c78576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610cc85760405162461bcd60e51b815260040161088490611ac6565b610cd260006112e9565b565b6060600280546105de90611b89565b6001600160a01b038216331415610d0d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d84848484610f8f565b610d908484848461133b565b610dad576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610dbe82610eff565b610ddb57604051630a14c4b560e41b815260040160405180910390fd5b6000610de561144a565b9050805160001415610e065760405180602001604052806000815250610e31565b80610e1084611459565b604051602001610e21929190611a47565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610e625760405162461bcd60e51b815260040161088490611ac6565b6001600160a01b038116610ec75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610884565b610947816112e9565b6007546001600160a01b03163314610efa5760405162461bcd60e51b815260040161088490611ac6565b600855565b600080546001600160801b0316821080156105c9575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f9a826111c5565b80519091506000906001600160a01b0316336001600160a01b03161480610fc857508151610fc890336104f4565b80610fe3575033610fd884610661565b6001600160a01b0316145b90508061100357604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146110385760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661105f57604051633a954ecd60e21b815260040160405180910390fd5b61106f6000848460000151610f33565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611164576000546001600160801b0316811015611164578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c36565b610a4d828260405180602001604052806000815250611557565b60408051606081018252600080825260208201819052918101829052905482906001600160801b03168110156112d057600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906112ce5780516001600160a01b031615611264579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156112c9579392505050565b611264565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561143e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061137f903390899088908890600401611a76565b602060405180830381600087803b15801561139957600080fd5b505af19250505080156113c9575060408051601f3d908101601f191682019092526113c69181019061199c565b60015b611424573d8080156113f7576040519150601f19603f3d011682016040523d82523d6000602084013e6113fc565b606091505b50805161141c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611442565b5060015b949350505050565b6060600d80546105de90611b89565b60608161147d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114a7578061149181611bc4565b91506114a09050600a83611b13565b9150611481565b60008167ffffffffffffffff8111156114c2576114c2611c35565b6040519080825280601f01601f1916602001820160405280156114ec576020820181803683370190505b5090505b841561144257611501600183611b46565b915061150e600a86611bdf565b611519906030611afb565b60f81b81838151811061152e5761152e611c1f565b60200101906001600160f81b031916908160001a905350611550600a86611b13565b94506114f0565b61072e83838360016000546001600160801b03166001600160a01b03851661159157604051622e076360e81b815260040160405180910390fd5b836115af5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b0319811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156116c25760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156116985750611696600088848861133b565b155b156116b6576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611641565b50600080546001600160801b0319166001600160801b0392909216919091179055610c36565b8280546116f490611b89565b90600052602060002090601f016020900481019282611716576000855561175c565b82601f1061172f57805160ff191683800117855561175c565b8280016001018555821561175c579182015b8281111561175c578251825591602001919060010190611741565b5061176892915061176c565b5090565b5b80821115611768576000815560010161176d565b600067ffffffffffffffff8084111561179c5761179c611c35565b604051601f8501601f19908116603f011681019082821181831017156117c4576117c4611c35565b816040528093508581528686860111156117dd57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461180e57600080fd5b919050565b60006020828403121561182557600080fd5b610e31826117f7565b6000806040838503121561184157600080fd5b61184a836117f7565b9150611858602084016117f7565b90509250929050565b60008060006060848603121561187657600080fd5b61187f846117f7565b925061188d602085016117f7565b9150604084013590509250925092565b600080600080608085870312156118b357600080fd5b6118bc856117f7565b93506118ca602086016117f7565b925060408501359150606085013567ffffffffffffffff8111156118ed57600080fd5b8501601f810187136118fe57600080fd5b61190d87823560208401611781565b91505092959194509250565b6000806040838503121561192c57600080fd5b611935836117f7565b91506020830135801515811461194a57600080fd5b809150509250929050565b6000806040838503121561196857600080fd5b611971836117f7565b946020939093013593505050565b60006020828403121561199157600080fd5b8135610e3181611c4b565b6000602082840312156119ae57600080fd5b8151610e3181611c4b565b6000602082840312156119cb57600080fd5b813567ffffffffffffffff8111156119e257600080fd5b8201601f810184136119f357600080fd5b61144284823560208401611781565b600060208284031215611a1457600080fd5b5035919050565b60008151808452611a33816020860160208601611b5d565b601f01601f19169290920160200192915050565b60008351611a59818460208801611b5d565b835190830190611a6d818360208801611b5d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611aa990830184611a1b565b9695505050505050565b602081526000610e316020830184611a1b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611b0e57611b0e611bf3565b500190565b600082611b2257611b22611c09565b500490565b6000816000190483118215151615611b4157611b41611bf3565b500290565b600082821015611b5857611b58611bf3565b500390565b60005b83811015611b78578181015183820152602001611b60565b83811115610dad5750506000910152565b600181811c90821680611b9d57607f821691505b60208210811415611bbe57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611bd857611bd8611bf3565b5060010190565b600082611bee57611bee611c09565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461094757600080fdfea26469706673582212203462d92a276b9caf9cbd907a584093e388475bfb333e750efede15fd1d6a70c364736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c806355f804b3116100f7578063a035b1fe11610095578063c87b56dd11610064578063c87b56dd146104b9578063e985e9c5146104d9578063f2fde38b14610522578063f4a0a5281461054257600080fd5b8063a035b1fe1461044d578063a22cb46514610463578063b228d92514610483578063b88d4fde1461049957600080fd5b806370a08231116100d157806370a08231146103e5578063715018a6146104055780638da5cb5b1461041a57806395d89b411461043857600080fd5b806355f804b3146103925780635ec80d3c146103b25780636352211e146103c557600080fd5b80632ab4d052116101645780633bd2b67d1161013e5780633bd2b67d1461031d5780633ccfd60b1461033d57806342842e0e146103525780634f6ccce71461037257600080fd5b80632ab4d052146102d15780632f745c59146102e75780633a467e3d1461030757600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd146102785780631cbaee2d1461029b57806323b872dd146102b157600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e236600461197f565b610562565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105cf565b6040516101f39190611ab3565b34801561022a57600080fd5b5061023e610239366004611a02565b610661565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611955565b6106a5565b005b34801561028457600080fd5b5061028d610733565b6040519081526020016101f3565b3480156102a757600080fd5b5061028d600c5481565b3480156102bd57600080fd5b506102766102cc366004611861565b610752565b3480156102dd57600080fd5b5061028d600b5481565b3480156102f357600080fd5b5061028d610302366004611955565b61075d565b34801561031357600080fd5b5061028d600a5481565b34801561032957600080fd5b50610276610338366004611a02565b61085a565b34801561034957600080fd5b50610276610892565b34801561035e57600080fd5b5061027661036d366004611861565b61094a565b34801561037e57600080fd5b5061028d61038d366004611a02565b610965565b34801561039e57600080fd5b506102766103ad3660046119b9565b610a10565b6102766103c0366004611a02565b610a51565b3480156103d157600080fd5b5061023e6103e0366004611a02565b610c3d565b3480156103f157600080fd5b5061028d610400366004611813565b610c4f565b34801561041157600080fd5b50610276610c9e565b34801561042657600080fd5b506007546001600160a01b031661023e565b34801561044457600080fd5b50610211610cd4565b34801561045957600080fd5b5061028d60085481565b34801561046f57600080fd5b5061027661047e366004611919565b610ce3565b34801561048f57600080fd5b5061028d60095481565b3480156104a557600080fd5b506102766104b436600461189d565b610d79565b3480156104c557600080fd5b506102116104d4366004611a02565b610db3565b3480156104e557600080fd5b506101e76104f436600461182e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561052e57600080fd5b5061027661053d366004611813565b610e38565b34801561054e57600080fd5b5061027661055d366004611a02565b610ed0565b60006001600160e01b031982166380ac58cd60e01b148061059357506001600160e01b03198216635b5e139f60e01b145b806105ae57506001600160e01b0319821663780e9d6360e01b145b806105c957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105de90611b89565b80601f016020809104026020016040519081016040528092919081815260200182805461060a90611b89565b80156106575780601f1061062c57610100808354040283529160200191610657565b820191906000526020600020905b81548152906001019060200180831161063a57829003601f168201915b5050505050905090565b600061066c82610eff565b610689576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106b082610c3d565b9050806001600160a01b0316836001600160a01b031614156106e55760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610705575061070381336104f4565b155b15610723576040516367d9dca160e11b815260040160405180910390fd5b61072e838383610f33565b505050565b6000546001600160801b03600160801b82048116918116919091031690565b61072e838383610f8f565b600061076883610c4f565b8210610787576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b8381101561085457600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161580159282019290925290610800575061084c565b80516001600160a01b03161561081557805192505b876001600160a01b0316836001600160a01b0316141561084a5786841415610843575093506105c992505050565b6001909301925b505b600101610798565b50600080fd5b6007546001600160a01b0316331461088d5760405162461bcd60e51b815260040161088490611ac6565b60405180910390fd5b600c55565b6007546001600160a01b031633146108bc5760405162461bcd60e51b815260040161088490611ac6565b604051600090339047908381818185875af1925050503d80600081146108fe576040519150601f19603f3d011682016040523d82523d6000602084013e610903565b606091505b50509050806109475760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610884565b50565b61072e83838360405180602001604052806000815250610d79565b600080546001600160801b031681805b828110156109f657600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906109ed57858314156109e65750949350505050565b6001909201915b50600101610975565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610a3a5760405162461bcd60e51b815260040161088490611ac6565b8051610a4d90600d9060208401906116e8565b5050565b42600c541115610a945760405162461bcd60e51b815260206004820152600e60248201526d2737ba1039ba30b93a103cb2ba1760911b6044820152606401610884565b80600954600082118015610aa85750808211155b610aea5760405162461bcd60e51b815260206004820152601360248201527227bb32b91036b0bc34b6bab6903634b6b4ba1760691b6044820152606401610884565b82600b5481610af7610733565b610b019190611afb565b1115610b465760405162461bcd60e51b815260206004820152601460248201527327bb32b91036b0bc34b6bab69039bab838363c9760611b6044820152606401610884565b6000600a5485610b54610733565b610b5e9190611afb565b11610b67575060005b600a54610b72610733565b108015610b925750600a5485610b86610733565b610b909190611afb565b115b15610bc757600854600a5486610ba6610733565b610bb09190611afb565b610bba9190611b46565b610bc49190611b27565b90505b600a54610bd2610733565b10610be757600854610be49086611b27565b90505b80341015610c2c5760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b2b73a10333ab732399760711b6044820152606401610884565b610c3633866111ab565b5050505050565b6000610c48826111c5565b5192915050565b60006001600160a01b038216610c78576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610cc85760405162461bcd60e51b815260040161088490611ac6565b610cd260006112e9565b565b6060600280546105de90611b89565b6001600160a01b038216331415610d0d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d84848484610f8f565b610d908484848461133b565b610dad576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610dbe82610eff565b610ddb57604051630a14c4b560e41b815260040160405180910390fd5b6000610de561144a565b9050805160001415610e065760405180602001604052806000815250610e31565b80610e1084611459565b604051602001610e21929190611a47565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610e625760405162461bcd60e51b815260040161088490611ac6565b6001600160a01b038116610ec75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610884565b610947816112e9565b6007546001600160a01b03163314610efa5760405162461bcd60e51b815260040161088490611ac6565b600855565b600080546001600160801b0316821080156105c9575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f9a826111c5565b80519091506000906001600160a01b0316336001600160a01b03161480610fc857508151610fc890336104f4565b80610fe3575033610fd884610661565b6001600160a01b0316145b90508061100357604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146110385760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661105f57604051633a954ecd60e21b815260040160405180910390fd5b61106f6000848460000151610f33565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611164576000546001600160801b0316811015611164578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c36565b610a4d828260405180602001604052806000815250611557565b60408051606081018252600080825260208201819052918101829052905482906001600160801b03168110156112d057600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906112ce5780516001600160a01b031615611264579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156112c9579392505050565b611264565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561143e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061137f903390899088908890600401611a76565b602060405180830381600087803b15801561139957600080fd5b505af19250505080156113c9575060408051601f3d908101601f191682019092526113c69181019061199c565b60015b611424573d8080156113f7576040519150601f19603f3d011682016040523d82523d6000602084013e6113fc565b606091505b50805161141c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611442565b5060015b949350505050565b6060600d80546105de90611b89565b60608161147d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114a7578061149181611bc4565b91506114a09050600a83611b13565b9150611481565b60008167ffffffffffffffff8111156114c2576114c2611c35565b6040519080825280601f01601f1916602001820160405280156114ec576020820181803683370190505b5090505b841561144257611501600183611b46565b915061150e600a86611bdf565b611519906030611afb565b60f81b81838151811061152e5761152e611c1f565b60200101906001600160f81b031916908160001a905350611550600a86611b13565b94506114f0565b61072e83838360016000546001600160801b03166001600160a01b03851661159157604051622e076360e81b815260040160405180910390fd5b836115af5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b0319811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156116c25760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156116985750611696600088848861133b565b155b156116b6576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611641565b50600080546001600160801b0319166001600160801b0392909216919091179055610c36565b8280546116f490611b89565b90600052602060002090601f016020900481019282611716576000855561175c565b82601f1061172f57805160ff191683800117855561175c565b8280016001018555821561175c579182015b8281111561175c578251825591602001919060010190611741565b5061176892915061176c565b5090565b5b80821115611768576000815560010161176d565b600067ffffffffffffffff8084111561179c5761179c611c35565b604051601f8501601f19908116603f011681019082821181831017156117c4576117c4611c35565b816040528093508581528686860111156117dd57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461180e57600080fd5b919050565b60006020828403121561182557600080fd5b610e31826117f7565b6000806040838503121561184157600080fd5b61184a836117f7565b9150611858602084016117f7565b90509250929050565b60008060006060848603121561187657600080fd5b61187f846117f7565b925061188d602085016117f7565b9150604084013590509250925092565b600080600080608085870312156118b357600080fd5b6118bc856117f7565b93506118ca602086016117f7565b925060408501359150606085013567ffffffffffffffff8111156118ed57600080fd5b8501601f810187136118fe57600080fd5b61190d87823560208401611781565b91505092959194509250565b6000806040838503121561192c57600080fd5b611935836117f7565b91506020830135801515811461194a57600080fd5b809150509250929050565b6000806040838503121561196857600080fd5b611971836117f7565b946020939093013593505050565b60006020828403121561199157600080fd5b8135610e3181611c4b565b6000602082840312156119ae57600080fd5b8151610e3181611c4b565b6000602082840312156119cb57600080fd5b813567ffffffffffffffff8111156119e257600080fd5b8201601f810184136119f357600080fd5b61144284823560208401611781565b600060208284031215611a1457600080fd5b5035919050565b60008151808452611a33816020860160208601611b5d565b601f01601f19169290920160200192915050565b60008351611a59818460208801611b5d565b835190830190611a6d818360208801611b5d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611aa990830184611a1b565b9695505050505050565b602081526000610e316020830184611a1b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611b0e57611b0e611bf3565b500190565b600082611b2257611b22611c09565b500490565b6000816000190483118215151615611b4157611b41611bf3565b500290565b600082821015611b5857611b58611bf3565b500390565b60005b83811015611b78578181015183820152602001611b60565b83811115610dad5750506000910152565b600181811c90821680611b9d57607f821691505b60208210811415611bbe57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611bd857611bd8611bf3565b5060010190565b600082611bee57611bee611c09565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461094757600080fdfea26469706673582212203462d92a276b9caf9cbd907a584093e388475bfb333e750efede15fd1d6a70c364736f6c63430008070033

Deployed Bytecode Sourcemap

114:2282:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6201:372:4;;;;;;;;;;-1:-1:-1;6201:372:4;;;;;:::i;:::-;;:::i;:::-;;;5856:14:13;;5849:22;5831:41;;5819:2;5804:18;6201:372:4;;;;;;;;8811:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;10314:204::-;;;;;;;;;;-1:-1:-1;10314:204:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5154:32:13;;;5136:51;;5124:2;5109:18;10314:204:4;4990:203:13;9877:371:4;;;;;;;;;;-1:-1:-1;9877:371:4;;;;;:::i;:::-;;:::i;:::-;;3438:280;;;;;;;;;;;;;:::i;:::-;;;8753:25:13;;;8741:2;8726:18;3438:280:4;8607:177:13;330:28:12;;;;;;;;;;;;;;;;11171:170:4;;;;;;;;;;-1:-1:-1;11171:170:4;;;;;:::i;:::-;;:::i;287:36:12:-;;;;;;;;;;;;;;;;5024:1105:4;;;;;;;;;;-1:-1:-1;5024:1105:4;;;;;:::i;:::-;;:::i;244:36:12:-;;;;;;;;;;;;;;;;2115:95;;;;;;;;;;-1:-1:-1;2115:95:12;;;;;:::i;:::-;;:::i;2220:173::-;;;;;;;;;;;;;:::i;11412:185:4:-;;;;;;;;;;-1:-1:-1;11412:185:4;;;;;:::i;:::-;;:::i;4011:713::-;;;;;;;;;;-1:-1:-1;4011:713:4;;;;;:::i;:::-;;:::i;1791:100:12:-;;;;;;;;;;-1:-1:-1;1791:100:12;;;;;:::i;:::-;;:::i;1065:718::-;;;;;;:::i;:::-;;:::i;8620:124:4:-;;;;;;;;;;-1:-1:-1;8620:124:4;;;;;:::i;:::-;;:::i;6637:206::-;;;;;;;;;;-1:-1:-1;6637:206:4;;;;;:::i;:::-;;:::i;1620:92:10:-;;;;;;;;;;;;;:::i;988:85::-;;;;;;;;;;-1:-1:-1;1060:6:10;;-1:-1:-1;;;;;1060:6:10;988:85;;8980:104:4;;;;;;;;;;;;;:::i;161:33:12:-;;;;;;;;;;;;;;;;10590:279:4;;;;;;;;;;-1:-1:-1;10590:279:4;;;;;:::i;:::-;;:::i;201:36:12:-;;;;;;;;;;;;;;;;11668:342:4;;;;;;;;;;-1:-1:-1;11668:342:4;;;;;:::i;:::-;;:::i;9155:318::-;;;;;;;;;;-1:-1:-1;9155:318:4;;;;;:::i;:::-;;:::i;10940:164::-;;;;;;;;;;-1:-1:-1;10940:164:4;;;;;:::i;:::-;-1:-1:-1;;;;;11061:25:4;;;11037:4;11061:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;10940:164;1861:223:10;;;;;;;;;;-1:-1:-1;1861:223:10;;;;;:::i;:::-;;:::i;2017:90:12:-;;;;;;;;;;-1:-1:-1;2017:90:12;;;;;:::i;:::-;;:::i;6201:372:4:-;6303:4;-1:-1:-1;;;;;;6340:40:4;;-1:-1:-1;;;6340:40:4;;:105;;-1:-1:-1;;;;;;;6397:48:4;;-1:-1:-1;;;6397:48:4;6340:105;:172;;;-1:-1:-1;;;;;;;6462:50:4;;-1:-1:-1;;;6462:50:4;6340:172;:225;;;-1:-1:-1;;;;;;;;;;915:40:3;;;6529:36:4;6320:245;6201:372;-1:-1:-1;;6201:372:4:o;8811:100::-;8865:13;8898:5;8891:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8811:100;:::o;10314:204::-;10382:7;10407:16;10415:7;10407;:16::i;:::-;10402:64;;10432:34;;-1:-1:-1;;;10432:34:4;;;;;;;;;;;10402:64;-1:-1:-1;10486:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;10486:24:4;;10314:204::o;9877:371::-;9950:13;9966:24;9982:7;9966:15;:24::i;:::-;9950:40;;10011:5;-1:-1:-1;;;;;10005:11:4;:2;-1:-1:-1;;;;;10005:11:4;;10001:48;;;10025:24;;-1:-1:-1;;;10025:24:4;;;;;;;;;;;10001:48;666:10:2;-1:-1:-1;;;;;10066:21:4;;;;;;:63;;-1:-1:-1;10092:37:4;10109:5;666:10:2;10940:164:4;:::i;10092:37::-;10091:38;10066:63;10062:138;;;10153:35;;-1:-1:-1;;;10153:35:4;;;;;;;;;;;10062:138;10212:28;10221:2;10225:7;10234:5;10212:8;:28::i;:::-;9939:309;9877:371;;:::o;3438:280::-;3491:7;3683:12;-1:-1:-1;;;;;;;;3683:12:4;;;;3667:13;;;:28;;;;3660:35;;3438:280::o;11171:170::-;11305:28;11315:4;11321:2;11325:7;11305:9;:28::i;5024:1105::-;5113:7;5146:16;5156:5;5146:9;:16::i;:::-;5137:5;:25;5133:61;;5171:23;;-1:-1:-1;;;5171:23:4;;;;;;;;;;;5133:61;5205:22;5230:13;;-1:-1:-1;;;;;5230:13:4;;5205:22;;5480:557;5500:14;5496:1;:18;5480:557;;;5540:31;5574:14;;;:11;:14;;;;;;;;;5540:48;;;;;;;;;-1:-1:-1;;;;;5540:48:4;;;;-1:-1:-1;;;5540:48:4;;;;;;;;;;;-1:-1:-1;;;5540:48:4;;;;;;;;;;;;;;;;5607:73;;5652:8;;;5607:73;5702:14;;-1:-1:-1;;;;;5702:28:4;;5698:111;;5775:14;;;-1:-1:-1;5698:111:4;5852:5;-1:-1:-1;;;;;5831:26:4;:17;-1:-1:-1;;;;;5831:26:4;;5827:195;;;5901:5;5886:11;:20;5882:85;;;-1:-1:-1;5942:1:4;-1:-1:-1;5935:8:4;;-1:-1:-1;;;5935:8:4;5882:85;5989:13;;;;;5827:195;5521:516;5480:557;5516:3;;5480:557;;;;6113:8;;;2115:95:12;1060:6:10;;-1:-1:-1;;;;;1060:6:10;666:10:2;1200:23:10;1192:68;;;;-1:-1:-1;;;1192:68:10;;;;;;;:::i;:::-;;;;;;;;;2181:13:12::1;:21:::0;2115:95::o;2220:173::-;1060:6:10;;-1:-1:-1;;;;;1060:6:10;666:10:2;1200:23:10;1192:68;;;;-1:-1:-1;;;1192:68:10;;;;;;;:::i;:::-;2289:49:12::1;::::0;2271:12:::1;::::0;2289:10:::1;::::0;2312:21:::1;::::0;2271:12;2289:49;2271:12;2289:49;2312:21;2289:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2270:68;;;2357:7;2349:36;;;::::0;-1:-1:-1;;;2349:36:12;;8464:2:13;2349:36:12::1;::::0;::::1;8446:21:13::0;8503:2;8483:18;;;8476:30;-1:-1:-1;;;8522:18:13;;;8515:46;8578:18;;2349:36:12::1;8262:340:13::0;2349:36:12::1;2259:134;2220:173::o:0;11412:185:4:-;11550:39;11567:4;11573:2;11577:7;11550:39;;;;;;;;;;;;:16;:39::i;4011:713::-;4078:7;4123:13;;-1:-1:-1;;;;;4123:13:4;4078:7;;4337:328;4357:14;4353:1;:18;4337:328;;;4397:31;4431:14;;;:11;:14;;;;;;;;;4397:48;;;;;;;;;-1:-1:-1;;;;;4397:48:4;;;;-1:-1:-1;;;4397:48:4;;;;;;;;;;;-1:-1:-1;;;4397:48:4;;;;;;;;;;;;;;4464:186;;4529:5;4514:11;:20;4510:85;;;-1:-1:-1;4570:1:4;4011:713;-1:-1:-1;;;;4011:713:4:o;4510:85::-;4617:13;;;;;4464:186;-1:-1:-1;4373:3:4;;4337:328;;;;4693:23;;-1:-1:-1;;;4693:23:4;;;;;;;;;;;1791:100:12;1060:6:10;;-1:-1:-1;;;;;1060:6:10;666:10:2;1200:23:10;1192:68;;;;-1:-1:-1;;;1192:68:10;;;;;;;:::i;:::-;1865:18:12;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;1791:100:::0;:::o;1065:718::-;980:15;963:13;;:32;;941:96;;;;-1:-1:-1;;;941:96:12;;7063:2:13;941:96:12;;;7045:21:13;7102:2;7082:18;;;7075:30;-1:-1:-1;;;7121:18:13;;;7114:44;7175:18;;941:96:12;6861:338:13;941:96:12;1185:9:::1;1195:16;;805:1;793:9;:13;:38;;;;;824:7;811:9;:20;;793:38;771:107;;;::::0;-1:-1:-1;;;771:107:12;;8116:2:13;771:107:12::1;::::0;::::1;8098:21:13::0;8155:2;8135:18;;;8128:30;-1:-1:-1;;;8174:18:13;;;8167:49;8233:18;;771:107:12::1;7914:343:13::0;771:107:12::1;1237:9:::2;606:14;;593:9;577:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:43;;555:113;;;::::0;-1:-1:-1;;;555:113:12;;7406:2:13;555:113:12::2;::::0;::::2;7388:21:13::0;7445:2;7425:18;;;7418:30;-1:-1:-1;;;7464:18:13;;;7457:50;7524:18;;555:113:12::2;7204:344:13::0;555:113:12::2;1265:18:::3;1326:14;;1313:9;1297:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:43;1294:84;;-1:-1:-1::0;1365:1:12::3;1294:84;1407:14;;1391:13;:11;:13::i;:::-;:30;:78;;;;;1454:14;;1442:9;1426:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:42;1391:78;1388:171;;;1542:5;;1524:14;;1512:9;1496:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:42;;;;:::i;:::-;1495:52;;;;:::i;:::-;1482:65;;1388:171;1589:14;;1572:13;:11;:13::i;:::-;:31;1569:89;;1641:5;::::0;1629:17:::3;::::0;:9;:17:::3;:::i;:::-;1616:30;;1569:89;1689:10;1676:9;:23;;1668:54;;;::::0;-1:-1:-1;;;1668:54:12;;6716:2:13;1668:54:12::3;::::0;::::3;6698:21:13::0;6755:2;6735:18;;;6728:30;-1:-1:-1;;;6774:18:13;;;6767:48;6832:18;;1668:54:12::3;6514:342:13::0;1668:54:12::3;1743:32;1753:10;1765:9;1743;:32::i;:::-;1254:529;889:1:::2;1048::::1;;1065:718:::0;:::o;8620:124:4:-;8684:7;8711:20;8723:7;8711:11;:20::i;:::-;:25;;8620:124;-1:-1:-1;;8620:124:4:o;6637:206::-;6701:7;-1:-1:-1;;;;;6725:19:4;;6721:60;;6753:28;;-1:-1:-1;;;6753:28:4;;;;;;;;;;;6721:60;-1:-1:-1;;;;;;6807:19:4;;;;;:12;:19;;;;;:27;;;;6637:206::o;1620:92:10:-;1060:6;;-1:-1:-1;;;;;1060:6:10;666:10:2;1200:23:10;1192:68;;;;-1:-1:-1;;;1192:68:10;;;;;;;:::i;:::-;1684:21:::1;1702:1;1684:9;:21::i;:::-;1620:92::o:0;8980:104:4:-;9036:13;9069:7;9062:14;;;;;:::i;10590:279::-;-1:-1:-1;;;;;10681:24:4;;666:10:2;10681:24:4;10677:54;;;10714:17;;-1:-1:-1;;;10714:17:4;;;;;;;;;;;10677:54;666:10:2;10744:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;10744:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;10744:53:4;;;;;;;;;;10813:48;;5831:41:13;;;10744:42:4;;666:10:2;10813:48:4;;5804:18:13;10813:48:4;;;;;;;10590:279;;:::o;11668:342::-;11835:28;11845:4;11851:2;11855:7;11835:9;:28::i;:::-;11879:48;11902:4;11908:2;11912:7;11921:5;11879:22;:48::i;:::-;11874:129;;11951:40;;-1:-1:-1;;;11951:40:4;;;;;;;;;;;11874:129;11668:342;;;;:::o;9155:318::-;9228:13;9259:16;9267:7;9259;:16::i;:::-;9254:59;;9284:29;;-1:-1:-1;;;9284:29:4;;;;;;;;;;;9254:59;9326:21;9350:10;:8;:10::i;:::-;9326:34;;9384:7;9378:21;9403:1;9378:26;;:87;;;;;;;;;;;;;;;;;9431:7;9440:18;:7;:16;:18::i;:::-;9414:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;9378:87;9371:94;9155:318;-1:-1:-1;;;9155:318:4:o;1861:223:10:-;1060:6;;-1:-1:-1;;;;;1060:6:10;666:10:2;1200:23:10;1192:68;;;;-1:-1:-1;;;1192:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;1962:22:10;::::1;1941:107;;;::::0;-1:-1:-1;;;1941:107:10;;6309:2:13;1941:107:10::1;::::0;::::1;6291:21:13::0;6348:2;6328:18;;;6321:30;6387:34;6367:18;;;6360:62;-1:-1:-1;;;6438:18:13;;;6431:36;6484:19;;1941:107:10::1;6107:402:13::0;1941:107:10::1;2058:19;2068:8;2058:9;:19::i;2017:90:12:-:0;1060:6:10;;-1:-1:-1;;;;;1060:6:10;666:10:2;1200:23:10;1192:68;;;;-1:-1:-1;;;1192:68:10;;;;;;;:::i;:::-;2085:5:12::1;:14:::0;2017:90::o;12265:144:4:-;12322:4;12356:13;;-1:-1:-1;;;;;12356:13:4;12346:23;;:55;;;;-1:-1:-1;;12374:20:4;;;;:11;:20;;;;;:27;-1:-1:-1;;;12374:27:4;;;;12373:28;;12265:144::o;19481:196::-;19596:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;19596:29:4;-1:-1:-1;;;;;19596:29:4;;;;;;;;;19641:28;;19596:24;;19641:28;;;;;;;19481:196;;;:::o;14982:2112::-;15097:35;15135:20;15147:7;15135:11;:20::i;:::-;15210:18;;15097:58;;-1:-1:-1;15168:22:4;;-1:-1:-1;;;;;15194:34:4;666:10:2;-1:-1:-1;;;;;15194:34:4;;:101;;;-1:-1:-1;15262:18:4;;15245:50;;666:10:2;10940:164:4;:::i;15245:50::-;15194:154;;;-1:-1:-1;666:10:2;15312:20:4;15324:7;15312:11;:20::i;:::-;-1:-1:-1;;;;;15312:36:4;;15194:154;15168:181;;15367:17;15362:66;;15393:35;;-1:-1:-1;;;15393:35:4;;;;;;;;;;;15362:66;15465:4;-1:-1:-1;;;;;15443:26:4;:13;:18;;;-1:-1:-1;;;;;15443:26:4;;15439:67;;15478:28;;-1:-1:-1;;;15478:28:4;;;;;;;;;;;15439:67;-1:-1:-1;;;;;15521:16:4;;15517:52;;15546:23;;-1:-1:-1;;;15546:23:4;;;;;;;;;;;15517:52;15690:49;15707:1;15711:7;15720:13;:18;;;15690:8;:49::i;:::-;-1:-1:-1;;;;;16035:18:4;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;16035:31:4;;;;;;;-1:-1:-1;;16035:31:4;;;;;;;16081:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;16081:29:4;;;;;;;;;;;16127:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;16172:61:4;;;;-1:-1:-1;;;16217:15:4;16172:61;;;;;;;;;;;16507:11;;;16537:24;;;;;:29;16507:11;;16537:29;16533:445;;16762:13;;-1:-1:-1;;;;;16762:13:4;16748:27;;16744:219;;;16832:18;;;16800:24;;;:11;:24;;;;;;;;:50;;16915:28;;;;16873:70;;-1:-1:-1;;;16873:70:4;-1:-1:-1;;;;;;16873:70:4;;;-1:-1:-1;;;;;16800:50:4;;;16873:70;;;;;;;16744:219;16010:979;17025:7;17021:2;-1:-1:-1;;;;;17006:27:4;17015:4;-1:-1:-1;;;;;17006:27:4;;;;;;;;;;;17044:42;11668:342;12417:104;12486:27;12496:2;12500:8;12486:27;;;;;;;;;;;;:9;:27::i;7475:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;7641:13:4;;7585:7;;-1:-1:-1;;;;;7641:13:4;7634:20;;7630:861;;;7675:31;7709:17;;;:11;:17;;;;;;;;;7675:51;;;;;;;;;-1:-1:-1;;;;;7675:51:4;;;;-1:-1:-1;;;7675:51:4;;;;;;;;;;;-1:-1:-1;;;7675:51:4;;;;;;;;;;;;;;7745:731;;7795:14;;-1:-1:-1;;;;;7795:28:4;;7791:101;;7859:9;7475:1083;-1:-1:-1;;;7475:1083:4:o;7791:101::-;-1:-1:-1;;;8236:6:4;8281:17;;;;:11;:17;;;;;;;;;8269:29;;;;;;;;;-1:-1:-1;;;;;8269:29:4;;;;;-1:-1:-1;;;8269:29:4;;;;;;;;;;;-1:-1:-1;;;8269:29:4;;;;;;;;;;;;;8329:28;8325:109;;8397:9;7475:1083;-1:-1:-1;;;7475:1083:4:o;8325:109::-;8196:261;;;7656:835;7630:861;8519:31;;-1:-1:-1;;;8519:31:4;;;;;;;;;;;2090:169:10;2164:6;;;-1:-1:-1;;;;;2180:17:10;;;-1:-1:-1;;;;;;2180:17:10;;;;;;;2212:40;;2164:6;;;2180:17;2164:6;;2212:40;;2145:16;;2212:40;2135:124;2090:169;:::o;20242:790:4:-;20397:4;-1:-1:-1;;;;;20418:13:4;;1034:20:0;1080:8;20414:611:4;;20454:72;;-1:-1:-1;;;20454:72:4;;-1:-1:-1;;;;;20454:36:4;;;;;:72;;666:10:2;;20505:4:4;;20511:7;;20520:5;;20454:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20454:72:4;;;;;;;;-1:-1:-1;;20454:72:4;;;;;;;;;;;;:::i;:::-;;;20450:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20700:13:4;;20696:259;;20750:40;;-1:-1:-1;;;20750:40:4;;;;;;;;;;;20696:259;20905:6;20899:13;20890:6;20886:2;20882:15;20875:38;20450:520;-1:-1:-1;;;;;;20577:55:4;-1:-1:-1;;;20577:55:4;;-1:-1:-1;20570:62:4;;20414:611;-1:-1:-1;21009:4:4;20414:611;20242:790;;;;;;:::o;1899:108:12:-;1959:13;1992:7;1985:14;;;;;:::i;275:703:11:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:11;;;;;;;;;;;;-1:-1:-1;;;574:10:11;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:11;;-1:-1:-1;720:2:11;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:11;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:11;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:11;;;;;;;;-1:-1:-1;919:11:11;928:2;919:11;;:::i;:::-;;;791:150;;12884:163:4;13007:32;13013:2;13017:8;13027:5;13034:4;13445:20;13468:13;-1:-1:-1;;;;;13468:13:4;-1:-1:-1;;;;;13496:16:4;;13492:48;;13521:19;;-1:-1:-1;;;13521:19:4;;;;;;;;;;;13492:48;13555:13;13551:44;;13577:18;;-1:-1:-1;;;13577:18:4;;;;;;;;;;;13551:44;-1:-1:-1;;;;;13947:16:4;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;14006:49:4;;13947:44;;;;;;;;14006:49;;;;-1:-1:-1;;13947:44:4;;;;;;14006:49;;;;;;;;;;;;;;;;14072:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;14122:66:4;;;;-1:-1:-1;;;14172:15:4;14122:66;;;;;;;;;;;14072:25;;14257:328;14277:8;14273:1;:12;14257:328;;;14316:38;;14341:12;;-1:-1:-1;;;;;14316:38:4;;;14333:1;;14316:38;;14333:1;;14316:38;14377:4;:68;;;;;14386:59;14417:1;14421:2;14425:12;14439:5;14386:22;:59::i;:::-;14385:60;14377:68;14373:164;;;14477:40;;-1:-1:-1;;;14477:40:4;;;;;;;;;;;14373:164;14555:14;;;;;14287:3;14257:328;;;-1:-1:-1;14601:13:4;:37;;-1:-1:-1;;;;;;14601:37:4;-1:-1:-1;;;;;14601:37:4;;;;;;;;;;14660:60;11668:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:13;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:13;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:13;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:13;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:13:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:13;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:13;;3858:180;-1:-1:-1;3858:180:13:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:13;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:13:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:13:o;5198:488::-;-1:-1:-1;;;;;5467:15:13;;;5449:34;;5519:15;;5514:2;5499:18;;5492:43;5566:2;5551:18;;5544:34;;;5614:3;5609:2;5594:18;;5587:31;;;5392:4;;5635:45;;5660:19;;5652:6;5635:45;:::i;:::-;5627:53;5198:488;-1:-1:-1;;;;;;5198:488:13:o;5883:219::-;6032:2;6021:9;6014:21;5995:4;6052:44;6092:2;6081:9;6077:18;6069:6;6052:44;:::i;7553:356::-;7755:2;7737:21;;;7774:18;;;7767:30;7833:34;7828:2;7813:18;;7806:62;7900:2;7885:18;;7553:356::o;8789:128::-;8829:3;8860:1;8856:6;8853:1;8850:13;8847:39;;;8866:18;;:::i;:::-;-1:-1:-1;8902:9:13;;8789:128::o;8922:120::-;8962:1;8988;8978:35;;8993:18;;:::i;:::-;-1:-1:-1;9027:9:13;;8922:120::o;9047:168::-;9087:7;9153:1;9149;9145:6;9141:14;9138:1;9135:21;9130:1;9123:9;9116:17;9112:45;9109:71;;;9160:18;;:::i;:::-;-1:-1:-1;9200:9:13;;9047:168::o;9220:125::-;9260:4;9288:1;9285;9282:8;9279:34;;;9293:18;;:::i;:::-;-1:-1:-1;9330:9:13;;9220:125::o;9350:258::-;9422:1;9432:113;9446:6;9443:1;9440:13;9432:113;;;9522:11;;;9516:18;9503:11;;;9496:39;9468:2;9461:10;9432:113;;;9563:6;9560:1;9557:13;9554:48;;;-1:-1:-1;;9598:1:13;9580:16;;9573:27;9350:258::o;9613:380::-;9692:1;9688:12;;;;9735;;;9756:61;;9810:4;9802:6;9798:17;9788:27;;9756:61;9863:2;9855:6;9852:14;9832:18;9829:38;9826:161;;;9909:10;9904:3;9900:20;9897:1;9890:31;9944:4;9941:1;9934:15;9972:4;9969:1;9962:15;9826:161;;9613:380;;;:::o;9998:135::-;10037:3;-1:-1:-1;;10058:17:13;;10055:43;;;10078:18;;:::i;:::-;-1:-1:-1;10125:1:13;10114:13;;9998:135::o;10138:112::-;10170:1;10196;10186:35;;10201:18;;:::i;:::-;-1:-1:-1;10235:9:13;;10138:112::o;10255:127::-;10316:10;10311:3;10307:20;10304:1;10297:31;10347:4;10344:1;10337:15;10371:4;10368:1;10361:15;10387:127;10448:10;10443:3;10439:20;10436:1;10429:31;10479:4;10476:1;10469:15;10503:4;10500:1;10493:15;10519:127;10580:10;10575:3;10571:20;10568:1;10561:31;10611:4;10608:1;10601:15;10635:4;10632:1;10625:15;10651:127;10712:10;10707:3;10703:20;10700:1;10693:31;10743:4;10740:1;10733:15;10767:4;10764:1;10757:15;10783:131;-1:-1:-1;;;;;;10857:32:13;;10847:43;;10837:71;;10904:1;10901;10894:12

Swarm Source

ipfs://3462d92a276b9caf9cbd907a584093e388475bfb333e750efede15fd1d6a70c3
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.