ETH Price: $3,478.43 (+1.74%)
Gas: 10 Gwei

Token

DinoWorld (DW)
 

Overview

Max Total Supply

2,610 DW

Holders

761

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
pablopa.eth
Balance
3 DW
0x158cb8db071f8565794c1ac689ad8f13b9b7e744
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:
DinoWorldNFT

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-01
*/

/**
 *Submitted for verification at Etherscan.io on 2022-07-20
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    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;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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);

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // 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_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren"t clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

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

    /**
     * @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, _toString(tokenId))) : "";
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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-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 {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(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
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, "")`.
     */
    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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) 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` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot"s value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren"t clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren"t clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender"s balance is impossible because we check for
        // ownership above and the recipient"s balance can"t realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot"s address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender"s balance is impossible because we check for
        // ownership above and the recipient"s balance can"t realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot"s address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @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 {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of "0".
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}




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);
    }
}




pragma solidity ^0.8.0;



contract DinoWorldNFT is ERC721A, Ownable {
	using Strings for uint;

    uint public constant MAX_PER_WALLET = 3;
	uint public maxSupply = 2333;

	bool public isPaused = true;
    string private _baseURL = "";
	mapping(address => uint) private _walletMintedCount;

	constructor()
    // Name
	ERC721A("DinoWorld", "DW") {
    }

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

	function _startTokenId() internal pure override returns (uint) {
		return 1;
	}

	function contractURI() public pure returns (string memory) {
		return "";
	}

    function mintedCount(address owner) external view returns (uint) {
        return _walletMintedCount[owner];
    }

    function setBaseUri(string memory url) external onlyOwner {
	    _baseURL = url;
	}

	function start() external onlyOwner {
	    isPaused = false;
	}

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

	function devMint(address to, uint count) external onlyOwner {
		require(
			_totalMinted() + count <= maxSupply,
			"Exceeds max supply"
		);
		_safeMint(to, count);
	}

	function setMaxSupply(uint newMaxSupply) external onlyOwner {
		maxSupply = newMaxSupply;
	}

	function tokenURI(uint tokenId)
		public
		view
		override
		returns (string memory)
	{
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return bytes(_baseURI()).length > 0 
            ? string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json"))
            : "";
	}

	function mint(uint count,uint signature) external payable {
        //uint count=MAX_PER_WALLET;
		require(!isPaused, "Sales are off");
        require(_totalMinted() + count <= maxSupply,"Exceeds max supply");
        //require(count <= MAX_PER_WALLET,"Exceeds max per transaction");
        require(_walletMintedCount[msg.sender] + count <= MAX_PER_WALLET * 3,"Exceeds max per wallet");
        require(signature<=block.timestamp && signature >= block.timestamp-400,"Bad Signature!");
		_walletMintedCount[msg.sender] += count;
		_safeMint(msg.sender, count);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","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":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"uint256","name":"signature","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","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":"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"}]

61091d600955600a805460ff1916600117905560a060405260006080908152600b906200002d9082620001a9565b503480156200003b57600080fd5b5060405180604001604052806009815260200168111a5b9bd5dbdc9b1960ba1b81525060405180604001604052806002815260200161445760f01b81525081600290816200008a9190620001a9565b506003620000998282620001a9565b5050600160005550620000ac33620000b2565b62000275565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200012f57607f821691505b6020821081036200015057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001a457600081815260208120601f850160051c810160208610156200017f5750805b601f850160051c820191505b81811015620001a0578281556001016200018b565b5050505b505050565b81516001600160401b03811115620001c557620001c562000104565b620001dd81620001d684546200011a565b8462000156565b602080601f831160018114620002155760008415620001fc5750858301515b600019600386901b1c1916600185901b178555620001a0565b600085815260208120601f198616915b82811015620002465788860151825594840194600190910190840162000225565b5085821015620002655787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6118f380620002856000396000f3fe6080604052600436106101b75760003560e01c8063715018a6116100ec578063be9a65551161008a578063e8a3d48511610064578063e8a3d485146104a2578063e985e9c5146104c3578063f2fde38b1461050c578063fddcb5ea1461052c57600080fd5b8063be9a655514610457578063c87b56dd1461046c578063d5abeb011461048c57600080fd5b8063a0bcfc7f116100c6578063a0bcfc7f146103dd578063a22cb465146103fd578063b187bd261461041d578063b88d4fde1461043757600080fd5b8063715018a6146103955780638da5cb5b146103aa57806395d89b41146103c857600080fd5b806323b872dd11610159578063627804af11610133578063627804af146103155780636352211e146103355780636f8b44b01461035557806370a082311461037557600080fd5b806323b872dd146102c05780633ccfd60b146102e057806342842e0e146102f557600080fd5b8063095ea7b311610195578063095ea7b31461024b5780630f2cdd6c1461026d57806318160ddd146102905780631b2ef1ca146102ad57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046112f3565b610562565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105b4565b6040516101e89190611368565b34801561021f57600080fd5b5061023361022e36600461137b565b610646565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b6102663660046113b0565b61068a565b005b34801561027957600080fd5b50610282600381565b6040519081526020016101e8565b34801561029c57600080fd5b506001546000540360001901610282565b61026b6102bb3660046113da565b61072a565b3480156102cc57600080fd5b5061026b6102db3660046113fc565b6108c8565b3480156102ec57600080fd5b5061026b610a61565b34801561030157600080fd5b5061026b6103103660046113fc565b610ac1565b34801561032157600080fd5b5061026b6103303660046113b0565b610ae1565b34801561034157600080fd5b5061023361035036600461137b565b610b51565b34801561036157600080fd5b5061026b61037036600461137b565b610b5c565b34801561038157600080fd5b50610282610390366004611438565b610b69565b3480156103a157600080fd5b5061026b610bb8565b3480156103b657600080fd5b506008546001600160a01b0316610233565b3480156103d457600080fd5b50610206610bcc565b3480156103e957600080fd5b5061026b6103f83660046114df565b610bdb565b34801561040957600080fd5b5061026b610418366004611528565b610bef565b34801561042957600080fd5b50600a546101dc9060ff1681565b34801561044357600080fd5b5061026b610452366004611564565b610c84565b34801561046357600080fd5b5061026b610cce565b34801561047857600080fd5b5061020661048736600461137b565b610ce2565b34801561049857600080fd5b5061028260095481565b3480156104ae57600080fd5b50604080516020810190915260008152610206565b3480156104cf57600080fd5b506101dc6104de3660046115e0565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561051857600080fd5b5061026b610527366004611438565b610dad565b34801561053857600080fd5b50610282610547366004611438565b6001600160a01b03166000908152600c602052604090205490565b60006301ffc9a760e01b6001600160e01b03198316148061059357506380ac58cd60e01b6001600160e01b03198316145b806105ae5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105c390611613565b80601f01602080910402602001604051908101604052809291908181526020018280546105ef90611613565b801561063c5780601f106106115761010080835404028352916020019161063c565b820191906000526020600020905b81548152906001019060200180831161061f57829003601f168201915b5050505050905090565b600061065182610e23565b61066e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061069582610b51565b9050336001600160a01b038216146106ce576106b181336104de565b6106ce576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600a5460ff16156107725760405162461bcd60e51b815260206004820152600d60248201526c29b0b632b99030b9329037b33360991b60448201526064015b60405180910390fd5b600954826107836000546000190190565b61078d9190611663565b11156107d05760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610769565b6107db60038061167b565b336000908152600c60205260409020546107f6908490611663565b111561083d5760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b6044820152606401610769565b42811115801561085857506108546101904261169a565b8110155b6108955760405162461bcd60e51b815260206004820152600e60248201526d426164205369676e61747572652160901b6044820152606401610769565b336000908152600c6020526040812080548492906108b4908490611663565b909155506108c490503383610e58565b5050565b60006108d382610e72565b9050836001600160a01b0316816001600160a01b0316146109065760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176109535761093686336104de565b61095357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661097a57604051633a954ecd60e21b815260040160405180910390fd5b801561098557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610a1757600184016000818152600460205260408120549003610a15576000548114610a155760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610a69610ee8565b604051600090339047908381818185875af1925050503d8060008114610aab576040519150601f19603f3d011682016040523d82523d6000602084013e610ab0565b606091505b5050905080610abe57600080fd5b50565b610adc83838360405180602001604052806000815250610c84565b505050565b610ae9610ee8565b60095481610afa6000546000190190565b610b049190611663565b1115610b475760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610769565b6108c48282610e58565b60006105ae82610e72565b610b64610ee8565b600955565b60006001600160a01b038216610b92576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610bc0610ee8565b610bca6000610f42565b565b6060600380546105c390611613565b610be3610ee8565b600b6108c482826116f7565b336001600160a01b03831603610c185760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c8f8484846108c8565b6001600160a01b0383163b15610cc857610cab84848484610f94565b610cc8576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610cd6610ee8565b600a805460ff19169055565b6060610ced82610e23565b610d515760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610769565b6000610d5b611080565b5111610d7657604051806020016040528060008152506105ae565b610d7e611080565b610d878361108f565b604051602001610d989291906117b7565b60405160208183030381529060405292915050565b610db5610ee8565b6001600160a01b038116610e1a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610769565b610abe81610f42565b600081600111158015610e37575060005482105b80156105ae575050600090815260046020526040902054600160e01b161590565b6108c4828260405180602001604052806000815250611190565b60008180600111610ecf57600054811015610ecf5760008181526004602052604081205490600160e01b82169003610ecd575b80600003610ec6575060001901600081815260046020526040902054610ea5565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610bca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610769565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610fc99033908990889088906004016117f6565b6020604051808303816000875af1925050508015611004575060408051601f3d908101601f1916820190925261100191810190611833565b60015b611062573d808015611032576040519150601f19603f3d011682016040523d82523d6000602084013e611037565b606091505b50805160000361105a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546105c390611613565b6060816000036110b65750506040805180820190915260018152600360fc1b602082015290565b8160005b81156110e057806110ca81611850565b91506110d99050600a8361187f565b91506110ba565b60008167ffffffffffffffff8111156110fb576110fb611453565b6040519080825280601f01601f191660200182016040528015611125576020820181803683370190505b5090505b84156110785761113a60018361169a565b9150611147600a86611893565b611152906030611663565b60f81b818381518110611167576111676118a7565b60200101906001600160f81b031916908160001a905350611189600a8661187f565b9450611129565b61119a83836111fd565b6001600160a01b0383163b15610adc576000548281035b6111c46000868380600101945086610f94565b6111e1576040516368d2bf6b60e11b815260040160405180910390fd5b8181106111b15781600054146111f657600080fd5b5050505050565b6000546001600160a01b03831661122657604051622e076360e81b815260040160405180910390fd5b816000036112475760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106112915760005550505050565b6001600160e01b031981168114610abe57600080fd5b60006020828403121561130557600080fd5b8135610ec6816112dd565b60005b8381101561132b578181015183820152602001611313565b83811115610cc85750506000910152565b60008151808452611354816020860160208601611310565b601f01601f19169290920160200192915050565b602081526000610ec6602083018461133c565b60006020828403121561138d57600080fd5b5035919050565b80356001600160a01b03811681146113ab57600080fd5b919050565b600080604083850312156113c357600080fd5b6113cc83611394565b946020939093013593505050565b600080604083850312156113ed57600080fd5b50508035926020909101359150565b60008060006060848603121561141157600080fd5b61141a84611394565b925061142860208501611394565b9150604084013590509250925092565b60006020828403121561144a57600080fd5b610ec682611394565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561148457611484611453565b604051601f8501601f19908116603f011681019082821181831017156114ac576114ac611453565b816040528093508581528686860111156114c557600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156114f157600080fd5b813567ffffffffffffffff81111561150857600080fd5b8201601f8101841361151957600080fd5b61107884823560208401611469565b6000806040838503121561153b57600080fd5b61154483611394565b91506020830135801515811461155957600080fd5b809150509250929050565b6000806000806080858703121561157a57600080fd5b61158385611394565b935061159160208601611394565b925060408501359150606085013567ffffffffffffffff8111156115b457600080fd5b8501601f810187136115c557600080fd5b6115d487823560208401611469565b91505092959194509250565b600080604083850312156115f357600080fd5b6115fc83611394565b915061160a60208401611394565b90509250929050565b600181811c9082168061162757607f821691505b60208210810361164757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156116765761167661164d565b500190565b60008160001904831182151516156116955761169561164d565b500290565b6000828210156116ac576116ac61164d565b500390565b601f821115610adc57600081815260208120601f850160051c810160208610156116d85750805b601f850160051c820191505b81811015610a59578281556001016116e4565b815167ffffffffffffffff81111561171157611711611453565b6117258161171f8454611613565b846116b1565b602080601f83116001811461175a57600084156117425750858301515b600019600386901b1c1916600185901b178555610a59565b600085815260208120601f198616915b828110156117895788860151825594840194600190910190840161176a565b50858210156117a75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600083516117c9818460208801611310565b8351908301906117dd818360208801611310565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118299083018461133c565b9695505050505050565b60006020828403121561184557600080fd5b8151610ec6816112dd565b6000600182016118625761186261164d565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261188e5761188e611869565b500490565b6000826118a2576118a2611869565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220c4edcc13543ce23fdbe85f85f174f62cda96a759cc99bc0bbf796fa26bece07b64736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c8063715018a6116100ec578063be9a65551161008a578063e8a3d48511610064578063e8a3d485146104a2578063e985e9c5146104c3578063f2fde38b1461050c578063fddcb5ea1461052c57600080fd5b8063be9a655514610457578063c87b56dd1461046c578063d5abeb011461048c57600080fd5b8063a0bcfc7f116100c6578063a0bcfc7f146103dd578063a22cb465146103fd578063b187bd261461041d578063b88d4fde1461043757600080fd5b8063715018a6146103955780638da5cb5b146103aa57806395d89b41146103c857600080fd5b806323b872dd11610159578063627804af11610133578063627804af146103155780636352211e146103355780636f8b44b01461035557806370a082311461037557600080fd5b806323b872dd146102c05780633ccfd60b146102e057806342842e0e146102f557600080fd5b8063095ea7b311610195578063095ea7b31461024b5780630f2cdd6c1461026d57806318160ddd146102905780631b2ef1ca146102ad57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046112f3565b610562565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105b4565b6040516101e89190611368565b34801561021f57600080fd5b5061023361022e36600461137b565b610646565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b6102663660046113b0565b61068a565b005b34801561027957600080fd5b50610282600381565b6040519081526020016101e8565b34801561029c57600080fd5b506001546000540360001901610282565b61026b6102bb3660046113da565b61072a565b3480156102cc57600080fd5b5061026b6102db3660046113fc565b6108c8565b3480156102ec57600080fd5b5061026b610a61565b34801561030157600080fd5b5061026b6103103660046113fc565b610ac1565b34801561032157600080fd5b5061026b6103303660046113b0565b610ae1565b34801561034157600080fd5b5061023361035036600461137b565b610b51565b34801561036157600080fd5b5061026b61037036600461137b565b610b5c565b34801561038157600080fd5b50610282610390366004611438565b610b69565b3480156103a157600080fd5b5061026b610bb8565b3480156103b657600080fd5b506008546001600160a01b0316610233565b3480156103d457600080fd5b50610206610bcc565b3480156103e957600080fd5b5061026b6103f83660046114df565b610bdb565b34801561040957600080fd5b5061026b610418366004611528565b610bef565b34801561042957600080fd5b50600a546101dc9060ff1681565b34801561044357600080fd5b5061026b610452366004611564565b610c84565b34801561046357600080fd5b5061026b610cce565b34801561047857600080fd5b5061020661048736600461137b565b610ce2565b34801561049857600080fd5b5061028260095481565b3480156104ae57600080fd5b50604080516020810190915260008152610206565b3480156104cf57600080fd5b506101dc6104de3660046115e0565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561051857600080fd5b5061026b610527366004611438565b610dad565b34801561053857600080fd5b50610282610547366004611438565b6001600160a01b03166000908152600c602052604090205490565b60006301ffc9a760e01b6001600160e01b03198316148061059357506380ac58cd60e01b6001600160e01b03198316145b806105ae5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105c390611613565b80601f01602080910402602001604051908101604052809291908181526020018280546105ef90611613565b801561063c5780601f106106115761010080835404028352916020019161063c565b820191906000526020600020905b81548152906001019060200180831161061f57829003601f168201915b5050505050905090565b600061065182610e23565b61066e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061069582610b51565b9050336001600160a01b038216146106ce576106b181336104de565b6106ce576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600a5460ff16156107725760405162461bcd60e51b815260206004820152600d60248201526c29b0b632b99030b9329037b33360991b60448201526064015b60405180910390fd5b600954826107836000546000190190565b61078d9190611663565b11156107d05760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610769565b6107db60038061167b565b336000908152600c60205260409020546107f6908490611663565b111561083d5760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b6044820152606401610769565b42811115801561085857506108546101904261169a565b8110155b6108955760405162461bcd60e51b815260206004820152600e60248201526d426164205369676e61747572652160901b6044820152606401610769565b336000908152600c6020526040812080548492906108b4908490611663565b909155506108c490503383610e58565b5050565b60006108d382610e72565b9050836001600160a01b0316816001600160a01b0316146109065760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176109535761093686336104de565b61095357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661097a57604051633a954ecd60e21b815260040160405180910390fd5b801561098557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610a1757600184016000818152600460205260408120549003610a15576000548114610a155760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610a69610ee8565b604051600090339047908381818185875af1925050503d8060008114610aab576040519150601f19603f3d011682016040523d82523d6000602084013e610ab0565b606091505b5050905080610abe57600080fd5b50565b610adc83838360405180602001604052806000815250610c84565b505050565b610ae9610ee8565b60095481610afa6000546000190190565b610b049190611663565b1115610b475760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610769565b6108c48282610e58565b60006105ae82610e72565b610b64610ee8565b600955565b60006001600160a01b038216610b92576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610bc0610ee8565b610bca6000610f42565b565b6060600380546105c390611613565b610be3610ee8565b600b6108c482826116f7565b336001600160a01b03831603610c185760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c8f8484846108c8565b6001600160a01b0383163b15610cc857610cab84848484610f94565b610cc8576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610cd6610ee8565b600a805460ff19169055565b6060610ced82610e23565b610d515760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610769565b6000610d5b611080565b5111610d7657604051806020016040528060008152506105ae565b610d7e611080565b610d878361108f565b604051602001610d989291906117b7565b60405160208183030381529060405292915050565b610db5610ee8565b6001600160a01b038116610e1a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610769565b610abe81610f42565b600081600111158015610e37575060005482105b80156105ae575050600090815260046020526040902054600160e01b161590565b6108c4828260405180602001604052806000815250611190565b60008180600111610ecf57600054811015610ecf5760008181526004602052604081205490600160e01b82169003610ecd575b80600003610ec6575060001901600081815260046020526040902054610ea5565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610bca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610769565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610fc99033908990889088906004016117f6565b6020604051808303816000875af1925050508015611004575060408051601f3d908101601f1916820190925261100191810190611833565b60015b611062573d808015611032576040519150601f19603f3d011682016040523d82523d6000602084013e611037565b606091505b50805160000361105a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546105c390611613565b6060816000036110b65750506040805180820190915260018152600360fc1b602082015290565b8160005b81156110e057806110ca81611850565b91506110d99050600a8361187f565b91506110ba565b60008167ffffffffffffffff8111156110fb576110fb611453565b6040519080825280601f01601f191660200182016040528015611125576020820181803683370190505b5090505b84156110785761113a60018361169a565b9150611147600a86611893565b611152906030611663565b60f81b818381518110611167576111676118a7565b60200101906001600160f81b031916908160001a905350611189600a8661187f565b9450611129565b61119a83836111fd565b6001600160a01b0383163b15610adc576000548281035b6111c46000868380600101945086610f94565b6111e1576040516368d2bf6b60e11b815260040160405180910390fd5b8181106111b15781600054146111f657600080fd5b5050505050565b6000546001600160a01b03831661122657604051622e076360e81b815260040160405180910390fd5b816000036112475760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106112915760005550505050565b6001600160e01b031981168114610abe57600080fd5b60006020828403121561130557600080fd5b8135610ec6816112dd565b60005b8381101561132b578181015183820152602001611313565b83811115610cc85750506000910152565b60008151808452611354816020860160208601611310565b601f01601f19169290920160200192915050565b602081526000610ec6602083018461133c565b60006020828403121561138d57600080fd5b5035919050565b80356001600160a01b03811681146113ab57600080fd5b919050565b600080604083850312156113c357600080fd5b6113cc83611394565b946020939093013593505050565b600080604083850312156113ed57600080fd5b50508035926020909101359150565b60008060006060848603121561141157600080fd5b61141a84611394565b925061142860208501611394565b9150604084013590509250925092565b60006020828403121561144a57600080fd5b610ec682611394565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561148457611484611453565b604051601f8501601f19908116603f011681019082821181831017156114ac576114ac611453565b816040528093508581528686860111156114c557600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156114f157600080fd5b813567ffffffffffffffff81111561150857600080fd5b8201601f8101841361151957600080fd5b61107884823560208401611469565b6000806040838503121561153b57600080fd5b61154483611394565b91506020830135801515811461155957600080fd5b809150509250929050565b6000806000806080858703121561157a57600080fd5b61158385611394565b935061159160208601611394565b925060408501359150606085013567ffffffffffffffff8111156115b457600080fd5b8501601f810187136115c557600080fd5b6115d487823560208401611469565b91505092959194509250565b600080604083850312156115f357600080fd5b6115fc83611394565b915061160a60208401611394565b90509250929050565b600181811c9082168061162757607f821691505b60208210810361164757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156116765761167661164d565b500190565b60008160001904831182151516156116955761169561164d565b500290565b6000828210156116ac576116ac61164d565b500390565b601f821115610adc57600081815260208120601f850160051c810160208610156116d85750805b601f850160051c820191505b81811015610a59578281556001016116e4565b815167ffffffffffffffff81111561171157611711611453565b6117258161171f8454611613565b846116b1565b602080601f83116001811461175a57600084156117425750858301515b600019600386901b1c1916600185901b178555610a59565b600085815260208120601f198616915b828110156117895788860151825594840194600190910190840161176a565b50858210156117a75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600083516117c9818460208801611310565b8351908301906117dd818360208801611310565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118299083018461133c565b9695505050505050565b60006020828403121561184557600080fd5b8151610ec6816112dd565b6000600182016118625761186261164d565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261188e5761188e611869565b500490565b6000826118a2576118a2611869565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220c4edcc13543ce23fdbe85f85f174f62cda96a759cc99bc0bbf796fa26bece07b64736f6c634300080f0033

Deployed Bytecode Sourcemap

50476:2269:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18289:615;;;;;;;;;;-1:-1:-1;18289:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;18289:615:0;;;;;;;;23936:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25882:204::-;;;;;;;;;;-1:-1:-1;25882:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;25882:204:0;1528:203:1;25430:386:0;;;;;;;;;;-1:-1:-1;25430:386:0;;;;;:::i;:::-;;:::i;:::-;;50553:39;;;;;;;;;;;;50591:1;50553:39;;;;;2319:25:1;;;2307:2;2292:18;50553:39:0;2173:177:1;17343:315:0;;;;;;;;;;-1:-1:-1;50994:1:0;17609:12;17396:7;17593:13;:28;-1:-1:-1;;17593:46:0;17343:315;;52169:573;;;;;;:::i;:::-;;:::i;35147:2800::-;;;;;;;;;;-1:-1:-1;35147:2800:0;;;;;:::i;:::-;;:::i;51375:177::-;;;;;;;;;;;;;:::i;26772:185::-;;;;;;;;;;-1:-1:-1;26772:185:0;;;;;:::i;:::-;;:::i;51557:174::-;;;;;;;;;;-1:-1:-1;51557:174:0;;;;;:::i;:::-;;:::i;23725:144::-;;;;;;;;;;-1:-1:-1;23725:144:0;;;;;:::i;:::-;;:::i;51736:94::-;;;;;;;;;;-1:-1:-1;51736:94:0;;;;;:::i;:::-;;:::i;18968:224::-;;;;;;;;;;-1:-1:-1;18968:224:0;;;;;:::i;:::-;;:::i;2880:103::-;;;;;;;;;;;;;:::i;2232:87::-;;;;;;;;;;-1:-1:-1;2305:6:0;;-1:-1:-1;;;;;2305:6:0;2232:87;;24105:104;;;;;;;;;;;;;:::i;51215:85::-;;;;;;;;;;-1:-1:-1;51215:85:0;;;;;:::i;:::-;;:::i;26158:308::-;;;;;;;;;;-1:-1:-1;26158:308:0;;;;;:::i;:::-;;:::i;50630:27::-;;;;;;;;;;-1:-1:-1;50630:27:0;;;;;;;;27028:399;;;;;;;;;;-1:-1:-1;27028:399:0;;;;;:::i;:::-;;:::i;51305:65::-;;;;;;;;;;;;;:::i;51835:329::-;;;;;;;;;;-1:-1:-1;51835:329:0;;;;;:::i;:::-;;:::i;50596:28::-;;;;;;;;;;;;;;;;51005:78;;;;;;;;;;-1:-1:-1;51069:9:0;;;;;;;;;-1:-1:-1;51069:9:0;;51005:78;;26537:164;;;;;;;;;;-1:-1:-1;26537:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26658:25:0;;;26634:4;26658:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26537:164;3138:201;;;;;;;;;;-1:-1:-1;3138:201:0;;;;;:::i;:::-;;:::i;51091:116::-;;;;;;;;;;-1:-1:-1;51091:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;51174:25:0;51150:4;51174:25;;;:18;:25;;;;;;;51091:116;18289:615;18374:4;-1:-1:-1;;;;;;;;;18674:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;18751:25:0;;;18674:102;:179;;;-1:-1:-1;;;;;;;;;;18828:25:0;;;18674:179;18654:199;18289:615;-1:-1:-1;;18289:615:0:o;23936:100::-;23990:13;24023:5;24016:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23936:100;:::o;25882:204::-;25950:7;25975:16;25983:7;25975;:16::i;:::-;25970:64;;26000:34;;-1:-1:-1;;;26000:34:0;;;;;;;;;;;25970:64;-1:-1:-1;26054:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26054:24:0;;25882:204::o;25430:386::-;25503:13;25519:16;25527:7;25519;:16::i;:::-;25503:32;-1:-1:-1;46330:10:0;-1:-1:-1;;;;;25552:28:0;;;25548:175;;25600:44;25617:5;46330:10;26537:164;:::i;25600:44::-;25595:128;;25672:35;;-1:-1:-1;;;25672:35:0;;;;;;;;;;;25595:128;25735:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;25735:29:0;-1:-1:-1;;;;;25735:29:0;;;;;;;;;25780:28;;25735:24;;25780:28;;;;;;;25492:324;25430:386;;:::o;52169:573::-;52279:8;;;;52278:9;52270:35;;;;-1:-1:-1;;;52270:35:0;;6233:2:1;52270:35:0;;;6215:21:1;6272:2;6252:18;;;6245:30;-1:-1:-1;;;6291:18:1;;;6284:43;6344:18;;52270:35:0;;;;;;;;;52350:9;;52341:5;52324:14;17803:7;17991:13;-1:-1:-1;;17991:31:0;;17756:285;52324:14;:22;;;;:::i;:::-;:35;;52316:65;;;;-1:-1:-1;;;52316:65:0;;6840:2:1;52316:65:0;;;6822:21:1;6879:2;6859:18;;;6852:30;-1:-1:-1;;;6898:18:1;;;6891:48;6956:18;;52316:65:0;6638:342:1;52316:65:0;52517:18;50591:1;;52517:18;:::i;:::-;52494:10;52475:30;;;;:18;:30;;;;;;:38;;52508:5;;52475:38;:::i;:::-;:60;;52467:94;;;;-1:-1:-1;;;52467:94:0;;7360:2:1;52467:94:0;;;7342:21:1;7399:2;7379:18;;;7372:30;-1:-1:-1;;;7418:18:1;;;7411:52;7480:18;;52467:94:0;7158:346:1;52467:94:0;52591:15;52580:9;:26;;:62;;;;-1:-1:-1;52623:19:0;52639:3;52623:15;:19;:::i;:::-;52610:9;:32;;52580:62;52572:88;;;;-1:-1:-1;;;52572:88:0;;7841:2:1;52572:88:0;;;7823:21:1;7880:2;7860:18;;;7853:30;-1:-1:-1;;;7899:18:1;;;7892:44;7953:18;;52572:88:0;7639:338:1;52572:88:0;52684:10;52665:30;;;;:18;:30;;;;;:39;;52699:5;;52665:30;:39;;52699:5;;52665:39;:::i;:::-;;;;-1:-1:-1;52709:28:0;;-1:-1:-1;52719:10:0;52731:5;52709:9;:28::i;:::-;52169:573;;:::o;35147:2800::-;35281:27;35311;35330:7;35311:18;:27::i;:::-;35281:57;;35396:4;-1:-1:-1;;;;;35355:45:0;35371:19;-1:-1:-1;;;;;35355:45:0;;35351:86;;35409:28;;-1:-1:-1;;;35409:28:0;;;;;;;;;;;35351:86;35451:27;33877:21;;;33704:15;33919:4;33912:36;34001:4;33985:21;;34091:26;;46330:10;34844:30;;;-1:-1:-1;;;;;34542:26:0;;34823:19;;;34820:55;35630:174;;35717:43;35734:4;46330:10;26537:164;:::i;35717:43::-;35712:92;;35769:35;;-1:-1:-1;;;35769:35:0;;;;;;;;;;;35712:92;-1:-1:-1;;;;;35821:16:0;;35817:52;;35846:23;;-1:-1:-1;;;35846:23:0;;;;;;;;;;;35817:52;36018:15;36015:160;;;36158:1;36137:19;36130:30;36015:160;-1:-1:-1;;;;;36553:24:0;;;;;;;:18;:24;;;;;;36551:26;;-1:-1:-1;;36551:26:0;;;36622:22;;;;;;;;;36620:24;;-1:-1:-1;36620:24:0;;;23624:11;23600:22;23596:40;23583:62;-1:-1:-1;;;23583:62:0;36915:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;37209:46:0;;:51;;37205:626;;37313:1;37303:11;;37281:19;37436:30;;;:17;:30;;;;;;:35;;37432:384;;37574:13;;37559:11;:28;37555:242;;37721:30;;;;:17;:30;;;;;:52;;;37555:242;37262:569;37205:626;37878:7;37874:2;-1:-1:-1;;;;;37859:27:0;37868:4;-1:-1:-1;;;;;37859:27:0;;;;;;;;;;;37897:42;35270:2677;;;35147:2800;;;:::o;51375:177::-;2118:13;:11;:13::i;:::-;51438:82:::1;::::0;51420:12:::1;::::0;51446:10:::1;::::0;51484:21:::1;::::0;51420:12;51438:82;51420:12;51438:82;51484:21;51446:10;51438:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51419:101;;;51539:7;51531:16;;;::::0;::::1;;51414:138;51375:177::o:0;26772:185::-;26910:39;26927:4;26933:2;26937:7;26910:39;;;;;;;;;;;;:16;:39::i;:::-;26772:185;;;:::o;51557:174::-;2118:13;:11;:13::i;:::-;51661:9:::1;;51652:5;51635:14;17803:7:::0;17991:13;-1:-1:-1;;17991:31:0;;17756:285;51635:14:::1;:22;;;;:::i;:::-;:35;;51622:79;;;::::0;-1:-1:-1;;;51622:79:0;;6840:2:1;51622:79:0::1;::::0;::::1;6822:21:1::0;6879:2;6859:18;;;6852:30;-1:-1:-1;;;6898:18:1;;;6891:48;6956:18;;51622:79:0::1;6638:342:1::0;51622:79:0::1;51706:20;51716:2;51720:5;51706:9;:20::i;23725:144::-:0;23789:7;23832:27;23851:7;23832:18;:27::i;51736:94::-;2118:13;:11;:13::i;:::-;51801:9:::1;:24:::0;51736:94::o;18968:224::-;19032:7;-1:-1:-1;;;;;19056:19:0;;19052:60;;19084:28;;-1:-1:-1;;;19084:28:0;;;;;;;;;;;19052:60;-1:-1:-1;;;;;;19130:25:0;;;;;:18;:25;;;;;;13523:13;19130:54;;18968:224::o;2880:103::-;2118:13;:11;:13::i;:::-;2945:30:::1;2972:1;2945:18;:30::i;:::-;2880:103::o:0;24105:104::-;24161:13;24194:7;24187:14;;;;;:::i;51215:85::-;2118:13;:11;:13::i;:::-;51281:8:::1;:14;51292:3:::0;51281:8;:14:::1;:::i;26158:308::-:0;46330:10;-1:-1:-1;;;;;26257:31:0;;;26253:61;;26297:17;;-1:-1:-1;;;26297:17:0;;;;;;;;;;;26253:61;46330:10;26327:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26327:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26327:60:0;;;;;;;;;;26403:55;;540:41:1;;;26327:49:0;;46330:10;26403:55;;513:18:1;26403:55:0;;;;;;;26158:308;;:::o;27028:399::-;27195:31;27208:4;27214:2;27218:7;27195:12;:31::i;:::-;-1:-1:-1;;;;;27241:14:0;;;:19;27237:183;;27280:56;27311:4;27317:2;27321:7;27330:5;27280:30;:56::i;:::-;27275:145;;27364:40;;-1:-1:-1;;;27364:40:0;;;;;;;;;;;27275:145;27028:399;;;;:::o;51305:65::-;2118:13;:11;:13::i;:::-;51349:8:::1;:16:::0;;-1:-1:-1;;51349:16:0::1;::::0;;51305:65::o;51835:329::-;51909:13;51945:16;51953:7;51945;:16::i;:::-;51937:76;;;;-1:-1:-1;;;51937:76:0;;10598:2:1;51937:76:0;;;10580:21:1;10637:2;10617:18;;;10610:30;10676:34;10656:18;;;10649:62;-1:-1:-1;;;10727:18:1;;;10720:45;10782:19;;51937:76:0;10396:411:1;51937:76:0;52058:1;52037:10;:8;:10::i;:::-;52031:24;:28;:128;;;;;;;;;;;;;;;;;52100:10;:8;:10::i;:::-;52112:18;:7;:16;:18::i;:::-;52083:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52024:135;51835:329;-1:-1:-1;;51835:329:0:o;3138:201::-;2118:13;:11;:13::i;:::-;-1:-1:-1;;;;;3227:22:0;::::1;3219:73;;;::::0;-1:-1:-1;;;3219:73:0;;11656:2:1;3219:73:0::1;::::0;::::1;11638:21:1::0;11695:2;11675:18;;;11668:30;11734:34;11714:18;;;11707:62;-1:-1:-1;;;11785:18:1;;;11778:36;11831:19;;3219:73:0::1;11454:402:1::0;3219:73:0::1;3303:28;3322:8;3303:18;:28::i;27682:273::-:0;27739:4;27795:7;50994:1;27776:26;;:66;;;;;27829:13;;27819:7;:23;27776:66;:152;;;;-1:-1:-1;;27880:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27880:43:0;:48;;27682:273::o;28039:104::-;28108:27;28118:2;28122:8;28108:27;;;;;;;;;;;;:9;:27::i;20642:1129::-;20709:7;20744;;50994:1;20793:23;20789:915;;20846:13;;20839:4;:20;20835:869;;;20884:14;20901:23;;;:17;:23;;;;;;;-1:-1:-1;;;20990:23:0;;:28;;20986:699;;21509:113;21516:6;21526:1;21516:11;21509:113;;-1:-1:-1;;;21587:6:0;21569:25;;;;:17;:25;;;;;;21509:113;;;21655:6;20642:1129;-1:-1:-1;;;20642:1129:0:o;20986:699::-;20861:843;20835:869;21732:31;;-1:-1:-1;;;21732:31:0;;;;;;;;;;;2397:132;2305:6;;-1:-1:-1;;;;;2305:6:0;46330:10;2461:23;2453:68;;;;-1:-1:-1;;;2453:68:0;;12063:2:1;2453:68:0;;;12045:21:1;;;12082:18;;;12075:30;12141:34;12121:18;;;12114:62;12193:18;;2453:68:0;11861:356:1;3499:191:0;3592:6;;;-1:-1:-1;;;;;3609:17:0;;;-1:-1:-1;;;;;;3609:17:0;;;;;;;3642:40;;3592:6;;;3609:17;3592:6;;3642:40;;3573:16;;3642:40;3562:128;3499:191;:::o;41898:716::-;42082:88;;-1:-1:-1;;;42082:88:0;;42061:4;;-1:-1:-1;;;;;42082:45:0;;;;;:88;;46330:10;;42149:4;;42155:7;;42164:5;;42082:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42082:88:0;;;;;;;;-1:-1:-1;;42082:88:0;;;;;;;;;;;;:::i;:::-;;;42078:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42365:6;:13;42382:1;42365:18;42361:235;;42411:40;;-1:-1:-1;;;42411:40:0;;;;;;;;;;;42361:235;42554:6;42548:13;42539:6;42535:2;42531:15;42524:38;42078:529;-1:-1:-1;;;;;;42241:64:0;-1:-1:-1;;;42241:64:0;;-1:-1:-1;42078:529:0;41898:716;;;;;;:::o;50822:92::-;50874:13;50901:8;50894:15;;;;;:::i;48680:723::-;48736:13;48957:5;48966:1;48957:10;48953:53;;-1:-1:-1;;48984:10:0;;;;;;;;;;;;-1:-1:-1;;;48984:10:0;;;;;48680:723::o;48953:53::-;49031:5;49016:12;49072:78;49079:9;;49072:78;;49105:8;;;;:::i;:::-;;-1:-1:-1;49128:10:0;;-1:-1:-1;49136:2:0;49128:10;;:::i;:::-;;;49072:78;;;49160:19;49192:6;49182:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49182:17:0;;49160:39;;49210:154;49217:10;;49210:154;;49244:11;49254:1;49244:11;;:::i;:::-;;-1:-1:-1;49313:10:0;49321:2;49313:5;:10;:::i;:::-;49300:24;;:2;:24;:::i;:::-;49287:39;;49270:6;49277;49270:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;49270:56:0;;;;;;;;-1:-1:-1;49341:11:0;49350:2;49341:11;;:::i;:::-;;;49210:154;;28559:681;28682:19;28688:2;28692:8;28682:5;:19::i;:::-;-1:-1:-1;;;;;28743:14:0;;;:19;28739:483;;28783:11;28797:13;28845:14;;;28878:233;28909:62;28948:1;28952:2;28956:7;;;;;;28965:5;28909:30;:62::i;:::-;28904:167;;29007:40;;-1:-1:-1;;;29007:40:0;;;;;;;;;;;28904:167;29106:3;29098:5;:11;28878:233;;29193:3;29176:13;;:20;29172:34;;29198:8;;;29172:34;28764:458;;28559:681;;;:::o;29513:1529::-;29578:20;29601:13;-1:-1:-1;;;;;29629:16:0;;29625:48;;29654:19;;-1:-1:-1;;;29654:19:0;;;;;;;;;;;29625:48;29688:8;29700:1;29688:13;29684:44;;29710:18;;-1:-1:-1;;;29710:18:0;;;;;;;;;;;29684:44;-1:-1:-1;;;;;30216:22:0;;;;;;:18;:22;;13660:2;30216:22;;:70;;30254:31;30242:44;;30216:70;;;23624:11;23600:22;23596:40;-1:-1:-1;25334:15:0;;25309:23;25305:45;23593:51;23583:62;30529:31;;;;:17;:31;;;;;:173;30547:12;30778:23;;;30816:101;30843:35;;30868:9;;;;;-1:-1:-1;;;;;30843:35:0;;;30860:1;;30843:35;;30860:1;;30843:35;30912:3;30902:7;:13;30816:101;;30933:13;:19;-1:-1:-1;26772:185:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:248::-;2423:6;2431;2484:2;2472:9;2463:7;2459:23;2455:32;2452:52;;;2500:1;2497;2490:12;2452:52;-1:-1:-1;;2523:23:1;;;2593:2;2578:18;;;2565:32;;-1:-1:-1;2355:248:1:o;2608:328::-;2685:6;2693;2701;2754:2;2742:9;2733:7;2729:23;2725:32;2722:52;;;2770:1;2767;2760:12;2722:52;2793:29;2812:9;2793:29;:::i;:::-;2783:39;;2841:38;2875:2;2864:9;2860:18;2841:38;:::i;:::-;2831:48;;2926:2;2915:9;2911:18;2898:32;2888:42;;2608:328;;;;;:::o;2941:186::-;3000:6;3053:2;3041:9;3032:7;3028:23;3024:32;3021:52;;;3069:1;3066;3059:12;3021:52;3092:29;3111:9;3092:29;:::i;3132:127::-;3193:10;3188:3;3184:20;3181:1;3174:31;3224:4;3221:1;3214:15;3248:4;3245:1;3238:15;3264:632;3329:5;3359:18;3400:2;3392:6;3389:14;3386:40;;;3406:18;;:::i;:::-;3481:2;3475:9;3449:2;3535:15;;-1:-1:-1;;3531:24:1;;;3557:2;3527:33;3523:42;3511:55;;;3581:18;;;3601:22;;;3578:46;3575:72;;;3627:18;;:::i;:::-;3667:10;3663:2;3656:22;3696:6;3687:15;;3726:6;3718;3711:22;3766:3;3757:6;3752:3;3748:16;3745:25;3742:45;;;3783:1;3780;3773:12;3742:45;3833:6;3828:3;3821:4;3813:6;3809:17;3796:44;3888:1;3881:4;3872:6;3864;3860:19;3856:30;3849:41;;;;3264:632;;;;;:::o;3901:451::-;3970:6;4023:2;4011:9;4002:7;3998:23;3994:32;3991:52;;;4039:1;4036;4029:12;3991:52;4079:9;4066:23;4112:18;4104:6;4101:30;4098:50;;;4144:1;4141;4134:12;4098:50;4167:22;;4220:4;4212:13;;4208:27;-1:-1:-1;4198:55:1;;4249:1;4246;4239:12;4198:55;4272:74;4338:7;4333:2;4320:16;4315:2;4311;4307:11;4272:74;:::i;4357:347::-;4422:6;4430;4483:2;4471:9;4462:7;4458:23;4454:32;4451:52;;;4499:1;4496;4489:12;4451:52;4522:29;4541:9;4522:29;:::i;:::-;4512:39;;4601:2;4590:9;4586:18;4573:32;4648:5;4641:13;4634:21;4627:5;4624:32;4614:60;;4670:1;4667;4660:12;4614:60;4693:5;4683:15;;;4357:347;;;;;:::o;4709:667::-;4804:6;4812;4820;4828;4881:3;4869:9;4860:7;4856:23;4852:33;4849:53;;;4898:1;4895;4888:12;4849:53;4921:29;4940:9;4921:29;:::i;:::-;4911:39;;4969:38;5003:2;4992:9;4988:18;4969:38;:::i;:::-;4959:48;;5054:2;5043:9;5039:18;5026:32;5016:42;;5109:2;5098:9;5094:18;5081:32;5136:18;5128:6;5125:30;5122:50;;;5168:1;5165;5158:12;5122:50;5191:22;;5244:4;5236:13;;5232:27;-1:-1:-1;5222:55:1;;5273:1;5270;5263:12;5222:55;5296:74;5362:7;5357:2;5344:16;5339:2;5335;5331:11;5296:74;:::i;:::-;5286:84;;;4709:667;;;;;;;:::o;5381:260::-;5449:6;5457;5510:2;5498:9;5489:7;5485:23;5481:32;5478:52;;;5526:1;5523;5516:12;5478:52;5549:29;5568:9;5549:29;:::i;:::-;5539:39;;5597:38;5631:2;5620:9;5616:18;5597:38;:::i;:::-;5587:48;;5381:260;;;;;:::o;5646:380::-;5725:1;5721:12;;;;5768;;;5789:61;;5843:4;5835:6;5831:17;5821:27;;5789:61;5896:2;5888:6;5885:14;5865:18;5862:38;5859:161;;5942:10;5937:3;5933:20;5930:1;5923:31;5977:4;5974:1;5967:15;6005:4;6002:1;5995:15;5859:161;;5646:380;;;:::o;6373:127::-;6434:10;6429:3;6425:20;6422:1;6415:31;6465:4;6462:1;6455:15;6489:4;6486:1;6479:15;6505:128;6545:3;6576:1;6572:6;6569:1;6566:13;6563:39;;;6582:18;;:::i;:::-;-1:-1:-1;6618:9:1;;6505:128::o;6985:168::-;7025:7;7091:1;7087;7083:6;7079:14;7076:1;7073:21;7068:1;7061:9;7054:17;7050:45;7047:71;;;7098:18;;:::i;:::-;-1:-1:-1;7138:9:1;;6985:168::o;7509:125::-;7549:4;7577:1;7574;7571:8;7568:34;;;7582:18;;:::i;:::-;-1:-1:-1;7619:9:1;;7509:125::o;8318:545::-;8420:2;8415:3;8412:11;8409:448;;;8456:1;8481:5;8477:2;8470:17;8526:4;8522:2;8512:19;8596:2;8584:10;8580:19;8577:1;8573:27;8567:4;8563:38;8632:4;8620:10;8617:20;8614:47;;;-1:-1:-1;8655:4:1;8614:47;8710:2;8705:3;8701:12;8698:1;8694:20;8688:4;8684:31;8674:41;;8765:82;8783:2;8776:5;8773:13;8765:82;;;8828:17;;;8809:1;8798:13;8765:82;;9039:1352;9165:3;9159:10;9192:18;9184:6;9181:30;9178:56;;;9214:18;;:::i;:::-;9243:97;9333:6;9293:38;9325:4;9319:11;9293:38;:::i;:::-;9287:4;9243:97;:::i;:::-;9395:4;;9459:2;9448:14;;9476:1;9471:663;;;;10178:1;10195:6;10192:89;;;-1:-1:-1;10247:19:1;;;10241:26;10192:89;-1:-1:-1;;8996:1:1;8992:11;;;8988:24;8984:29;8974:40;9020:1;9016:11;;;8971:57;10294:81;;9441:944;;9471:663;8265:1;8258:14;;;8302:4;8289:18;;-1:-1:-1;;9507:20:1;;;9625:236;9639:7;9636:1;9633:14;9625:236;;;9728:19;;;9722:26;9707:42;;9820:27;;;;9788:1;9776:14;;;;9655:19;;9625:236;;;9629:3;9889:6;9880:7;9877:19;9874:201;;;9950:19;;;9944:26;-1:-1:-1;;10033:1:1;10029:14;;;10045:3;10025:24;10021:37;10017:42;10002:58;9987:74;;9874:201;-1:-1:-1;;;;;10121:1:1;10105:14;;;10101:22;10088:36;;-1:-1:-1;9039:1352:1:o;10812:637::-;11092:3;11130:6;11124:13;11146:53;11192:6;11187:3;11180:4;11172:6;11168:17;11146:53;:::i;:::-;11262:13;;11221:16;;;;11284:57;11262:13;11221:16;11318:4;11306:17;;11284:57;:::i;:::-;-1:-1:-1;;;11363:20:1;;11392:22;;;11441:1;11430:13;;10812:637;-1:-1:-1;;;;10812:637:1:o;12222:489::-;-1:-1:-1;;;;;12491:15:1;;;12473:34;;12543:15;;12538:2;12523:18;;12516:43;12590:2;12575:18;;12568:34;;;12638:3;12633:2;12618:18;;12611:31;;;12416:4;;12659:46;;12685:19;;12677:6;12659:46;:::i;:::-;12651:54;12222:489;-1:-1:-1;;;;;;12222:489:1:o;12716:249::-;12785:6;12838:2;12826:9;12817:7;12813:23;12809:32;12806:52;;;12854:1;12851;12844:12;12806:52;12886:9;12880:16;12905:30;12929:5;12905:30;:::i;12970:135::-;13009:3;13030:17;;;13027:43;;13050:18;;:::i;:::-;-1:-1:-1;13097:1:1;13086:13;;12970:135::o;13110:127::-;13171:10;13166:3;13162:20;13159:1;13152:31;13202:4;13199:1;13192:15;13226:4;13223:1;13216:15;13242:120;13282:1;13308;13298:35;;13313:18;;:::i;:::-;-1:-1:-1;13347:9:1;;13242:120::o;13367:112::-;13399:1;13425;13415:35;;13430:18;;:::i;:::-;-1:-1:-1;13464:9:1;;13367:112::o;13484:127::-;13545:10;13540:3;13536:20;13533:1;13526:31;13576:4;13573:1;13566:15;13600:4;13597:1;13590:15

Swarm Source

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