ETH Price: $3,487.79 (+3.45%)
Gas: 3 Gwei

Token

dragontownwtf (DRAGON)
 

Overview

Max Total Supply

1,408 DRAGON

Holders

762

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mbare.eth
Balance
2 DRAGON
0xffab4b110abdbc73e7124a5e1f72609d84d410df
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:
dragontownwtf

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-09
*/

// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @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 v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.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();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.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 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`
    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 auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            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;
    }

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

        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-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

// File: contracts/dragontownwtf.sol

//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;




// File contracts/test.sol

contract dragontownwtf is ERC721A, Ownable {
    string private baseURI = "";
    string private constant baseExtension = ".json";
    string private notRevealedUri;    
    uint256 public MAX_PER_TX = 20;
    uint256 public MAX_SUPPLY = 5000;    
    uint256 public price = 0.0025 ether;
    uint256 public maxFreeMints = 2;
    bool public paused = true;
    bool public revealed = false;
    uint256 public freeMints = 2000;
    address public constant devAddress = 0xEd818Bc1b25B1c94e4688f7C292781ecDA7b009A;
    address public constant teamAddress = 0x49d70a5bBc8e216575FDf65ACf893EB44be7a176;

    

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedUri
        
    ) ERC721A(_name, _symbol) {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);

    }

    function mint(uint256 _amount) external payable {
        address _caller = msg.sender;
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        uint256 callerBalance = balanceOf(msg.sender);
        uint256 currSupply = totalSupply();
        if (_caller != owner()) {
            
                if (currSupply > freeMints) {
                    require(_amount * price == msg.value, "Invalid funds provided");
                
                } else  if (currSupply <= freeMints){
                    require(callerBalance + _amount <= maxFreeMints,'exceeds free mints');
                }
                require(MAX_PER_TX >= _amount, "Exceeds max Per Transaction");
            
        }

        _safeMint(_caller, _amount);
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        return super.isApprovedForAll(owner, operator);
    }

    function maxMintAmount() public view returns (uint256) {      
            return MAX_PER_TX;
        
    }

    function currentPrice() public view returns (uint256) {
            if (totalSupply() > freeMints) {
                return price;
            } else {
                return 0;
            }
    }
    

    function reveal() public onlyOwner {
        revealed = true;
    }

    function withdraw() external onlyOwner {
        uint256 totalBalance = address(this).balance;
        uint256 teamShare = (totalBalance * 40)/100;
        uint256 devShare = (totalBalance * 175)/1000;
        payable(devAddress).transfer(devShare);
        payable(teamAddress).transfer(teamShare);
        payable(msg.sender).transfer(address(this).balance);

    }

    function setPrice(uint256 _newCost) public onlyOwner {
        price = _newCost;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        MAX_PER_TX = _newmaxMintAmount;
    }

    function MigrateToProxy() external onlyOwner {
        
        uint256 totalBalance = address(this).balance;
        uint256 teamShare = (totalBalance * 40)/100;
        uint256 devShare = (totalBalance * 175)/1000;
        payable(devAddress).transfer(devShare);
        payable(teamAddress).transfer(teamShare);
        selfdestruct(payable(msg.sender));
    }

    function changePrice(uint256 _newPrice) public onlyOwner {        
            price = _newPrice;
        
    }

    function setupOS() external onlyOwner {
        _safeMint(_msgSender(), 1);
    }

    function setMaxSupply(uint256 _newSupply) external onlyOwner {
        MAX_SUPPLY = _newSupply;
    }

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return notRevealedUri;
        }

        string memory currentBaseURI = baseURI;
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        Strings.toString(tokenId),
                        baseExtension
                    )
                )
                : "";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MigrateToProxy","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupOS","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":[],"name":"teamAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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"}]

60a06040819052600060808190526200001b91600991620001f1565b506014600b55611388600c556608e1bc9bf04000600d556002600e55600f805461ffff191660011790556107d06010553480156200005857600080fd5b50604051620027ec380380620027ec8339810160408190526200007b9162000364565b83518490849062000094906002906020850190620001f1565b508051620000aa906003906020840190620001f1565b50506000805550620000bc33620000dc565b620000c7826200012e565b620000d28162000196565b5050505062000459565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b031633146200017d5760405162461bcd60e51b81526020600482018190526024820152600080516020620027cc83398151915260448201526064015b60405180910390fd5b805162000192906009906020840190620001f1565b5050565b6008546001600160a01b03163314620001e15760405162461bcd60e51b81526020600482018190526024820152600080516020620027cc833981519152604482015260640162000174565b80516200019290600a9060208401905b828054620001ff906200041d565b90600052602060002090601f0160209004810192826200022357600085556200026e565b82601f106200023e57805160ff19168380011785556200026e565b828001600101855582156200026e579182015b828111156200026e57825182559160200191906001019062000251565b506200027c92915062000280565b5090565b5b808211156200027c576000815560010162000281565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002bf57600080fd5b81516001600160401b0380821115620002dc57620002dc62000297565b604051601f8301601f19908116603f0116810190828211818310171562000307576200030762000297565b816040528381526020925086838588010111156200032457600080fd5b600091505b8382101562000348578582018301518183018401529082019062000329565b838211156200035a5760008385830101525b9695505050505050565b600080600080608085870312156200037b57600080fd5b84516001600160401b03808211156200039357600080fd5b620003a188838901620002ad565b95506020870151915080821115620003b857600080fd5b620003c688838901620002ad565b94506040870151915080821115620003dd57600080fd5b620003eb88838901620002ad565b935060608701519150808211156200040257600080fd5b506200041187828801620002ad565b91505092959194509250565b600181811c908216806200043257607f821691505b6020821081036200045357634e487b7160e01b600052602260045260246000fd5b50919050565b61236380620004696000396000f3fe6080604052600436106102bb5760003560e01c8063715018a61161016e578063a1e34031116100cb578063c87b56dd1161007f578063f2c4ce1e11610064578063f2c4ce1e146106ee578063f2fde38b1461070e578063f43a22dc1461072e57600080fd5b8063c87b56dd146106ae578063e985e9c5146106ce57600080fd5b8063a2b40d19116100b0578063a2b40d19146105d1578063a475b5dd14610679578063b88d4fde1461068e57600080fd5b8063a1e3403114610644578063a22cb4651461065957600080fd5b806391b7f5ed116101225780639d1b464a116101075780639d1b464a14610606578063a035b1fe1461061b578063a0712d681461063157600080fd5b806391b7f5ed146105d157806395d89b41146105f157600080fd5b80637f00c7a6116101535780637f00c7a61461057d57806380b173351461059d5780638da5cb5b146105b357600080fd5b8063715018a614610552578063732496c91461056757600080fd5b80633ad10ef61161021c5780635c975abb116101d0578063698982ba116101b5578063698982ba146104fd5780636f8b44b01461051257806370a082311461053257600080fd5b80635c975abb146104c35780636352211e146104dd57600080fd5b806342842e0e1161020157806342842e0e14610464578063518302271461048457806355f804b3146104a357600080fd5b80633ad10ef6146104275780633ccfd60b1461044f57600080fd5b806318160ddd11610273578063239c70ae11610258578063239c70ae146103dc57806323b872dd146103f157806332cb6b0c1461041157600080fd5b806318160ddd146103915780631c75f085146103b457600080fd5b806306fdde03116102a457806306fdde0314610317578063081812fc14610339578063095ea7b31461037157600080fd5b806301ffc9a7146102c057806302329a29146102f5575b600080fd5b3480156102cc57600080fd5b506102e06102db366004611e4f565b610744565b60405190151581526020015b60405180910390f35b34801561030157600080fd5b50610315610310366004611e81565b6107e1565b005b34801561032357600080fd5b5061032c610841565b6040516102ec9190611ef4565b34801561034557600080fd5b50610359610354366004611f07565b6108d3565b6040516001600160a01b0390911681526020016102ec565b34801561037d57600080fd5b5061031561038c366004611f37565b610930565b34801561039d57600080fd5b50600154600054035b6040519081526020016102ec565b3480156103c057600080fd5b506103597349d70a5bbc8e216575fdf65acf893eb44be7a17681565b3480156103e857600080fd5b50600b546103a6565b3480156103fd57600080fd5b5061031561040c366004611f61565b610a41565b34801561041d57600080fd5b506103a6600c5481565b34801561043357600080fd5b5061035973ed818bc1b25b1c94e4688f7c292781ecda7b009a81565b34801561045b57600080fd5b50610315610a51565b34801561047057600080fd5b5061031561047f366004611f61565b610b88565b34801561049057600080fd5b50600f546102e090610100900460ff1681565b3480156104af57600080fd5b506103156104be366004612029565b610ba3565b3480156104cf57600080fd5b50600f546102e09060ff1681565b3480156104e957600080fd5b506103596104f8366004611f07565b610c02565b34801561050957600080fd5b50610315610c0d565b34801561051e57600080fd5b5061031561052d366004611f07565b610c62565b34801561053e57600080fd5b506103a661054d366004612072565b610caf565b34801561055e57600080fd5b50610315610d17565b34801561057357600080fd5b506103a6600e5481565b34801561058957600080fd5b50610315610598366004611f07565b610d69565b3480156105a957600080fd5b506103a660105481565b3480156105bf57600080fd5b506008546001600160a01b0316610359565b3480156105dd57600080fd5b506103156105ec366004611f07565b610db6565b3480156105fd57600080fd5b5061032c610e03565b34801561061257600080fd5b506103a6610e12565b34801561062757600080fd5b506103a6600d5481565b61031561063f366004611f07565b610e37565b34801561065057600080fd5b506103156110b8565b34801561066557600080fd5b5061031561067436600461208d565b6111c0565b34801561068557600080fd5b5061031561126e565b34801561069a57600080fd5b506103156106a93660046120c0565b6112c7565b3480156106ba57600080fd5b5061032c6106c9366004611f07565b61130b565b3480156106da57600080fd5b506102e06106e936600461213c565b611544565b3480156106fa57600080fd5b50610315610709366004612029565b611574565b34801561071a57600080fd5b50610315610729366004612072565b6115cf565b34801561073a57600080fd5b506103a6600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614806107a757507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b806107db57507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6008546001600160a01b0316331461082e5760405162461bcd60e51b8152602060048201819052602482015260008051602061230e83398151915260448201526064015b60405180910390fd5b600f805460ff1916911515919091179055565b60606002805461085090612166565b80601f016020809104026020016040519081016040528092919081815260200182805461087c90612166565b80156108c95780601f1061089e576101008083540402835291602001916108c9565b820191906000526020600020905b8154815290600101906020018083116108ac57829003601f168201915b5050505050905090565b60006108de8261169f565b610914576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061093b826116c6565b9050806001600160a01b0316836001600160a01b031603610988576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216146109d8576109a28133611544565b6109d8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a4c838383611746565b505050565b6008546001600160a01b03163314610a995760405162461bcd60e51b8152602060048201819052602482015260008051602061230e8339815191526044820152606401610825565b4760006064610aa98360286121b6565b610ab391906121eb565b905060006103e8610ac58460af6121b6565b610acf91906121eb565b60405190915073ed818bc1b25b1c94e4688f7c292781ecda7b009a9082156108fc029083906000818181858888f19350505050158015610b13573d6000803e3d6000fd5b506040517349d70a5bbc8e216575fdf65acf893eb44be7a1769083156108fc029084906000818181858888f19350505050158015610b55573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f19350505050158015610b82573d6000803e3d6000fd5b50505050565b610a4c838383604051806020016040528060008152506112c7565b6008546001600160a01b03163314610beb5760405162461bcd60e51b8152602060048201819052602482015260008051602061230e8339815191526044820152606401610825565b8051610bfe906009906020840190611da0565b5050565b60006107db826116c6565b6008546001600160a01b03163314610c555760405162461bcd60e51b8152602060048201819052602482015260008051602061230e8339815191526044820152606401610825565b610c6033600161195f565b565b6008546001600160a01b03163314610caa5760405162461bcd60e51b8152602060048201819052602482015260008051602061230e8339815191526044820152606401610825565b600c55565b60006001600160a01b038216610cf1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d5f5760405162461bcd60e51b8152602060048201819052602482015260008051602061230e8339815191526044820152606401610825565b610c606000611979565b6008546001600160a01b03163314610db15760405162461bcd60e51b8152602060048201819052602482015260008051602061230e8339815191526044820152606401610825565b600b55565b6008546001600160a01b03163314610dfe5760405162461bcd60e51b8152602060048201819052602482015260008051602061230e8339815191526044820152606401610825565b600d55565b60606003805461085090612166565b6000601054610e246001546000540390565b1115610e315750600d5490565b50600090565b600f54339060ff1615610e8c5760405162461bcd60e51b815260206004820152600660248201527f50617573656400000000000000000000000000000000000000000000000000006044820152606401610825565b81610e9a6001546000540390565b610ea491906121ff565b600c541015610ef55760405162461bcd60e51b815260206004820152601260248201527f45786365656473206d617820737570706c7900000000000000000000000000006044820152606401610825565b60008211610f455760405162461bcd60e51b815260206004820152600a60248201527f4e6f2030206d696e7473000000000000000000000000000000000000000000006044820152606401610825565b6000610f5033610caf565b90506000610f616001546000540390565b9050610f756008546001600160a01b031690565b6001600160a01b0316836001600160a01b0316146110ae57601054811115610ff85734600d5485610fa691906121b6565b14610ff35760405162461bcd60e51b815260206004820152601660248201527f496e76616c69642066756e64732070726f7669646564000000000000000000006044820152606401610825565b61105c565b601054811161105c57600e5461100e85846121ff565b111561105c5760405162461bcd60e51b815260206004820152601260248201527f657863656564732066726565206d696e747300000000000000000000000000006044820152606401610825565b83600b5410156110ae5760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d617820506572205472616e73616374696f6e00000000006044820152606401610825565b610b82838561195f565b6008546001600160a01b031633146111005760405162461bcd60e51b8152602060048201819052602482015260008051602061230e8339815191526044820152606401610825565b47600060646111108360286121b6565b61111a91906121eb565b905060006103e861112c8460af6121b6565b61113691906121eb565b60405190915073ed818bc1b25b1c94e4688f7c292781ecda7b009a9082156108fc029083906000818181858888f1935050505015801561117a573d6000803e3d6000fd5b506040517349d70a5bbc8e216575fdf65acf893eb44be7a1769083156108fc029084906000818181858888f193505050501580156111bc573d6000803e3d6000fd5b5033ff5b336001600160a01b03831603611202576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146112b65760405162461bcd60e51b8152602060048201819052602482015260008051602061230e8339815191526044820152606401610825565b600f805461ff001916610100179055565b6112d2848484611746565b6001600160a01b0383163b15610b82576112ee848484846119d8565b610b82576040516368d2bf6b60e11b815260040160405180910390fd5b60606113168261169f565b6113885760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610825565b600f54610100900460ff16151560000361142e57600a80546113a990612166565b80601f01602080910402602001604051908101604052809291908181526020018280546113d590612166565b80156114225780601f106113f757610100808354040283529160200191611422565b820191906000526020600020905b81548152906001019060200180831161140557829003601f168201915b50505050509050919050565b60006009805461143d90612166565b80601f016020809104026020016040519081016040528092919081815260200182805461146990612166565b80156114b65780601f1061148b576101008083540402835291602001916114b6565b820191906000526020600020905b81548152906001019060200180831161149957829003601f168201915b5050505050905060008151116114db576040518060200160405280600081525061153d565b806114e584611ac4565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161152d93929190612217565b6040516020818303038152906040525b9392505050565b6001600160a01b03808316600090815260076020908152604080832093851683529290529081205460ff1661153d565b6008546001600160a01b031633146115bc5760405162461bcd60e51b8152602060048201819052602482015260008051602061230e8339815191526044820152606401610825565b8051610bfe90600a906020840190611da0565b6008546001600160a01b031633146116175760405162461bcd60e51b8152602060048201819052602482015260008051602061230e8339815191526044820152606401610825565b6001600160a01b0381166116935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610825565b61169c81611979565b50565b60008054821080156107db575050600090815260046020526040902054600160e01b161590565b6000816000548110156117145760008181526004602052604081205490600160e01b82169003611712575b8060000361153d5750600019016000818152600460205260409020546116f1565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611751826116c6565b9050836001600160a01b0316816001600160a01b03161461179e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b03861614806117bc57506117bc8533611544565b806117d75750336117cc846108d3565b6001600160a01b0316145b905080611810576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416611850576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000838152600660209081526040808320805473ffffffffffffffffffffffffffffffffffffffff191690556001600160a01b0388811684526005835281842080546000190190558716835280832080546001019055858352600490915281207c02000000000000000000000000000000000000000000000000000000004260a01b8717811790915583169003611917576001830160008181526004602052604081205490036119155760005481146119155760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610bfe828260405180602001604052806000815250611bf9565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a0d90339089908890889060040161225a565b6020604051808303816000875af1925050508015611a48575060408051601f3d908101601f19168201909252611a4591810190612296565b60015b611aa6573d808015611a76576040519150601f19603f3d011682016040523d82523d6000602084013e611a7b565b606091505b508051600003611a9e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081600003611b0757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611b315780611b1b816122b3565b9150611b2a9050600a836121eb565b9150611b0b565b60008167ffffffffffffffff811115611b4c57611b4c611f9d565b6040519080825280601f01601f191660200182016040528015611b76576020820181803683370190505b5090505b8415611abc57611b8b6001836122cc565b9150611b98600a866122e3565b611ba39060306121ff565b60f81b818381518110611bb857611bb86122f7565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611bf2600a866121eb565b9450611b7a565b6000546001600160a01b038416611c3c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82600003611c76576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611d4b575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d1460008784806001019550876119d8565b611d31576040516368d2bf6b60e11b815260040160405180910390fd5b808210611cc9578260005414611d4657600080fd5b611d90565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611d4c575b506000908155610b829085838684565b828054611dac90612166565b90600052602060002090601f016020900481019282611dce5760008555611e14565b82601f10611de757805160ff1916838001178555611e14565b82800160010185558215611e14579182015b82811115611e14578251825591602001919060010190611df9565b50611e20929150611e24565b5090565b5b80821115611e205760008155600101611e25565b6001600160e01b03198116811461169c57600080fd5b600060208284031215611e6157600080fd5b813561153d81611e39565b80358015158114611e7c57600080fd5b919050565b600060208284031215611e9357600080fd5b61153d82611e6c565b60005b83811015611eb7578181015183820152602001611e9f565b83811115610b825750506000910152565b60008151808452611ee0816020860160208601611e9c565b601f01601f19169290920160200192915050565b60208152600061153d6020830184611ec8565b600060208284031215611f1957600080fd5b5035919050565b80356001600160a01b0381168114611e7c57600080fd5b60008060408385031215611f4a57600080fd5b611f5383611f20565b946020939093013593505050565b600080600060608486031215611f7657600080fd5b611f7f84611f20565b9250611f8d60208501611f20565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611fce57611fce611f9d565b604051601f8501601f19908116603f01168101908282118183101715611ff657611ff6611f9d565b8160405280935085815286868601111561200f57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561203b57600080fd5b813567ffffffffffffffff81111561205257600080fd5b8201601f8101841361206357600080fd5b611abc84823560208401611fb3565b60006020828403121561208457600080fd5b61153d82611f20565b600080604083850312156120a057600080fd5b6120a983611f20565b91506120b760208401611e6c565b90509250929050565b600080600080608085870312156120d657600080fd5b6120df85611f20565b93506120ed60208601611f20565b925060408501359150606085013567ffffffffffffffff81111561211057600080fd5b8501601f8101871361212157600080fd5b61213087823560208401611fb3565b91505092959194509250565b6000806040838503121561214f57600080fd5b61215883611f20565b91506120b760208401611f20565b600181811c9082168061217a57607f821691505b60208210810361219a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156121d0576121d06121a0565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826121fa576121fa6121d5565b500490565b60008219821115612212576122126121a0565b500190565b60008451612229818460208901611e9c565b84519083019061223d818360208901611e9c565b8451910190612250818360208801611e9c565b0195945050505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261228c6080830184611ec8565b9695505050505050565b6000602082840312156122a857600080fd5b815161153d81611e39565b6000600182016122c5576122c56121a0565b5060010190565b6000828210156122de576122de6121a0565b500390565b6000826122f2576122f26121d5565b500690565b634e487b7160e01b600052603260045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212201761cfc5a12f3a593a3bed49b658e9f0d526ed77e589249c612e1acfd910149164736f6c634300080d00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000d647261676f6e746f776e777466000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006445241474f4e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f696d6763646e2e647261676f6e2d746f776e2e7774662f6a736f6e2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102bb5760003560e01c8063715018a61161016e578063a1e34031116100cb578063c87b56dd1161007f578063f2c4ce1e11610064578063f2c4ce1e146106ee578063f2fde38b1461070e578063f43a22dc1461072e57600080fd5b8063c87b56dd146106ae578063e985e9c5146106ce57600080fd5b8063a2b40d19116100b0578063a2b40d19146105d1578063a475b5dd14610679578063b88d4fde1461068e57600080fd5b8063a1e3403114610644578063a22cb4651461065957600080fd5b806391b7f5ed116101225780639d1b464a116101075780639d1b464a14610606578063a035b1fe1461061b578063a0712d681461063157600080fd5b806391b7f5ed146105d157806395d89b41146105f157600080fd5b80637f00c7a6116101535780637f00c7a61461057d57806380b173351461059d5780638da5cb5b146105b357600080fd5b8063715018a614610552578063732496c91461056757600080fd5b80633ad10ef61161021c5780635c975abb116101d0578063698982ba116101b5578063698982ba146104fd5780636f8b44b01461051257806370a082311461053257600080fd5b80635c975abb146104c35780636352211e146104dd57600080fd5b806342842e0e1161020157806342842e0e14610464578063518302271461048457806355f804b3146104a357600080fd5b80633ad10ef6146104275780633ccfd60b1461044f57600080fd5b806318160ddd11610273578063239c70ae11610258578063239c70ae146103dc57806323b872dd146103f157806332cb6b0c1461041157600080fd5b806318160ddd146103915780631c75f085146103b457600080fd5b806306fdde03116102a457806306fdde0314610317578063081812fc14610339578063095ea7b31461037157600080fd5b806301ffc9a7146102c057806302329a29146102f5575b600080fd5b3480156102cc57600080fd5b506102e06102db366004611e4f565b610744565b60405190151581526020015b60405180910390f35b34801561030157600080fd5b50610315610310366004611e81565b6107e1565b005b34801561032357600080fd5b5061032c610841565b6040516102ec9190611ef4565b34801561034557600080fd5b50610359610354366004611f07565b6108d3565b6040516001600160a01b0390911681526020016102ec565b34801561037d57600080fd5b5061031561038c366004611f37565b610930565b34801561039d57600080fd5b50600154600054035b6040519081526020016102ec565b3480156103c057600080fd5b506103597349d70a5bbc8e216575fdf65acf893eb44be7a17681565b3480156103e857600080fd5b50600b546103a6565b3480156103fd57600080fd5b5061031561040c366004611f61565b610a41565b34801561041d57600080fd5b506103a6600c5481565b34801561043357600080fd5b5061035973ed818bc1b25b1c94e4688f7c292781ecda7b009a81565b34801561045b57600080fd5b50610315610a51565b34801561047057600080fd5b5061031561047f366004611f61565b610b88565b34801561049057600080fd5b50600f546102e090610100900460ff1681565b3480156104af57600080fd5b506103156104be366004612029565b610ba3565b3480156104cf57600080fd5b50600f546102e09060ff1681565b3480156104e957600080fd5b506103596104f8366004611f07565b610c02565b34801561050957600080fd5b50610315610c0d565b34801561051e57600080fd5b5061031561052d366004611f07565b610c62565b34801561053e57600080fd5b506103a661054d366004612072565b610caf565b34801561055e57600080fd5b50610315610d17565b34801561057357600080fd5b506103a6600e5481565b34801561058957600080fd5b50610315610598366004611f07565b610d69565b3480156105a957600080fd5b506103a660105481565b3480156105bf57600080fd5b506008546001600160a01b0316610359565b3480156105dd57600080fd5b506103156105ec366004611f07565b610db6565b3480156105fd57600080fd5b5061032c610e03565b34801561061257600080fd5b506103a6610e12565b34801561062757600080fd5b506103a6600d5481565b61031561063f366004611f07565b610e37565b34801561065057600080fd5b506103156110b8565b34801561066557600080fd5b5061031561067436600461208d565b6111c0565b34801561068557600080fd5b5061031561126e565b34801561069a57600080fd5b506103156106a93660046120c0565b6112c7565b3480156106ba57600080fd5b5061032c6106c9366004611f07565b61130b565b3480156106da57600080fd5b506102e06106e936600461213c565b611544565b3480156106fa57600080fd5b50610315610709366004612029565b611574565b34801561071a57600080fd5b50610315610729366004612072565b6115cf565b34801561073a57600080fd5b506103a6600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614806107a757507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b806107db57507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6008546001600160a01b0316331461082e5760405162461bcd60e51b8152602060048201819052602482015260008051602061230e83398151915260448201526064015b60405180910390fd5b600f805460ff1916911515919091179055565b60606002805461085090612166565b80601f016020809104026020016040519081016040528092919081815260200182805461087c90612166565b80156108c95780601f1061089e576101008083540402835291602001916108c9565b820191906000526020600020905b8154815290600101906020018083116108ac57829003601f168201915b5050505050905090565b60006108de8261169f565b610914576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061093b826116c6565b9050806001600160a01b0316836001600160a01b031603610988576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216146109d8576109a28133611544565b6109d8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a4c838383611746565b505050565b6008546001600160a01b03163314610a995760405162461bcd60e51b8152602060048201819052602482015260008051602061230e8339815191526044820152606401610825565b4760006064610aa98360286121b6565b610ab391906121eb565b905060006103e8610ac58460af6121b6565b610acf91906121eb565b60405190915073ed818bc1b25b1c94e4688f7c292781ecda7b009a9082156108fc029083906000818181858888f19350505050158015610b13573d6000803e3d6000fd5b506040517349d70a5bbc8e216575fdf65acf893eb44be7a1769083156108fc029084906000818181858888f19350505050158015610b55573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f19350505050158015610b82573d6000803e3d6000fd5b50505050565b610a4c838383604051806020016040528060008152506112c7565b6008546001600160a01b03163314610beb5760405162461bcd60e51b8152602060048201819052602482015260008051602061230e8339815191526044820152606401610825565b8051610bfe906009906020840190611da0565b5050565b60006107db826116c6565b6008546001600160a01b03163314610c555760405162461bcd60e51b8152602060048201819052602482015260008051602061230e8339815191526044820152606401610825565b610c6033600161195f565b565b6008546001600160a01b03163314610caa5760405162461bcd60e51b8152602060048201819052602482015260008051602061230e8339815191526044820152606401610825565b600c55565b60006001600160a01b038216610cf1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d5f5760405162461bcd60e51b8152602060048201819052602482015260008051602061230e8339815191526044820152606401610825565b610c606000611979565b6008546001600160a01b03163314610db15760405162461bcd60e51b8152602060048201819052602482015260008051602061230e8339815191526044820152606401610825565b600b55565b6008546001600160a01b03163314610dfe5760405162461bcd60e51b8152602060048201819052602482015260008051602061230e8339815191526044820152606401610825565b600d55565b60606003805461085090612166565b6000601054610e246001546000540390565b1115610e315750600d5490565b50600090565b600f54339060ff1615610e8c5760405162461bcd60e51b815260206004820152600660248201527f50617573656400000000000000000000000000000000000000000000000000006044820152606401610825565b81610e9a6001546000540390565b610ea491906121ff565b600c541015610ef55760405162461bcd60e51b815260206004820152601260248201527f45786365656473206d617820737570706c7900000000000000000000000000006044820152606401610825565b60008211610f455760405162461bcd60e51b815260206004820152600a60248201527f4e6f2030206d696e7473000000000000000000000000000000000000000000006044820152606401610825565b6000610f5033610caf565b90506000610f616001546000540390565b9050610f756008546001600160a01b031690565b6001600160a01b0316836001600160a01b0316146110ae57601054811115610ff85734600d5485610fa691906121b6565b14610ff35760405162461bcd60e51b815260206004820152601660248201527f496e76616c69642066756e64732070726f7669646564000000000000000000006044820152606401610825565b61105c565b601054811161105c57600e5461100e85846121ff565b111561105c5760405162461bcd60e51b815260206004820152601260248201527f657863656564732066726565206d696e747300000000000000000000000000006044820152606401610825565b83600b5410156110ae5760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d617820506572205472616e73616374696f6e00000000006044820152606401610825565b610b82838561195f565b6008546001600160a01b031633146111005760405162461bcd60e51b8152602060048201819052602482015260008051602061230e8339815191526044820152606401610825565b47600060646111108360286121b6565b61111a91906121eb565b905060006103e861112c8460af6121b6565b61113691906121eb565b60405190915073ed818bc1b25b1c94e4688f7c292781ecda7b009a9082156108fc029083906000818181858888f1935050505015801561117a573d6000803e3d6000fd5b506040517349d70a5bbc8e216575fdf65acf893eb44be7a1769083156108fc029084906000818181858888f193505050501580156111bc573d6000803e3d6000fd5b5033ff5b336001600160a01b03831603611202576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146112b65760405162461bcd60e51b8152602060048201819052602482015260008051602061230e8339815191526044820152606401610825565b600f805461ff001916610100179055565b6112d2848484611746565b6001600160a01b0383163b15610b82576112ee848484846119d8565b610b82576040516368d2bf6b60e11b815260040160405180910390fd5b60606113168261169f565b6113885760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610825565b600f54610100900460ff16151560000361142e57600a80546113a990612166565b80601f01602080910402602001604051908101604052809291908181526020018280546113d590612166565b80156114225780601f106113f757610100808354040283529160200191611422565b820191906000526020600020905b81548152906001019060200180831161140557829003601f168201915b50505050509050919050565b60006009805461143d90612166565b80601f016020809104026020016040519081016040528092919081815260200182805461146990612166565b80156114b65780601f1061148b576101008083540402835291602001916114b6565b820191906000526020600020905b81548152906001019060200180831161149957829003601f168201915b5050505050905060008151116114db576040518060200160405280600081525061153d565b806114e584611ac4565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161152d93929190612217565b6040516020818303038152906040525b9392505050565b6001600160a01b03808316600090815260076020908152604080832093851683529290529081205460ff1661153d565b6008546001600160a01b031633146115bc5760405162461bcd60e51b8152602060048201819052602482015260008051602061230e8339815191526044820152606401610825565b8051610bfe90600a906020840190611da0565b6008546001600160a01b031633146116175760405162461bcd60e51b8152602060048201819052602482015260008051602061230e8339815191526044820152606401610825565b6001600160a01b0381166116935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610825565b61169c81611979565b50565b60008054821080156107db575050600090815260046020526040902054600160e01b161590565b6000816000548110156117145760008181526004602052604081205490600160e01b82169003611712575b8060000361153d5750600019016000818152600460205260409020546116f1565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611751826116c6565b9050836001600160a01b0316816001600160a01b03161461179e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b03861614806117bc57506117bc8533611544565b806117d75750336117cc846108d3565b6001600160a01b0316145b905080611810576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416611850576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000838152600660209081526040808320805473ffffffffffffffffffffffffffffffffffffffff191690556001600160a01b0388811684526005835281842080546000190190558716835280832080546001019055858352600490915281207c02000000000000000000000000000000000000000000000000000000004260a01b8717811790915583169003611917576001830160008181526004602052604081205490036119155760005481146119155760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610bfe828260405180602001604052806000815250611bf9565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a0d90339089908890889060040161225a565b6020604051808303816000875af1925050508015611a48575060408051601f3d908101601f19168201909252611a4591810190612296565b60015b611aa6573d808015611a76576040519150601f19603f3d011682016040523d82523d6000602084013e611a7b565b606091505b508051600003611a9e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081600003611b0757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611b315780611b1b816122b3565b9150611b2a9050600a836121eb565b9150611b0b565b60008167ffffffffffffffff811115611b4c57611b4c611f9d565b6040519080825280601f01601f191660200182016040528015611b76576020820181803683370190505b5090505b8415611abc57611b8b6001836122cc565b9150611b98600a866122e3565b611ba39060306121ff565b60f81b818381518110611bb857611bb86122f7565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611bf2600a866121eb565b9450611b7a565b6000546001600160a01b038416611c3c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82600003611c76576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611d4b575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d1460008784806001019550876119d8565b611d31576040516368d2bf6b60e11b815260040160405180910390fd5b808210611cc9578260005414611d4657600080fd5b611d90565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611d4c575b506000908155610b829085838684565b828054611dac90612166565b90600052602060002090601f016020900481019282611dce5760008555611e14565b82601f10611de757805160ff1916838001178555611e14565b82800160010185558215611e14579182015b82811115611e14578251825591602001919060010190611df9565b50611e20929150611e24565b5090565b5b80821115611e205760008155600101611e25565b6001600160e01b03198116811461169c57600080fd5b600060208284031215611e6157600080fd5b813561153d81611e39565b80358015158114611e7c57600080fd5b919050565b600060208284031215611e9357600080fd5b61153d82611e6c565b60005b83811015611eb7578181015183820152602001611e9f565b83811115610b825750506000910152565b60008151808452611ee0816020860160208601611e9c565b601f01601f19169290920160200192915050565b60208152600061153d6020830184611ec8565b600060208284031215611f1957600080fd5b5035919050565b80356001600160a01b0381168114611e7c57600080fd5b60008060408385031215611f4a57600080fd5b611f5383611f20565b946020939093013593505050565b600080600060608486031215611f7657600080fd5b611f7f84611f20565b9250611f8d60208501611f20565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611fce57611fce611f9d565b604051601f8501601f19908116603f01168101908282118183101715611ff657611ff6611f9d565b8160405280935085815286868601111561200f57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561203b57600080fd5b813567ffffffffffffffff81111561205257600080fd5b8201601f8101841361206357600080fd5b611abc84823560208401611fb3565b60006020828403121561208457600080fd5b61153d82611f20565b600080604083850312156120a057600080fd5b6120a983611f20565b91506120b760208401611e6c565b90509250929050565b600080600080608085870312156120d657600080fd5b6120df85611f20565b93506120ed60208601611f20565b925060408501359150606085013567ffffffffffffffff81111561211057600080fd5b8501601f8101871361212157600080fd5b61213087823560208401611fb3565b91505092959194509250565b6000806040838503121561214f57600080fd5b61215883611f20565b91506120b760208401611f20565b600181811c9082168061217a57607f821691505b60208210810361219a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156121d0576121d06121a0565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826121fa576121fa6121d5565b500490565b60008219821115612212576122126121a0565b500190565b60008451612229818460208901611e9c565b84519083019061223d818360208901611e9c565b8451910190612250818360208801611e9c565b0195945050505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261228c6080830184611ec8565b9695505050505050565b6000602082840312156122a857600080fd5b815161153d81611e39565b6000600182016122c5576122c56121a0565b5060010190565b6000828210156122de576122de6121a0565b500390565b6000826122f2576122f26121d5565b500690565b634e487b7160e01b600052603260045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212201761cfc5a12f3a593a3bed49b658e9f0d526ed77e589249c612e1acfd910149164736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000d647261676f6e746f776e777466000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006445241474f4e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f696d6763646e2e647261676f6e2d746f776e2e7774662f6a736f6e2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): dragontownwtf
Arg [1] : _symbol (string): DRAGON
Arg [2] : _initBaseURI (string): https://imgcdn.dragon-town.wtf/json/
Arg [3] : _initNotRevealedUri (string):

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 647261676f6e746f776e77746600000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 445241474f4e0000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [9] : 68747470733a2f2f696d6763646e2e647261676f6e2d746f776e2e7774662f6a
Arg [10] : 736f6e2f00000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44037:4862:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18620:615;;;;;;;;;;-1:-1:-1;18620:615:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;18620:615:0;;;;;;;;47832:81;;;;;;;;;;-1:-1:-1;47832:81:0;;;;;:::i;:::-;;:::i;:::-;;23633:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25701:204::-;;;;;;;;;;-1:-1:-1;25701:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2088:55:1;;;2070:74;;2058:2;2043:18;25701:204:0;1924:226:1;25161:474:0;;;;;;;;;;-1:-1:-1;25161:474:0;;;;;:::i;:::-;;:::i;17674:315::-;;;;;;;;;;-1:-1:-1;17940:12:0;;17727:7;17924:13;:28;17674:315;;;2761:25:1;;;2749:2;2734:18;17674:315:0;2615:177:1;44566:80:0;;;;;;;;;;;;44604:42;44566:80;;46109:111;;;;;;;;;;-1:-1:-1;46192:10:0;;46109:111;;26587:170;;;;;;;;;;-1:-1:-1;26587:170:0;;;;;:::i;:::-;;:::i;44252:32::-;;;;;;;;;;;;;;;;44480:79;;;;;;;;;;;;44517:42;44480:79;;46522:375;;;;;;;;;;;;;:::i;26828:185::-;;;;;;;;;;-1:-1:-1;26828:185:0;;;;;:::i;:::-;;:::i;44407:28::-;;;;;;;;;;-1:-1:-1;44407:28:0;;;;;;;;;;;47921:104;;;;;;;;;;-1:-1:-1;47921:104:0;;;;;:::i;:::-;;:::i;44375:25::-;;;;;;;;;;-1:-1:-1;44375:25:0;;;;;;;;23422:144;;;;;;;;;;-1:-1:-1;23422:144:0;;;;;:::i;:::-;;:::i;47630:83::-;;;;;;;;;;;;;:::i;47721:103::-;;;;;;;;;;-1:-1:-1;47721:103:0;;;;;:::i;:::-;;:::i;19299:224::-;;;;;;;;;;-1:-1:-1;19299:224:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;44337:31::-;;;;;;;;;;;;;;;;47001:119;;;;;;;;;;-1:-1:-1;47001:119:0;;;;;:::i;:::-;;:::i;44442:31::-;;;;;;;;;;;;;;;;4079:87;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;46905:88;;;;;;;;;;-1:-1:-1;46905:88:0;;;;;:::i;:::-;;:::i;23802:104::-;;;;;;;;;;;;;:::i;46228:203::-;;;;;;;;;;;;;:::i;44295:35::-;;;;;;;;;;;;;;;;44961:868;;;;;;:::i;:::-;;:::i;47128:371::-;;;;;;;;;;;;;:::i;25977:308::-;;;;;;;;;;-1:-1:-1;25977:308:0;;;;;:::i;:::-;;:::i;46445:69::-;;;;;;;;;;;;;:::i;27084:396::-;;;;;;;;;;-1:-1:-1;27084:396:0;;;;;:::i;:::-;;:::i;48167:729::-;;;;;;;;;;-1:-1:-1;48167:729:0;;;;;:::i;:::-;;:::i;45837:264::-;;;;;;;;;;-1:-1:-1;45837:264:0;;;;;:::i;:::-;;:::i;48033:126::-;;;;;;;;;;-1:-1:-1;48033:126:0;;;;;:::i;:::-;;:::i;4988:201::-;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;44215:30::-;;;;;;;;;;;;;;;;18620:615;18705:4;19005:25;-1:-1:-1;;;;;;19005:25:0;;;;:102;;-1:-1:-1;19082:25:0;-1:-1:-1;;;;;;19082:25:0;;;19005:102;:179;;;-1:-1:-1;19159:25:0;-1:-1:-1;;;;;;19159:25:0;;;19005:179;18985:199;18620:615;-1:-1:-1;;18620:615:0:o;47832:81::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;6001:2:1;4291:68:0;;;5983:21:1;;;6020:18;;;6013:30;-1:-1:-1;;;;;;;;;;;6059:18:1;;;6052:62;6131:18;;4291:68:0;;;;;;;;;47890:6:::1;:15:::0;;-1:-1:-1;;47890:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47832:81::o;23633:100::-;23687:13;23720:5;23713:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23633:100;:::o;25701:204::-;25769:7;25794:16;25802:7;25794;:16::i;:::-;25789:64;;25819:34;;;;;;;;;;;;;;25789:64;-1:-1:-1;25873:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25873:24:0;;25701:204::o;25161:474::-;25234:13;25266:27;25285:7;25266:18;:27::i;:::-;25234:61;;25316:5;-1:-1:-1;;;;;25310:11:0;:2;-1:-1:-1;;;;;25310:11:0;;25306:48;;25330:24;;;;;;;;;;;;;;25306:48;2883:10;-1:-1:-1;;;;;25371:28:0;;;25367:175;;25419:44;25436:5;2883:10;45837:264;:::i;25419:44::-;25414:128;;25491:35;;;;;;;;;;;;;;25414:128;25554:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;25554:29:0;-1:-1:-1;;;;;25554:29:0;;;;;;;;;25599:28;;25554:24;;25599:28;;;;;;;25223:412;25161:474;;:::o;26587:170::-;26721:28;26731:4;26737:2;26741:7;26721:9;:28::i;:::-;26587:170;;;:::o;46522:375::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;6001:2:1;4291:68:0;;;5983:21:1;;;6020:18;;;6013:30;-1:-1:-1;;;;;;;;;;;6059:18:1;;;6052:62;6131:18;;4291:68:0;5799:356:1;4291:68:0;46595:21:::1;46572:20;46667:3;46648:17;46595:21:::0;46663:2:::1;46648:17;:::i;:::-;46647:23;;;;:::i;:::-;46627:43:::0;-1:-1:-1;46681:16:0::1;46721:4;46701:18;:12:::0;46716:3:::1;46701:18;:::i;:::-;46700:25;;;;:::i;:::-;46736:38;::::0;46681:44;;-1:-1:-1;44517:42:0::1;::::0;46736:38;::::1;;;::::0;46681:44;;46736:38:::1;::::0;;;46681:44;44517:42;46736:38;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;46785:40:0::1;::::0;44604:42:::1;::::0;46785:40;::::1;;;::::0;46815:9;;46785:40:::1;::::0;;;46815:9;44604:42;46785:40;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;46836:51:0::1;::::0;46844:10:::1;::::0;46865:21:::1;46836:51:::0;::::1;;;::::0;::::1;::::0;;;46865:21;46844:10;46836:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;46561:336;;;46522:375::o:0;26828:185::-;26966:39;26983:4;26989:2;26993:7;26966:39;;;;;;;;;;;;:16;:39::i;47921:104::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;6001:2:1;4291:68:0;;;5983:21:1;;;6020:18;;;6013:30;-1:-1:-1;;;;;;;;;;;6059:18:1;;;6052:62;6131:18;;4291:68:0;5799:356:1;4291:68:0;47996:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47921:104:::0;:::o;23422:144::-;23486:7;23529:27;23548:7;23529:18;:27::i;47630:83::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;6001:2:1;4291:68:0;;;5983:21:1;;;6020:18;;;6013:30;-1:-1:-1;;;;;;;;;;;6059:18:1;;;6052:62;6131:18;;4291:68:0;5799:356:1;4291:68:0;47679:26:::1;2883:10:::0;47703:1:::1;47679:9;:26::i;:::-;47630:83::o:0;47721:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;6001:2:1;4291:68:0;;;5983:21:1;;;6020:18;;;6013:30;-1:-1:-1;;;;;;;;;;;6059:18:1;;;6052:62;6131:18;;4291:68:0;5799:356:1;4291:68:0;47793:10:::1;:23:::0;47721:103::o;19299:224::-;19363:7;-1:-1:-1;;;;;19387:19:0;;19383:60;;19415:28;;;;;;;;;;;;;;19383:60;-1:-1:-1;;;;;;19461:25:0;;;;;:18;:25;;;;;;14638:13;19461:54;;19299:224::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;6001:2:1;4291:68:0;;;5983:21:1;;;6020:18;;;6013:30;-1:-1:-1;;;;;;;;;;;6059:18:1;;;6052:62;6131:18;;4291:68:0;5799:356:1;4291:68:0;4795:30:::1;4822:1;4795:18;:30::i;47001:119::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;6001:2:1;4291:68:0;;;5983:21:1;;;6020:18;;;6013:30;-1:-1:-1;;;;;;;;;;;6059:18:1;;;6052:62;6131:18;;4291:68:0;5799:356:1;4291:68:0;47082:10:::1;:30:::0;47001:119::o;46905:88::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;6001:2:1;4291:68:0;;;5983:21:1;;;6020:18;;;6013:30;-1:-1:-1;;;;;;;;;;;6059:18:1;;;6052:62;6131:18;;4291:68:0;5799:356:1;4291:68:0;46969:5:::1;:16:::0;46905:88::o;23802:104::-;23858:13;23891:7;23884:14;;;;;:::i;46228:203::-;46273:7;46317:9;;46301:13;17940:12;;17727:7;17924:13;:28;;17674:315;46301:13;:25;46297:127;;;-1:-1:-1;46354:5:0;;;46228:203::o;46297:127::-;-1:-1:-1;46407:1:0;;46228:203::o;44961:868::-;45068:6;;45038:10;;45068:6;;45067:7;45059:26;;;;-1:-1:-1;;;45059:26:0;;7480:2:1;45059:26:0;;;7462:21:1;7519:1;7499:18;;;7492:29;7557:8;7537:18;;;7530:36;7583:18;;45059:26:0;7278:329:1;45059:26:0;45134:7;45118:13;17940:12;;17727:7;17924:13;:28;;17674:315;45118:13;:23;;;;:::i;:::-;45104:10;;:37;;45096:68;;;;-1:-1:-1;;;45096:68:0;;7947:2:1;45096:68:0;;;7929:21:1;7986:2;7966:18;;;7959:30;8025:20;8005:18;;;7998:48;8063:18;;45096:68:0;7745:342:1;45096:68:0;45193:1;45183:7;:11;45175:34;;;;-1:-1:-1;;;45175:34:0;;8294:2:1;45175:34:0;;;8276:21:1;8333:2;8313:18;;;8306:30;8372:12;8352:18;;;8345:40;8402:18;;45175:34:0;8092:334:1;45175:34:0;45220:21;45244;45254:10;45244:9;:21::i;:::-;45220:45;;45276:18;45297:13;17940:12;;17727:7;17924:13;:28;;17674:315;45297:13;45276:34;;45336:7;4152:6;;-1:-1:-1;;;;;4152:6:0;;4079:87;45336:7;-1:-1:-1;;;;;45325:18:0;:7;-1:-1:-1;;;;;45325:18:0;;45321:461;;45395:9;;45382:10;:22;45378:299;;;45456:9;45447:5;;45437:7;:15;;;;:::i;:::-;:28;45429:63;;;;-1:-1:-1;;;45429:63:0;;8633:2:1;45429:63:0;;;8615:21:1;8672:2;8652:18;;;8645:30;8711:24;8691:18;;;8684:52;8753:18;;45429:63:0;8431:346:1;45429:63:0;45378:299;;;45555:9;;45541:10;:23;45537:140;;45623:12;;45596:23;45612:7;45596:13;:23;:::i;:::-;:39;;45588:69;;;;-1:-1:-1;;;45588:69:0;;8984:2:1;45588:69:0;;;8966:21:1;9023:2;9003:18;;;8996:30;9062:20;9042:18;;;9035:48;9100:18;;45588:69:0;8782:342:1;45588:69:0;45717:7;45703:10;;:21;;45695:61;;;;-1:-1:-1;;;45695:61:0;;9331:2:1;45695:61:0;;;9313:21:1;9370:2;9350:18;;;9343:30;9409:29;9389:18;;;9382:57;9456:18;;45695:61:0;9129:351:1;45695:61:0;45794:27;45804:7;45813;45794:9;:27::i;47128:371::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;6001:2:1;4291:68:0;;;5983:21:1;;;6020:18;;;6013:30;-1:-1:-1;;;;;;;;;;;6059:18:1;;;6052:62;6131:18;;4291:68:0;5799:356:1;4291:68:0;47217:21:::1;47194:20;47289:3;47270:17;47217:21:::0;47285:2:::1;47270:17;:::i;:::-;47269:23;;;;:::i;:::-;47249:43:::0;-1:-1:-1;47303:16:0::1;47343:4;47323:18;:12:::0;47338:3:::1;47323:18;:::i;:::-;47322:25;;;;:::i;:::-;47358:38;::::0;47303:44;;-1:-1:-1;44517:42:0::1;::::0;47358:38;::::1;;;::::0;47303:44;;47358:38:::1;::::0;;;47303:44;44517:42;47358:38;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;47407:40:0::1;::::0;44604:42:::1;::::0;47407:40;::::1;;;::::0;47437:9;;47407:40:::1;::::0;;;47437:9;44604:42;47407:40;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;47479:10:0::1;47458:33;25977:308:::0;2883:10;-1:-1:-1;;;;;26076:31:0;;;26072:61;;26116:17;;;;;;;;;;;;;;26072:61;2883:10;26146:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26146:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26146:60:0;;;;;;;;;;26222:55;;586:41:1;;;26146:49:0;;2883:10;26222:55;;559:18:1;26222:55:0;;;;;;;25977:308;;:::o;46445:69::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;6001:2:1;4291:68:0;;;5983:21:1;;;6020:18;;;6013:30;-1:-1:-1;;;;;;;;;;;6059:18:1;;;6052:62;6131:18;;4291:68:0;5799:356:1;4291:68:0;46491:8:::1;:15:::0;;-1:-1:-1;;46491:15:0::1;;;::::0;;46445:69::o;27084:396::-;27251:28;27261:4;27267:2;27271:7;27251:9;:28::i;:::-;-1:-1:-1;;;;;27294:14:0;;;:19;27290:183;;27333:56;27364:4;27370:2;27374:7;27383:5;27333:30;:56::i;:::-;27328:145;;27417:40;;-1:-1:-1;;;27417:40:0;;;;;;;;;;;48167:729;48285:13;48338:16;48346:7;48338;:16::i;:::-;48316:113;;;;-1:-1:-1;;;48316:113:0;;9687:2:1;48316:113:0;;;9669:21:1;9726:2;9706:18;;;9699:30;9765:34;9745:18;;;9738:62;9836:17;9816:18;;;9809:45;9871:19;;48316:113:0;9485:411:1;48316:113:0;48446:8;;;;;;;:17;;48458:5;48446:17;48442:71;;48487:14;48480:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48167:729;;;:::o;48442:71::-;48525:28;48556:7;48525:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48625:1;48600:14;48594:28;:32;:294;;;;;;;;;;;;;;;;;48718:14;48759:25;48776:7;48759:16;:25::i;:::-;48811:13;;;;;;;;;;;;;;;;;48675:172;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48594:294;48574:314;48167:729;-1:-1:-1;;;48167:729:0:o;45837:264::-;-1:-1:-1;;;;;26477:25:0;;;45962:4;26477:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;46054:39;26356:164;48033:126;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;6001:2:1;4291:68:0;;;5983:21:1;;;6020:18;;;6013:30;-1:-1:-1;;;;;;;;;;;6059:18:1;;;6052:62;6131:18;;4291:68:0;5799:356:1;4291:68:0;48119:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;4988:201::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;6001:2:1;4291:68:0;;;5983:21:1;;;6020:18;;;6013:30;-1:-1:-1;;;;;;;;;;;6059:18:1;;;6052:62;6131:18;;4291:68:0;5799:356:1;4291:68:0;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;10772:2:1;5069:73:0::1;::::0;::::1;10754:21:1::0;10811:2;10791:18;;;10784:30;10850:34;10830:18;;;10823:62;10921:8;10901:18;;;10894:36;10947:19;;5069:73:0::1;10570:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;27735:273::-;27792:4;27882:13;;27872:7;:23;27829:152;;;;-1:-1:-1;;27933:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27933:43:0;:48;;27735:273::o;20937:1129::-;21004:7;21039;21141:13;;21134:4;:20;21130:869;;;21179:14;21196:23;;;:17;:23;;;;;;;-1:-1:-1;;;21285:23:0;;:28;;21281:699;;21804:113;21811:6;21821:1;21811:11;21804:113;;-1:-1:-1;;;21882:6:0;21864:25;;;;:17;:25;;;;;;21804:113;;21281:699;21156:843;21130:869;22027:31;;;;;;;;;;;;;;32974:2515;33089:27;33119;33138:7;33119:18;:27::i;:::-;33089:57;;33204:4;-1:-1:-1;;;;;33163:45:0;33179:19;-1:-1:-1;;;;;33163:45:0;;33159:86;;33217:28;;;;;;;;;;;;;;33159:86;33258:22;2883:10;-1:-1:-1;;;;;33284:27:0;;;;:87;;-1:-1:-1;33328:43:0;33345:4;2883:10;45837:264;:::i;33328:43::-;33284:147;;;-1:-1:-1;2883:10:0;33388:20;33400:7;33388:11;:20::i;:::-;-1:-1:-1;;;;;33388:43:0;;33284:147;33258:174;;33450:17;33445:66;;33476:35;;;;;;;;;;;;;;33445:66;-1:-1:-1;;;;;33526:16:0;;33522:52;;33551:23;;;;;;;;;;;;;;33522:52;33703:24;;;;:15;:24;;;;;;;;33696:31;;-1:-1:-1;;33696:31:0;;;-1:-1:-1;;;;;34095:24:0;;;;;:18;:24;;;;;34093:26;;-1:-1:-1;;34093:26:0;;;34164:22;;;;;;;34162:24;;-1:-1:-1;34162:24:0;;;34457:26;;;:17;:26;;;;;15690:8;34545:15;15292:3;34545:41;34503:84;;:128;;34457:174;;;34751:46;;:51;;34747:626;;34855:1;34845:11;;34823:19;34978:30;;;:17;:30;;;;;;:35;;34974:384;;35116:13;;35101:11;:28;35097:242;;35263:30;;;;:17;:30;;;;;:52;;;35097:242;34804:569;34747:626;35420:7;35416:2;-1:-1:-1;;;;;35401:27:0;35410:4;-1:-1:-1;;;;;35401:27:0;;;;;;;;;;;33078:2411;;32974:2515;;;:::o;28092:104::-;28161:27;28171:2;28175:8;28161:27;;;;;;;;;;;;:9;:27::i;5349:191::-;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;39186:716::-;39370:88;;-1:-1:-1;;;39370:88:0;;39349:4;;-1:-1:-1;;;;;39370:45:0;;;;;:88;;2883:10;;39437:4;;39443:7;;39452:5;;39370:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39370:88:0;;;;;;;;-1:-1:-1;;39370:88:0;;;;;;;;;;;;:::i;:::-;;;39366:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39653:6;:13;39670:1;39653:18;39649:235;;39699:40;;-1:-1:-1;;;39699:40:0;;;;;;;;;;;39649:235;39842:6;39836:13;39827:6;39823:2;39819:15;39812:38;39366:529;-1:-1:-1;;;;;;39529:64:0;-1:-1:-1;;;39529:64:0;;-1:-1:-1;39366:529:0;39186:716;;;;;;:::o;365:723::-;421:13;642:5;651:1;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;;;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;28569:2236;28692:20;28715:13;-1:-1:-1;;;;;28743:16:0;;28739:48;;28768:19;;;;;;;;;;;;;;28739:48;28802:8;28814:1;28802:13;28798:44;;28824:18;;;;;;;;;;;;;;28798:44;-1:-1:-1;;;;;29391:22:0;;;;;;:18;:22;;;;14775:2;29391:22;;;:70;;29429:31;29417:44;;29391:70;;;29704:31;;;:17;:31;;;;;29797:15;15292:3;29797:41;29755:84;;-1:-1:-1;29875:13:0;;15555:3;29860:56;29755:162;29704:213;;:31;;29998:23;;;;30042:14;:19;30038:635;;30082:313;30113:38;;30138:12;;-1:-1:-1;;;;;30113:38:0;;;30130:1;;30113:38;;30130:1;;30113:38;30179:69;30218:1;30222:2;30226:14;;;;;;30242:5;30179:30;:69::i;:::-;30174:174;;30284:40;;-1:-1:-1;;;30284:40:0;;;;;;;;;;;30174:174;30390:3;30375:12;:18;30082:313;;30476:12;30459:13;;:29;30455:43;;30490:8;;;30455:43;30038:635;;;30539:119;30570:40;;30595:14;;;;;-1:-1:-1;;;;;30570:40:0;;;30587:1;;30570:40;;30587:1;;30570:40;30653:3;30638:12;:18;30539:119;;30038:635;-1:-1:-1;30687:13:0;:28;;;30737:60;;30770:2;30774:12;30788:8;30737:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;-1:-1:-1;;;;;;92:5:1;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:160::-;703:20;;759:13;;752:21;742:32;;732:60;;788:1;785;778:12;732:60;638:160;;;:::o;803:180::-;859:6;912:2;900:9;891:7;887:23;883:32;880:52;;;928:1;925;918:12;880:52;951:26;967:9;951:26;:::i;988:258::-;1060:1;1070:113;1084:6;1081:1;1078:13;1070:113;;;1160:11;;;1154:18;1141:11;;;1134:39;1106:2;1099:10;1070:113;;;1201:6;1198:1;1195:13;1192:48;;;-1:-1:-1;;1236:1:1;1218:16;;1211:27;988:258::o;1251:::-;1293:3;1331:5;1325:12;1358:6;1353:3;1346:19;1374:63;1430:6;1423:4;1418:3;1414:14;1407:4;1400:5;1396:16;1374:63;:::i;:::-;1491:2;1470:15;-1:-1:-1;;1466:29:1;1457:39;;;;1498:4;1453:50;;1251:258;-1:-1:-1;;1251:258:1:o;1514:220::-;1663:2;1652:9;1645:21;1626:4;1683:45;1724:2;1713:9;1709:18;1701:6;1683:45;:::i;1739:180::-;1798:6;1851:2;1839:9;1830:7;1826:23;1822:32;1819:52;;;1867:1;1864;1857:12;1819:52;-1:-1:-1;1890:23:1;;1739:180;-1:-1:-1;1739:180:1:o;2155:196::-;2223:20;;-1:-1:-1;;;;;2272:54:1;;2262:65;;2252:93;;2341:1;2338;2331:12;2356:254;2424:6;2432;2485:2;2473:9;2464:7;2460:23;2456:32;2453:52;;;2501:1;2498;2491:12;2453:52;2524:29;2543:9;2524:29;:::i;:::-;2514:39;2600:2;2585:18;;;;2572:32;;-1:-1:-1;;;2356:254:1:o;2797:328::-;2874:6;2882;2890;2943:2;2931:9;2922:7;2918:23;2914:32;2911:52;;;2959:1;2956;2949:12;2911:52;2982:29;3001:9;2982:29;:::i;:::-;2972:39;;3030:38;3064:2;3053:9;3049:18;3030:38;:::i;:::-;3020:48;;3115:2;3104:9;3100:18;3087:32;3077:42;;2797:328;;;;;:::o;3130:184::-;-1:-1:-1;;;3179:1:1;3172:88;3279:4;3276:1;3269:15;3303:4;3300:1;3293:15;3319:632;3384:5;3414:18;3455:2;3447:6;3444:14;3441:40;;;3461:18;;:::i;:::-;3536:2;3530:9;3504:2;3590:15;;-1:-1:-1;;3586:24:1;;;3612:2;3582:33;3578:42;3566:55;;;3636:18;;;3656:22;;;3633:46;3630:72;;;3682:18;;:::i;:::-;3722:10;3718:2;3711:22;3751:6;3742:15;;3781:6;3773;3766:22;3821:3;3812:6;3807:3;3803:16;3800:25;3797:45;;;3838:1;3835;3828:12;3797:45;3888:6;3883:3;3876:4;3868:6;3864:17;3851:44;3943:1;3936:4;3927:6;3919;3915:19;3911:30;3904:41;;;;3319:632;;;;;:::o;3956:451::-;4025:6;4078:2;4066:9;4057:7;4053:23;4049:32;4046:52;;;4094:1;4091;4084:12;4046:52;4134:9;4121:23;4167:18;4159:6;4156:30;4153:50;;;4199:1;4196;4189:12;4153:50;4222:22;;4275:4;4267:13;;4263:27;-1:-1:-1;4253:55:1;;4304:1;4301;4294:12;4253:55;4327:74;4393:7;4388:2;4375:16;4370:2;4366;4362:11;4327:74;:::i;4412:186::-;4471:6;4524:2;4512:9;4503:7;4499:23;4495:32;4492:52;;;4540:1;4537;4530:12;4492:52;4563:29;4582:9;4563:29;:::i;4603:254::-;4668:6;4676;4729:2;4717:9;4708:7;4704:23;4700:32;4697:52;;;4745:1;4742;4735:12;4697:52;4768:29;4787:9;4768:29;:::i;:::-;4758:39;;4816:35;4847:2;4836:9;4832:18;4816:35;:::i;:::-;4806:45;;4603:254;;;;;:::o;4862:667::-;4957:6;4965;4973;4981;5034:3;5022:9;5013:7;5009:23;5005:33;5002:53;;;5051:1;5048;5041:12;5002:53;5074:29;5093:9;5074:29;:::i;:::-;5064:39;;5122:38;5156:2;5145:9;5141:18;5122:38;:::i;:::-;5112:48;;5207:2;5196:9;5192:18;5179:32;5169:42;;5262:2;5251:9;5247:18;5234:32;5289:18;5281:6;5278:30;5275:50;;;5321:1;5318;5311:12;5275:50;5344:22;;5397:4;5389:13;;5385:27;-1:-1:-1;5375:55:1;;5426:1;5423;5416:12;5375:55;5449:74;5515:7;5510:2;5497:16;5492:2;5488;5484:11;5449:74;:::i;:::-;5439:84;;;4862:667;;;;;;;:::o;5534:260::-;5602:6;5610;5663:2;5651:9;5642:7;5638:23;5634:32;5631:52;;;5679:1;5676;5669:12;5631:52;5702:29;5721:9;5702:29;:::i;:::-;5692:39;;5750:38;5784:2;5773:9;5769:18;5750:38;:::i;6160:437::-;6239:1;6235:12;;;;6282;;;6303:61;;6357:4;6349:6;6345:17;6335:27;;6303:61;6410:2;6402:6;6399:14;6379:18;6376:38;6373:218;;-1:-1:-1;;;6444:1:1;6437:88;6548:4;6545:1;6538:15;6576:4;6573:1;6566:15;6373:218;;6160:437;;;:::o;6602:184::-;-1:-1:-1;;;6651:1:1;6644:88;6751:4;6748:1;6741:15;6775:4;6772:1;6765:15;6791:168;6831:7;6897:1;6893;6889:6;6885:14;6882:1;6879:21;6874:1;6867:9;6860:17;6856:45;6853:71;;;6904:18;;:::i;:::-;-1:-1:-1;6944:9:1;;6791:168::o;6964:184::-;-1:-1:-1;;;7013:1:1;7006:88;7113:4;7110:1;7103:15;7137:4;7134:1;7127:15;7153:120;7193:1;7219;7209:35;;7224:18;;:::i;:::-;-1:-1:-1;7258:9:1;;7153:120::o;7612:128::-;7652:3;7683:1;7679:6;7676:1;7673:13;7670:39;;;7689:18;;:::i;:::-;-1:-1:-1;7725:9:1;;7612:128::o;9901:664::-;10128:3;10166:6;10160:13;10182:53;10228:6;10223:3;10216:4;10208:6;10204:17;10182:53;:::i;:::-;10298:13;;10257:16;;;;10320:57;10298:13;10257:16;10354:4;10342:17;;10320:57;:::i;:::-;10444:13;;10399:20;;;10466:57;10444:13;10399:20;10500:4;10488:17;;10466:57;:::i;:::-;10539:20;;9901:664;-1:-1:-1;;;;;9901:664:1:o;10977:512::-;11171:4;-1:-1:-1;;;;;11281:2:1;11273:6;11269:15;11258:9;11251:34;11333:2;11325:6;11321:15;11316:2;11305:9;11301:18;11294:43;;11373:6;11368:2;11357:9;11353:18;11346:34;11416:3;11411:2;11400:9;11396:18;11389:31;11437:46;11478:3;11467:9;11463:19;11455:6;11437:46;:::i;:::-;11429:54;10977:512;-1:-1:-1;;;;;;10977:512:1:o;11494:249::-;11563:6;11616:2;11604:9;11595:7;11591:23;11587:32;11584:52;;;11632:1;11629;11622:12;11584:52;11664:9;11658:16;11683:30;11707:5;11683:30;:::i;11748:135::-;11787:3;11808:17;;;11805:43;;11828:18;;:::i;:::-;-1:-1:-1;11875:1:1;11864:13;;11748:135::o;11888:125::-;11928:4;11956:1;11953;11950:8;11947:34;;;11961:18;;:::i;:::-;-1:-1:-1;11998:9:1;;11888:125::o;12018:112::-;12050:1;12076;12066:35;;12081:18;;:::i;:::-;-1:-1:-1;12115:9:1;;12018:112::o;12135:184::-;-1:-1:-1;;;12184:1:1;12177:88;12284:4;12281:1;12274:15;12308:4;12305:1;12298:15

Swarm Source

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