ETH Price: $2,288.61 (-2.93%)

Token

Moon Beings Wtf (MBWTF)
 

Overview

Max Total Supply

4,000 MBWTF

Holders

275

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
9 MBWTF
0xEE722b7977F55EF51D69e0279D56bb46f4b9CA0A
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:
MoonBeingswtf

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

pragma solidity ^0.8.0;

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

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

// File: @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: @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: contracts/MoonBeingsWtf.sol


pragma solidity ^0.8.4;

// \\\    ///   .-.        .-.   \\\  /// ___    wWw wW  Ww\\\  ///   \/     oo_    (O))  ((O)(o)__(o)wWw   
// ((O)  (O)) c(O_O)c    c(O_O)c ((O)(O))(___)__ (O)_(O)(O)((O)(O))  (OO)   /  _)-<  ||    || (__  __)(O)_  
//  | \  / | ,'.---.`,  ,'.---.`, | \ || (O)(O)  / __)(..)  | \ || ,'.--.)  \__ `.   || /\ ||   (  )  / __) 
//  ||\\//||/ /|_|_|\ \/ /|_|_|\ \||\\|| /  _\  / (    ||   ||\\||/ /|_|_\     `. |  ||//\\||    )(  / (    
//  || \/ ||| \_____/ || \_____/ ||| \ | | |_))(  _)  _||_  || \ || \_.--.     _| |  / /  \ \   (  )(  _)   
//  ||    ||'. `---' .`'. `---' .`||  || | |_)) \ \_ (_/\_) ||  ||'.   \) \ ,-'   |_( /    \ )   )/ / /     
// (_/    \_) `-...-'    `-...-' (_/  \_)(.'-'   \__)      (_/  \_) `-.(_.'(_..--'(_))      (   (   )/      
//
//   Once der was dis web3 world where bored apeys , goblins , punks and- many oder obscene wanders
//   trolled da web3 worlds. War has spun out over vast networks of blockchains crushing numbers.
//   MoonBeings have been watching from afar curious how one will reach the moon.
//   Ether is our feul and our food. We love to survive in dis nasty blockchain full
//   of Ethereum. We hear and see with our many eye's dat der is great amounts to live happily.
//   We come in peace an wish to help advance in web3 society and create no cap market caps.
//   HEHEHEHEHEH WATCH US AS WE NOW IMPORT OUR STARTING PLAY INTO YOUR WORLD NAHAHADHAH GEHE!




//   We come to contract you in forms of tokens for true soul ownership NAHADHA, we want your diamond
//   Ether hands to feed us greatly pleasse squiggle on faward NEHEHHE

contract MoonBeingswtf is ERC721A, Ownable{

//   Smickled the strings you might need to heckle on your requested precious NDHSGAH

    using Strings for uint256;
    string public uriPrefix = "";
    string public uriSuffix = ".json";
    string public hiddenMetadataUri;

//   Wen da war had broke out we hadonly so meny lef
//   struggly we haav to keep a fokus to suvive

    uint256 public cost = 0.003 ether;
    uint256 public maxSupply = 4000;
    uint256 public maxMintAmountPerTx = 10;
    uint256 public mintLimit = 10;

//   WE mus wate for rite tyme to stryke!
//   Must not reveal untill WE ALL READY HGMEHMMEHAHA

    bool public paused = true;
    bool public revealed = false;

//   Wen da Goblins come, tellum bORed APeys to hold back Stay hide pleeesy      

  constructor() ERC721A("Moon Beings Wtf", "MBWTF") {
    setHiddenMetadataUri("ipfs://Qmbbpnn65jDbJ9LEb1KtJSYHx7BNo4J9zAshrpPuEEEURq/hiddenmp4.json");
  }

//   Hed KoopaKeepa ownage says us wen ready, We go wen he go!

  function daCall(uint256 quantity) external onlyOwner {
    require(totalSupply() + quantity <= maxSupply, "Max supply exceeded!");
        _safeMint(msg.sender, quantity);
    }

//   NOW ITS al OUT WAR an WE RAde da BLOCKCHAIN TO FEEEEED NAHAHANHDADAFKKA

  function daInvade(uint256 quantity) public payable {
    require(!paused, "Duh Kantract No Worky!");
    require(tx.origin == msg.sender,"Kontraks forBitten fRom mintin Yu cRazy!");
    require(quantity > 0 && quantity <= maxMintAmountPerTx, "Dat Duh Wrong Sheez!");
    require(totalSupply() + quantity <= maxSupply, "yu Kant geT Dat Many Mainy!");
    require(quantity + _numberMinted(msg.sender) <= maxSupply, "We Don hav Dat maNy Yu!");
    require(msg.value >= cost * quantity, "Yu Kant Feed uS!");
       _safeMint(msg.sender, quantity);
  
  }

//   HEHEHAMAHKSA Yu Kannot seee mezzzz yetsss , Only wen WE aL Redy HAHLKAJAJA
//   Now If yu managed to get to this , We LOVE YOU DIMONDHANDA FEEEDA NOM NOM NOM NOM
//   Rest of Da Functionsa are just Norms HehHE We gOOd tO be your Frwen HEHEH

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

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

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";

  }
// Our MisSion folklore Funktions to keep Yu At Easeeey my Peezey.


  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }
  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }
  function setMintLimit(uint256 _mintLimit) public onlyOwner {
    mintLimit = _mintLimit;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }
  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }
  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

//   Mmmmm Our Pladader has com we kan now eatZ
//   thank yous all for Feeeeeddes Usss we Kan all hang and Growz in dis Eths Webz3 HEHE Luv U.

  function withdraw() public onlyOwner {
    // =============================================================================
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }

//  Virtuals Views for yus cus we kand hav any Funkys HEHAHHGNAHa
//  Buh buy now luvers bed time in your wallet HANAHGA

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"daCall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"daInvade","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintLimit","type":"uint256"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600991620001f2565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600a91620001f2565b50660aa87bee538000600c55610fa0600d55600a600e819055600f556010805461ffff191660011790553480156200008157600080fd5b50604080518082018252600f81526e26b7b7b7102132b4b733b9902bba3360891b60208083019182528351808501909452600584526426a12baa2360d91b908401528151919291620000d691600291620001f2565b508051620000ec906003906020840190620001f2565b50506000805550620000fe3362000128565b6200012260405180608001604052806044815260200162002179604491396200017a565b620002d5565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001d95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001ee90600b906020840190620001f2565b5050565b828054620002009062000298565b90600052602060002090601f0160209004810192826200022457600085556200026f565b82601f106200023f57805160ff19168380011785556200026f565b828001600101855582156200026f579182015b828111156200026f57825182559160200191906001019062000252565b506200027d92915062000281565b5090565b5b808211156200027d576000815560010162000282565b600181811c90821680620002ad57607f821691505b60208210811415620002cf57634e487b7160e01b600052602260045260246000fd5b50919050565b611e9480620002e56000396000f3fe60806040526004361061021a5760003560e01c80636352211e116101235780639e6a1d7d116100ab578063c87b56dd1161006f578063c87b56dd146105e1578063d5abeb0114610601578063e0a8085314610617578063e985e9c514610637578063f2fde38b1461068057600080fd5b80639e6a1d7d1461054c578063a22cb4651461056c578063a45ba8e71461058c578063b071401b146105a1578063b88d4fde146105c157600080fd5b80637ec4a659116100f25780637ec4a659146104cd5780638da5cb5b146104ed57806394354fd01461050b57806395d89b4114610521578063996517cf1461053657600080fd5b80636352211e1461045857806370a0823114610478578063715018a6146104985780637d1b723c146104ad57600080fd5b80632ccc336f116101a65780634fdd43cb116101755780634fdd43cb146103d557806351830227146103f55780635503a0e8146104145780635c975abb1461042957806362b99ad41461044357600080fd5b80632ccc336f1461036d5780633ccfd60b1461038057806342842e0e1461039557806344a0d68a146103b557600080fd5b806313faede6116101ed57806313faede6146102d057806316ba10e0146102f457806316c38b3c1461031457806318160ddd1461033457806323b872dd1461034d57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611ae7565b6106a0565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106f2565b60405161024b9190611cb0565b34801561028257600080fd5b50610296610291366004611b6a565b610784565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611aa2565b6107c8565b005b3480156102dc57600080fd5b506102e6600c5481565b60405190815260200161024b565b34801561030057600080fd5b506102ce61030f366004611b21565b61089b565b34801561032057600080fd5b506102ce61032f366004611acc565b6108e5565b34801561034057600080fd5b50600154600054036102e6565b34801561035957600080fd5b506102ce6103683660046119c0565b610922565b6102ce61037b366004611b6a565b610932565b34801561038c57600080fd5b506102ce610b71565b3480156103a157600080fd5b506102ce6103b03660046119c0565b610c0c565b3480156103c157600080fd5b506102ce6103d0366004611b6a565b610c27565b3480156103e157600080fd5b506102ce6103f0366004611b21565b610c56565b34801561040157600080fd5b5060105461023f90610100900460ff1681565b34801561042057600080fd5b50610269610c93565b34801561043557600080fd5b5060105461023f9060ff1681565b34801561044f57600080fd5b50610269610d21565b34801561046457600080fd5b50610296610473366004611b6a565b610d2e565b34801561048457600080fd5b506102e6610493366004611972565b610d39565b3480156104a457600080fd5b506102ce610d88565b3480156104b957600080fd5b506102ce6104c8366004611b6a565b610dbe565b3480156104d957600080fd5b506102ce6104e8366004611b21565b610e48565b3480156104f957600080fd5b506008546001600160a01b0316610296565b34801561051757600080fd5b506102e6600e5481565b34801561052d57600080fd5b50610269610e85565b34801561054257600080fd5b506102e6600f5481565b34801561055857600080fd5b506102ce610567366004611b6a565b610e94565b34801561057857600080fd5b506102ce610587366004611a78565b610ec3565b34801561059857600080fd5b50610269610f59565b3480156105ad57600080fd5b506102ce6105bc366004611b6a565b610f66565b3480156105cd57600080fd5b506102ce6105dc3660046119fc565b610f95565b3480156105ed57600080fd5b506102696105fc366004611b6a565b610fdf565b34801561060d57600080fd5b506102e6600d5481565b34801561062357600080fd5b506102ce610632366004611acc565b61114e565b34801561064357600080fd5b5061023f61065236600461198d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561068c57600080fd5b506102ce61069b366004611972565b611192565b60006301ffc9a760e01b6001600160e01b0319831614806106d157506380ac58cd60e01b6001600160e01b03198316145b806106ec5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461070190611d86565b80601f016020809104026020016040519081016040528092919081815260200182805461072d90611d86565b801561077a5780601f1061074f5761010080835404028352916020019161077a565b820191906000526020600020905b81548152906001019060200180831161075d57829003601f168201915b5050505050905090565b600061078f8261122a565b6107ac576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107d382611251565b9050806001600160a01b0316836001600160a01b031614156108085760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461083f576108228133610652565b61083f576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146108ce5760405162461bcd60e51b81526004016108c590611cc3565b60405180910390fd5b80516108e190600a906020840190611837565b5050565b6008546001600160a01b0316331461090f5760405162461bcd60e51b81526004016108c590611cc3565b6010805460ff1916911515919091179055565b61092d8383836112b2565b505050565b60105460ff161561097e5760405162461bcd60e51b8152602060048201526016602482015275447568204b616e7472616374204e6f20576f726b792160501b60448201526064016108c5565b3233146109de5760405162461bcd60e51b815260206004820152602860248201527f4b6f6e7472616b7320666f7242697474656e2066526f6d206d696e74696e205960448201526775206352617a792160c01b60648201526084016108c5565b6000811180156109f05750600e548111155b610a335760405162461bcd60e51b8152602060048201526014602482015273446174204475682057726f6e6720536865657a2160601b60448201526064016108c5565b600d5481610a446001546000540390565b610a4e9190611cf8565b1115610a9c5760405162461bcd60e51b815260206004820152601b60248201527f7975204b616e742067655420446174204d616e79204d61696e7921000000000060448201526064016108c5565b600d54336000908152600560205260409081902054610ac6911c67ffffffffffffffff1683611cf8565b1115610b145760405162461bcd60e51b815260206004820152601760248201527f576520446f6e2068617620446174206d614e792059752100000000000000000060448201526064016108c5565b80600c54610b229190611d24565b341015610b645760405162461bcd60e51b815260206004820152601060248201526f5975204b616e7420466565642075532160801b60448201526064016108c5565b610b6e3382611455565b50565b6008546001600160a01b03163314610b9b5760405162461bcd60e51b81526004016108c590611cc3565b6000610baf6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610bf9576040519150601f19603f3d011682016040523d82523d6000602084013e610bfe565b606091505b5050905080610b6e57600080fd5b61092d83838360405180602001604052806000815250610f95565b6008546001600160a01b03163314610c515760405162461bcd60e51b81526004016108c590611cc3565b600c55565b6008546001600160a01b03163314610c805760405162461bcd60e51b81526004016108c590611cc3565b80516108e190600b906020840190611837565b600a8054610ca090611d86565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccc90611d86565b8015610d195780601f10610cee57610100808354040283529160200191610d19565b820191906000526020600020905b815481529060010190602001808311610cfc57829003601f168201915b505050505081565b60098054610ca090611d86565b60006106ec82611251565b60006001600160a01b038216610d62576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610db25760405162461bcd60e51b81526004016108c590611cc3565b610dbc600061146f565b565b6008546001600160a01b03163314610de85760405162461bcd60e51b81526004016108c590611cc3565b600d5481610df96001546000540390565b610e039190611cf8565b1115610b645760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108c5565b6008546001600160a01b03163314610e725760405162461bcd60e51b81526004016108c590611cc3565b80516108e1906009906020840190611837565b60606003805461070190611d86565b6008546001600160a01b03163314610ebe5760405162461bcd60e51b81526004016108c590611cc3565b600f55565b6001600160a01b038216331415610eed5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610ca090611d86565b6008546001600160a01b03163314610f905760405162461bcd60e51b81526004016108c590611cc3565b600e55565b610fa08484846112b2565b6001600160a01b0383163b15610fd957610fbc848484846114c1565b610fd9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610fea8261122a565b61104e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c5565b601054610100900460ff166110ef57600b805461106a90611d86565b80601f016020809104026020016040519081016040528092919081815260200182805461109690611d86565b80156110e35780601f106110b8576101008083540402835291602001916110e3565b820191906000526020600020905b8154815290600101906020018083116110c657829003601f168201915b50505050509050919050565b60006110f96115b9565b905060008151116111195760405180602001604052806000815250611147565b80611123846115c8565b600a60405160200161113793929190611baf565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111785760405162461bcd60e51b81526004016108c590611cc3565b601080549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146111bc5760405162461bcd60e51b81526004016108c590611cc3565b6001600160a01b0381166112215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c5565b610b6e8161146f565b60008054821080156106ec575050600090815260046020526040902054600160e01b161590565b60008160005481101561129957600081815260046020526040902054600160e01b8116611297575b80611147575060001901600081815260046020526040902054611279565b505b604051636f96cda160e11b815260040160405180910390fd5b60006112bd82611251565b9050836001600160a01b0316816001600160a01b0316146112f05760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061130e575061130e8533610652565b8061132957503361131e84610784565b6001600160a01b0316145b90508061134957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661137057604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661140d576001830160008181526004602052604090205461140b57600054811461140b5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6108e18282604051806020016040528060008152506116c6565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114f6903390899088908890600401611c73565b602060405180830381600087803b15801561151057600080fd5b505af1925050508015611540575060408051601f3d908101601f1916820190925261153d91810190611b04565b60015b61159b573d80801561156e576040519150601f19603f3d011682016040523d82523d6000602084013e611573565b606091505b508051611593576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461070190611d86565b6060816115ec5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611616578061160081611dc1565b915061160f9050600a83611d10565b91506115f0565b60008167ffffffffffffffff81111561163157611631611e32565b6040519080825280601f01601f19166020018201604052801561165b576020820181803683370190505b5090505b84156115b157611670600183611d43565b915061167d600a86611ddc565b611688906030611cf8565b60f81b81838151811061169d5761169d611e1c565b60200101906001600160f81b031916908160001a9053506116bf600a86611d10565b945061165f565b6000546001600160a01b0384166116ef57604051622e076360e81b815260040160405180910390fd5b8261170d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156117e2575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46117ab60008784806001019550876114c1565b6117c8576040516368d2bf6b60e11b815260040160405180910390fd5b8082106117605782600054146117dd57600080fd5b611827565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106117e3575b506000908155610fd99085838684565b82805461184390611d86565b90600052602060002090601f01602090048101928261186557600085556118ab565b82601f1061187e57805160ff19168380011785556118ab565b828001600101855582156118ab579182015b828111156118ab578251825591602001919060010190611890565b506118b79291506118bb565b5090565b5b808211156118b757600081556001016118bc565b600067ffffffffffffffff808411156118eb576118eb611e32565b604051601f8501601f19908116603f0116810190828211818310171561191357611913611e32565b8160405280935085815286868601111561192c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461195d57600080fd5b919050565b8035801515811461195d57600080fd5b60006020828403121561198457600080fd5b61114782611946565b600080604083850312156119a057600080fd5b6119a983611946565b91506119b760208401611946565b90509250929050565b6000806000606084860312156119d557600080fd5b6119de84611946565b92506119ec60208501611946565b9150604084013590509250925092565b60008060008060808587031215611a1257600080fd5b611a1b85611946565b9350611a2960208601611946565b925060408501359150606085013567ffffffffffffffff811115611a4c57600080fd5b8501601f81018713611a5d57600080fd5b611a6c878235602084016118d0565b91505092959194509250565b60008060408385031215611a8b57600080fd5b611a9483611946565b91506119b760208401611962565b60008060408385031215611ab557600080fd5b611abe83611946565b946020939093013593505050565b600060208284031215611ade57600080fd5b61114782611962565b600060208284031215611af957600080fd5b813561114781611e48565b600060208284031215611b1657600080fd5b815161114781611e48565b600060208284031215611b3357600080fd5b813567ffffffffffffffff811115611b4a57600080fd5b8201601f81018413611b5b57600080fd5b6115b1848235602084016118d0565b600060208284031215611b7c57600080fd5b5035919050565b60008151808452611b9b816020860160208601611d5a565b601f01601f19169290920160200192915050565b600084516020611bc28285838a01611d5a565b855191840191611bd58184848a01611d5a565b8554920191600090600181811c9080831680611bf257607f831692505b858310811415611c1057634e487b7160e01b85526022600452602485fd5b808015611c245760018114611c3557611c62565b60ff19851688528388019550611c62565b60008b81526020902060005b85811015611c5a5781548a820152908401908801611c41565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ca690830184611b83565b9695505050505050565b6020815260006111476020830184611b83565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611d0b57611d0b611df0565b500190565b600082611d1f57611d1f611e06565b500490565b6000816000190483118215151615611d3e57611d3e611df0565b500290565b600082821015611d5557611d55611df0565b500390565b60005b83811015611d75578181015183820152602001611d5d565b83811115610fd95750506000910152565b600181811c90821680611d9a57607f821691505b60208210811415611dbb57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611dd557611dd5611df0565b5060010190565b600082611deb57611deb611e06565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b6e57600080fdfea2646970667358221220c4e26458c10a0fba86593783cd97b2447e72ba96d618352a90715616bcaa3a1d64736f6c63430008070033697066733a2f2f516d6262706e6e36356a44624a394c4562314b744a5359487837424e6f344a397a417368727050754545455552712f68696464656e6d70342e6a736f6e

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80636352211e116101235780639e6a1d7d116100ab578063c87b56dd1161006f578063c87b56dd146105e1578063d5abeb0114610601578063e0a8085314610617578063e985e9c514610637578063f2fde38b1461068057600080fd5b80639e6a1d7d1461054c578063a22cb4651461056c578063a45ba8e71461058c578063b071401b146105a1578063b88d4fde146105c157600080fd5b80637ec4a659116100f25780637ec4a659146104cd5780638da5cb5b146104ed57806394354fd01461050b57806395d89b4114610521578063996517cf1461053657600080fd5b80636352211e1461045857806370a0823114610478578063715018a6146104985780637d1b723c146104ad57600080fd5b80632ccc336f116101a65780634fdd43cb116101755780634fdd43cb146103d557806351830227146103f55780635503a0e8146104145780635c975abb1461042957806362b99ad41461044357600080fd5b80632ccc336f1461036d5780633ccfd60b1461038057806342842e0e1461039557806344a0d68a146103b557600080fd5b806313faede6116101ed57806313faede6146102d057806316ba10e0146102f457806316c38b3c1461031457806318160ddd1461033457806323b872dd1461034d57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611ae7565b6106a0565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106f2565b60405161024b9190611cb0565b34801561028257600080fd5b50610296610291366004611b6a565b610784565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611aa2565b6107c8565b005b3480156102dc57600080fd5b506102e6600c5481565b60405190815260200161024b565b34801561030057600080fd5b506102ce61030f366004611b21565b61089b565b34801561032057600080fd5b506102ce61032f366004611acc565b6108e5565b34801561034057600080fd5b50600154600054036102e6565b34801561035957600080fd5b506102ce6103683660046119c0565b610922565b6102ce61037b366004611b6a565b610932565b34801561038c57600080fd5b506102ce610b71565b3480156103a157600080fd5b506102ce6103b03660046119c0565b610c0c565b3480156103c157600080fd5b506102ce6103d0366004611b6a565b610c27565b3480156103e157600080fd5b506102ce6103f0366004611b21565b610c56565b34801561040157600080fd5b5060105461023f90610100900460ff1681565b34801561042057600080fd5b50610269610c93565b34801561043557600080fd5b5060105461023f9060ff1681565b34801561044f57600080fd5b50610269610d21565b34801561046457600080fd5b50610296610473366004611b6a565b610d2e565b34801561048457600080fd5b506102e6610493366004611972565b610d39565b3480156104a457600080fd5b506102ce610d88565b3480156104b957600080fd5b506102ce6104c8366004611b6a565b610dbe565b3480156104d957600080fd5b506102ce6104e8366004611b21565b610e48565b3480156104f957600080fd5b506008546001600160a01b0316610296565b34801561051757600080fd5b506102e6600e5481565b34801561052d57600080fd5b50610269610e85565b34801561054257600080fd5b506102e6600f5481565b34801561055857600080fd5b506102ce610567366004611b6a565b610e94565b34801561057857600080fd5b506102ce610587366004611a78565b610ec3565b34801561059857600080fd5b50610269610f59565b3480156105ad57600080fd5b506102ce6105bc366004611b6a565b610f66565b3480156105cd57600080fd5b506102ce6105dc3660046119fc565b610f95565b3480156105ed57600080fd5b506102696105fc366004611b6a565b610fdf565b34801561060d57600080fd5b506102e6600d5481565b34801561062357600080fd5b506102ce610632366004611acc565b61114e565b34801561064357600080fd5b5061023f61065236600461198d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561068c57600080fd5b506102ce61069b366004611972565b611192565b60006301ffc9a760e01b6001600160e01b0319831614806106d157506380ac58cd60e01b6001600160e01b03198316145b806106ec5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461070190611d86565b80601f016020809104026020016040519081016040528092919081815260200182805461072d90611d86565b801561077a5780601f1061074f5761010080835404028352916020019161077a565b820191906000526020600020905b81548152906001019060200180831161075d57829003601f168201915b5050505050905090565b600061078f8261122a565b6107ac576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107d382611251565b9050806001600160a01b0316836001600160a01b031614156108085760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461083f576108228133610652565b61083f576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146108ce5760405162461bcd60e51b81526004016108c590611cc3565b60405180910390fd5b80516108e190600a906020840190611837565b5050565b6008546001600160a01b0316331461090f5760405162461bcd60e51b81526004016108c590611cc3565b6010805460ff1916911515919091179055565b61092d8383836112b2565b505050565b60105460ff161561097e5760405162461bcd60e51b8152602060048201526016602482015275447568204b616e7472616374204e6f20576f726b792160501b60448201526064016108c5565b3233146109de5760405162461bcd60e51b815260206004820152602860248201527f4b6f6e7472616b7320666f7242697474656e2066526f6d206d696e74696e205960448201526775206352617a792160c01b60648201526084016108c5565b6000811180156109f05750600e548111155b610a335760405162461bcd60e51b8152602060048201526014602482015273446174204475682057726f6e6720536865657a2160601b60448201526064016108c5565b600d5481610a446001546000540390565b610a4e9190611cf8565b1115610a9c5760405162461bcd60e51b815260206004820152601b60248201527f7975204b616e742067655420446174204d616e79204d61696e7921000000000060448201526064016108c5565b600d54336000908152600560205260409081902054610ac6911c67ffffffffffffffff1683611cf8565b1115610b145760405162461bcd60e51b815260206004820152601760248201527f576520446f6e2068617620446174206d614e792059752100000000000000000060448201526064016108c5565b80600c54610b229190611d24565b341015610b645760405162461bcd60e51b815260206004820152601060248201526f5975204b616e7420466565642075532160801b60448201526064016108c5565b610b6e3382611455565b50565b6008546001600160a01b03163314610b9b5760405162461bcd60e51b81526004016108c590611cc3565b6000610baf6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610bf9576040519150601f19603f3d011682016040523d82523d6000602084013e610bfe565b606091505b5050905080610b6e57600080fd5b61092d83838360405180602001604052806000815250610f95565b6008546001600160a01b03163314610c515760405162461bcd60e51b81526004016108c590611cc3565b600c55565b6008546001600160a01b03163314610c805760405162461bcd60e51b81526004016108c590611cc3565b80516108e190600b906020840190611837565b600a8054610ca090611d86565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccc90611d86565b8015610d195780601f10610cee57610100808354040283529160200191610d19565b820191906000526020600020905b815481529060010190602001808311610cfc57829003601f168201915b505050505081565b60098054610ca090611d86565b60006106ec82611251565b60006001600160a01b038216610d62576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610db25760405162461bcd60e51b81526004016108c590611cc3565b610dbc600061146f565b565b6008546001600160a01b03163314610de85760405162461bcd60e51b81526004016108c590611cc3565b600d5481610df96001546000540390565b610e039190611cf8565b1115610b645760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108c5565b6008546001600160a01b03163314610e725760405162461bcd60e51b81526004016108c590611cc3565b80516108e1906009906020840190611837565b60606003805461070190611d86565b6008546001600160a01b03163314610ebe5760405162461bcd60e51b81526004016108c590611cc3565b600f55565b6001600160a01b038216331415610eed5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610ca090611d86565b6008546001600160a01b03163314610f905760405162461bcd60e51b81526004016108c590611cc3565b600e55565b610fa08484846112b2565b6001600160a01b0383163b15610fd957610fbc848484846114c1565b610fd9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610fea8261122a565b61104e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c5565b601054610100900460ff166110ef57600b805461106a90611d86565b80601f016020809104026020016040519081016040528092919081815260200182805461109690611d86565b80156110e35780601f106110b8576101008083540402835291602001916110e3565b820191906000526020600020905b8154815290600101906020018083116110c657829003601f168201915b50505050509050919050565b60006110f96115b9565b905060008151116111195760405180602001604052806000815250611147565b80611123846115c8565b600a60405160200161113793929190611baf565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111785760405162461bcd60e51b81526004016108c590611cc3565b601080549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146111bc5760405162461bcd60e51b81526004016108c590611cc3565b6001600160a01b0381166112215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c5565b610b6e8161146f565b60008054821080156106ec575050600090815260046020526040902054600160e01b161590565b60008160005481101561129957600081815260046020526040902054600160e01b8116611297575b80611147575060001901600081815260046020526040902054611279565b505b604051636f96cda160e11b815260040160405180910390fd5b60006112bd82611251565b9050836001600160a01b0316816001600160a01b0316146112f05760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061130e575061130e8533610652565b8061132957503361131e84610784565b6001600160a01b0316145b90508061134957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661137057604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661140d576001830160008181526004602052604090205461140b57600054811461140b5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6108e18282604051806020016040528060008152506116c6565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114f6903390899088908890600401611c73565b602060405180830381600087803b15801561151057600080fd5b505af1925050508015611540575060408051601f3d908101601f1916820190925261153d91810190611b04565b60015b61159b573d80801561156e576040519150601f19603f3d011682016040523d82523d6000602084013e611573565b606091505b508051611593576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461070190611d86565b6060816115ec5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611616578061160081611dc1565b915061160f9050600a83611d10565b91506115f0565b60008167ffffffffffffffff81111561163157611631611e32565b6040519080825280601f01601f19166020018201604052801561165b576020820181803683370190505b5090505b84156115b157611670600183611d43565b915061167d600a86611ddc565b611688906030611cf8565b60f81b81838151811061169d5761169d611e1c565b60200101906001600160f81b031916908160001a9053506116bf600a86611d10565b945061165f565b6000546001600160a01b0384166116ef57604051622e076360e81b815260040160405180910390fd5b8261170d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156117e2575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46117ab60008784806001019550876114c1565b6117c8576040516368d2bf6b60e11b815260040160405180910390fd5b8082106117605782600054146117dd57600080fd5b611827565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106117e3575b506000908155610fd99085838684565b82805461184390611d86565b90600052602060002090601f01602090048101928261186557600085556118ab565b82601f1061187e57805160ff19168380011785556118ab565b828001600101855582156118ab579182015b828111156118ab578251825591602001919060010190611890565b506118b79291506118bb565b5090565b5b808211156118b757600081556001016118bc565b600067ffffffffffffffff808411156118eb576118eb611e32565b604051601f8501601f19908116603f0116810190828211818310171561191357611913611e32565b8160405280935085815286868601111561192c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461195d57600080fd5b919050565b8035801515811461195d57600080fd5b60006020828403121561198457600080fd5b61114782611946565b600080604083850312156119a057600080fd5b6119a983611946565b91506119b760208401611946565b90509250929050565b6000806000606084860312156119d557600080fd5b6119de84611946565b92506119ec60208501611946565b9150604084013590509250925092565b60008060008060808587031215611a1257600080fd5b611a1b85611946565b9350611a2960208601611946565b925060408501359150606085013567ffffffffffffffff811115611a4c57600080fd5b8501601f81018713611a5d57600080fd5b611a6c878235602084016118d0565b91505092959194509250565b60008060408385031215611a8b57600080fd5b611a9483611946565b91506119b760208401611962565b60008060408385031215611ab557600080fd5b611abe83611946565b946020939093013593505050565b600060208284031215611ade57600080fd5b61114782611962565b600060208284031215611af957600080fd5b813561114781611e48565b600060208284031215611b1657600080fd5b815161114781611e48565b600060208284031215611b3357600080fd5b813567ffffffffffffffff811115611b4a57600080fd5b8201601f81018413611b5b57600080fd5b6115b1848235602084016118d0565b600060208284031215611b7c57600080fd5b5035919050565b60008151808452611b9b816020860160208601611d5a565b601f01601f19169290920160200192915050565b600084516020611bc28285838a01611d5a565b855191840191611bd58184848a01611d5a565b8554920191600090600181811c9080831680611bf257607f831692505b858310811415611c1057634e487b7160e01b85526022600452602485fd5b808015611c245760018114611c3557611c62565b60ff19851688528388019550611c62565b60008b81526020902060005b85811015611c5a5781548a820152908401908801611c41565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ca690830184611b83565b9695505050505050565b6020815260006111476020830184611b83565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611d0b57611d0b611df0565b500190565b600082611d1f57611d1f611e06565b500490565b6000816000190483118215151615611d3e57611d3e611df0565b500290565b600082821015611d5557611d55611df0565b500390565b60005b83811015611d75578181015183820152602001611d5d565b83811115610fd95750506000910152565b600181811c90821680611d9a57607f821691505b60208210811415611dbb57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611dd557611dd5611df0565b5060010190565b600082611deb57611deb611e06565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b6e57600080fdfea2646970667358221220c4e26458c10a0fba86593783cd97b2447e72ba96d618352a90715616bcaa3a1d64736f6c63430008070033

Deployed Bytecode Sourcemap

45608:4449:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16527:615;;;;;;;;;;-1:-1:-1;16527:615:0;;;;;:::i;:::-;;:::i;:::-;;;7170:14:1;;7163:22;7145:41;;7133:2;7118:18;16527:615:0;;;;;;;;21540:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23608:204::-;;;;;;;;;;-1:-1:-1;23608:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6468:32:1;;;6450:51;;6438:2;6423:18;23608:204:0;6304:203:1;23068:474:0;;;;;;;;;;-1:-1:-1;23068:474:0;;;;;:::i;:::-;;:::i;:::-;;46000:33;;;;;;;;;;;;;;;;;;;11262:25:1;;;11250:2;11235:18;46000:33:0;11116:177:1;48936:100:0;;;;;;;;;;-1:-1:-1;48936:100:0;;;;;:::i;:::-;;:::i;49040:77::-;;;;;;;;;;-1:-1:-1;49040:77:0;;;;;:::i;:::-;;:::i;15581:315::-;;;;;;;;;;-1:-1:-1;15847:12:0;;15634:7;15831:13;:28;15581:315;;24494:170;;;;;;;;;;-1:-1:-1;24494:170:0;;;;;:::i;:::-;;:::i;46906:559::-;;;;;;:::i;:::-;;:::i;49271:548::-;;;;;;;;;;;;;:::i;24735:185::-;;;;;;;;;;-1:-1:-1;24735:185:0;;;;;:::i;:::-;;:::i;48382:74::-;;;;;;;;;;-1:-1:-1;48382:74:0;;;;;:::i;:::-;;:::i;48694:132::-;;;;;;;;;;-1:-1:-1;48694:132:0;;;;;:::i;:::-;;:::i;46293:28::-;;;;;;;;;;-1:-1:-1;46293:28:0;;;;;;;;;;;45815:33;;;;;;;;;;;;;:::i;46261:25::-;;;;;;;;;;-1:-1:-1;46261:25:0;;;;;;;;45780:28;;;;;;;;;;;;;:::i;21329:144::-;;;;;;;;;;-1:-1:-1;21329:144:0;;;;;:::i;:::-;;:::i;17206:224::-;;;;;;;;;;-1:-1:-1;17206:224:0;;;;;:::i;:::-;;:::i;2637:103::-;;;;;;;;;;;;;:::i;46640:180::-;;;;;;;;;;-1:-1:-1;46640:180:0;;;;;:::i;:::-;;:::i;48832:100::-;;;;;;;;;;-1:-1:-1;48832:100:0;;;;;:::i;:::-;;:::i;1986:87::-;;;;;;;;;;-1:-1:-1;2059:6:0;;-1:-1:-1;;;;;2059:6:0;1986:87;;46078:38;;;;;;;;;;;;;;;;21709:104;;;;;;;;;;;;;:::i;46123:29::-;;;;;;;;;;;;;;;;48594:94;;;;;;;;;;-1:-1:-1;48594:94:0;;;;;:::i;:::-;;:::i;23884:308::-;;;;;;;;;;-1:-1:-1;23884:308:0;;;;;:::i;:::-;;:::i;45855:31::-;;;;;;;;;;;;;:::i;48460:130::-;;;;;;;;;;-1:-1:-1;48460:130:0;;;;;:::i;:::-;;:::i;24991:396::-;;;;;;;;;;-1:-1:-1;24991:396:0;;;;;:::i;:::-;;:::i;47723:496::-;;;;;;;;;;-1:-1:-1;47723:496:0;;;;;:::i;:::-;;:::i;46040:31::-;;;;;;;;;;;;;;;;48295:81;;;;;;;;;;-1:-1:-1;48295:81:0;;;;;:::i;:::-;;:::i;24263:164::-;;;;;;;;;;-1:-1:-1;24263:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24384:25:0;;;24360:4;24384:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24263:164;2895:201;;;;;;;;;;-1:-1:-1;2895:201:0;;;;;:::i;:::-;;:::i;16527:615::-;16612:4;-1:-1:-1;;;;;;;;;16912:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;16989:25:0;;;16912:102;:179;;;-1:-1:-1;;;;;;;;;;17066:25:0;;;16912:179;16892:199;16527:615;-1:-1:-1;;16527:615:0:o;21540:100::-;21594:13;21627:5;21620:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21540:100;:::o;23608:204::-;23676:7;23701:16;23709:7;23701;:16::i;:::-;23696:64;;23726:34;;-1:-1:-1;;;23726:34:0;;;;;;;;;;;23696:64;-1:-1:-1;23780:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23780:24:0;;23608:204::o;23068:474::-;23141:13;23173:27;23192:7;23173:18;:27::i;:::-;23141:61;;23223:5;-1:-1:-1;;;;;23217:11:0;:2;-1:-1:-1;;;;;23217:11:0;;23213:48;;;23237:24;;-1:-1:-1;;;23237:24:0;;;;;;;;;;;23213:48;39711:10;-1:-1:-1;;;;;23278:28:0;;;23274:175;;23326:44;23343:5;39711:10;24263:164;:::i;23326:44::-;23321:128;;23398:35;;-1:-1:-1;;;23398:35:0;;;;;;;;;;;23321:128;23461:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23461:29:0;-1:-1:-1;;;;;23461:29:0;;;;;;;;;23506:28;;23461:24;;23506:28;;;;;;;23130:412;23068:474;;:::o;48936:100::-;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;;;;;;;;;49008:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48936:100:::0;:::o;49040:77::-;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;49096:6:::1;:15:::0;;-1:-1:-1;;49096:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49040:77::o;24494:170::-;24628:28;24638:4;24644:2;24648:7;24628:9;:28::i;:::-;24494:170;;;:::o;46906:559::-;46973:6;;;;46972:7;46964:42;;;;-1:-1:-1;;;46964:42:0;;10967:2:1;46964:42:0;;;10949:21:1;11006:2;10986:18;;;10979:30;-1:-1:-1;;;11025:18:1;;;11018:52;11087:18;;46964:42:0;10765:346:1;46964:42:0;47021:9;47034:10;47021:23;47013:75;;;;-1:-1:-1;;;47013:75:0;;9087:2:1;47013:75:0;;;9069:21:1;9126:2;9106:18;;;9099:30;9165:34;9145:18;;;9138:62;-1:-1:-1;;;9216:18:1;;;9209:38;9264:19;;47013:75:0;8885:404:1;47013:75:0;47114:1;47103:8;:12;:46;;;;;47131:18;;47119:8;:30;;47103:46;47095:79;;;;-1:-1:-1;;;47095:79:0;;8738:2:1;47095:79:0;;;8720:21:1;8777:2;8757:18;;;8750:30;-1:-1:-1;;;8796:18:1;;;8789:50;8856:18;;47095:79:0;8536:344:1;47095:79:0;47217:9;;47205:8;47189:13;15847:12;;15634:7;15831:13;:28;;15581:315;47189:13;:24;;;;:::i;:::-;:37;;47181:77;;;;-1:-1:-1;;;47181:77:0;;7975:2:1;47181:77:0;;;7957:21:1;8014:2;7994:18;;;7987:30;8053:29;8033:18;;;8026:57;8100:18;;47181:77:0;7773:351:1;47181:77:0;47313:9;;47298:10;17573:7;17601:25;;;:18;:25;;12682:2;17601:25;;;;;47273:36;;17601:49;12545:13;17600:80;47273:8;:36;:::i;:::-;:49;;47265:85;;;;-1:-1:-1;;;47265:85:0;;7623:2:1;47265:85:0;;;7605:21:1;7662:2;7642:18;;;7635:30;7701:25;7681:18;;;7674:53;7744:18;;47265:85:0;7421:347:1;47265:85:0;47385:8;47378:4;;:15;;;;:::i;:::-;47365:9;:28;;47357:57;;;;-1:-1:-1;;;47357:57:0;;10622:2:1;47357:57:0;;;10604:21:1;10661:2;10641:18;;;10634:30;-1:-1:-1;;;10680:18:1;;;10673:46;10736:18;;47357:57:0;10420:340:1;47357:57:0;47424:31;47434:10;47446:8;47424:9;:31::i;:::-;46906:559;:::o;49271:548::-;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;49641:7:::1;49662;2059:6:::0;;-1:-1:-1;;;;;2059:6:0;;1986:87;49662:7:::1;-1:-1:-1::0;;;;;49654:21:0::1;49683;49654:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49640:69;;;49724:2;49716:11;;;::::0;::::1;24735:185:::0;24873:39;24890:4;24896:2;24900:7;24873:39;;;;;;;;;;;;:16;:39::i;48382:74::-;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;48438:4:::1;:12:::0;48382:74::o;48694:132::-;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;48782:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;45815:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45780:28::-;;;;;;;:::i;21329:144::-;21393:7;21436:27;21455:7;21436:18;:27::i;17206:224::-;17270:7;-1:-1:-1;;;;;17294:19:0;;17290:60;;17322:28;;-1:-1:-1;;;17322:28:0;;;;;;;;;;;17290:60;-1:-1:-1;;;;;;17368:25:0;;;;;:18;:25;;;;;;12545:13;17368:54;;17206:224::o;2637:103::-;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;2702:30:::1;2729:1;2702:18;:30::i;:::-;2637:103::o:0;46640:180::-;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;46736:9:::1;;46724:8;46708:13;15847:12:::0;;15634:7;15831:13;:28;;15581:315;46708:13:::1;:24;;;;:::i;:::-;:37;;46700:70;;;::::0;-1:-1:-1;;;46700:70:0;;10273:2:1;46700:70:0::1;::::0;::::1;10255:21:1::0;10312:2;10292:18;;;10285:30;-1:-1:-1;;;10331:18:1;;;10324:50;10391:18;;46700:70:0::1;10071:344:1::0;48832:100:0;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;48904:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;21709:104::-:0;21765:13;21798:7;21791:14;;;;;:::i;48594:94::-;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;48660:9:::1;:22:::0;48594:94::o;23884:308::-;-1:-1:-1;;;;;23983:31:0;;39711:10;23983:31;23979:61;;;24023:17;;-1:-1:-1;;;24023:17:0;;;;;;;;;;;23979:61;39711:10;24053:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24053:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24053:60:0;;;;;;;;;;24129:55;;7145:41:1;;;24053:49:0;;39711:10;24129:55;;7118:18:1;24129:55:0;;;;;;;23884:308;;:::o;45855:31::-;;;;;;;:::i;48460:130::-;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;48544:18:::1;:40:::0;48460:130::o;24991:396::-;25158:28;25168:4;25174:2;25178:7;25158:9;:28::i;:::-;-1:-1:-1;;;;;25201:14:0;;;:19;25197:183;;25240:56;25271:4;25277:2;25281:7;25290:5;25240:30;:56::i;:::-;25235:145;;25324:40;;-1:-1:-1;;;25324:40:0;;;;;;;;;;;25235:145;24991:396;;;;:::o;47723:496::-;47822:13;47863:17;47871:8;47863:7;:17::i;:::-;47847:98;;;;-1:-1:-1;;;47847:98:0;;9857:2:1;47847:98:0;;;9839:21:1;9896:2;9876:18;;;9869:30;9935:34;9915:18;;;9908:62;-1:-1:-1;;;9986:18:1;;;9979:45;10041:19;;47847:98:0;9655:411:1;47847:98:0;47958:8;;;;;;;47954:64;;47993:17;47986:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47723:496;;;:::o;47954:64::-;48026:28;48057:10;:8;:10::i;:::-;48026:41;;48112:1;48087:14;48081:28;:32;:130;;;;;;;;;;;;;;;;;48149:14;48165:19;:8;:17;:19::i;:::-;48186:9;48132:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48081:130;48074:137;47723:496;-1:-1:-1;;;47723:496:0:o;48295:81::-;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;48353:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;48353:17:0;;::::1;::::0;;;::::1;::::0;;48295:81::o;2895:201::-;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2984:22:0;::::1;2976:73;;;::::0;-1:-1:-1;;;2976:73:0;;8331:2:1;2976:73:0::1;::::0;::::1;8313:21:1::0;8370:2;8350:18;;;8343:30;8409:34;8389:18;;;8382:62;-1:-1:-1;;;8460:18:1;;;8453:36;8506:19;;2976:73:0::1;8129:402:1::0;2976:73:0::1;3060:28;3079:8;3060:18;:28::i;25642:273::-:0;25699:4;25789:13;;25779:7;:23;25736:152;;;;-1:-1:-1;;25840:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;25840:43:0;:48;;25642:273::o;18844:1129::-;18911:7;18946;19048:13;;19041:4;:20;19037:869;;;19086:14;19103:23;;;:17;:23;;;;;;-1:-1:-1;;;19192:23:0;;19188:699;;19711:113;19718:11;19711:113;;-1:-1:-1;;;19789:6:0;19771:25;;;;:17;:25;;;;;;19711:113;;19188:699;19063:843;19037:869;19934:31;;-1:-1:-1;;;19934:31:0;;;;;;;;;;;30881:2515;30996:27;31026;31045:7;31026:18;:27::i;:::-;30996:57;;31111:4;-1:-1:-1;;;;;31070:45:0;31086:19;-1:-1:-1;;;;;31070:45:0;;31066:86;;31124:28;;-1:-1:-1;;;31124:28:0;;;;;;;;;;;31066:86;31165:22;39711:10;-1:-1:-1;;;;;31191:27:0;;;;:87;;-1:-1:-1;31235:43:0;31252:4;39711:10;24263:164;:::i;31235:43::-;31191:147;;;-1:-1:-1;39711:10:0;31295:20;31307:7;31295:11;:20::i;:::-;-1:-1:-1;;;;;31295:43:0;;31191:147;31165:174;;31357:17;31352:66;;31383:35;;-1:-1:-1;;;31383:35:0;;;;;;;;;;;31352:66;-1:-1:-1;;;;;31433:16:0;;31429:52;;31458:23;;-1:-1:-1;;;31458:23:0;;;;;;;;;;;31429:52;31610:24;;;;:15;:24;;;;;;;;31603:31;;-1:-1:-1;;;;;;31603:31:0;;;-1:-1:-1;;;;;32002:24:0;;;;;:18;:24;;;;;32000:26;;-1:-1:-1;;32000:26:0;;;32071:22;;;;;;;32069:24;;-1:-1:-1;32069:24:0;;;32364:26;;;:17;:26;;;;;-1:-1:-1;;;32452:15:0;13199:3;32452:41;32410:84;;:128;;32364:174;;;32658:46;;32654:626;;32762:1;32752:11;;32730:19;32885:30;;;:17;:30;;;;;;32881:384;;33023:13;;33008:11;:28;33004:242;;33170:30;;;;:17;:30;;;;;:52;;;33004:242;32711:569;32654:626;33327:7;33323:2;-1:-1:-1;;;;;33308:27:0;33317:4;-1:-1:-1;;;;;33308:27:0;;;;;;;;;;;30985:2411;;30881:2515;;;:::o;25999:104::-;26068:27;26078:2;26082:8;26068:27;;;;;;;;;;;;:9;:27::i;3256:191::-;3349:6;;;-1:-1:-1;;;;;3366:17:0;;;-1:-1:-1;;;;;;3366:17:0;;;;;;;3399:40;;3349:6;;;3366:17;3349:6;;3399:40;;3330:16;;3399:40;3319:128;3256:191;:::o;37093:716::-;37277:88;;-1:-1:-1;;;37277:88:0;;37256:4;;-1:-1:-1;;;;;37277:45:0;;;;;:88;;39711:10;;37344:4;;37350:7;;37359:5;;37277:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37277:88:0;;;;;;;;-1:-1:-1;;37277:88:0;;;;;;;;;;;;:::i;:::-;;;37273:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37560:13:0;;37556:235;;37606:40;;-1:-1:-1;;;37606:40:0;;;;;;;;;;;37556:235;37749:6;37743:13;37734:6;37730:2;37726:15;37719:38;37273:529;-1:-1:-1;;;;;;37436:64:0;-1:-1:-1;;;37436:64:0;;-1:-1:-1;37273:529:0;37093:716;;;;;;:::o;49950:104::-;50010:13;50039:9;50032:16;;;;;:::i;42166:723::-;42222:13;42443:10;42439:53;;-1:-1:-1;;42470:10:0;;;;;;;;;;;;-1:-1:-1;;;42470:10:0;;;;;42166:723::o;42439:53::-;42517:5;42502:12;42558:78;42565:9;;42558:78;;42591:8;;;;:::i;:::-;;-1:-1:-1;42614:10:0;;-1:-1:-1;42622:2:0;42614:10;;:::i;:::-;;;42558:78;;;42646:19;42678:6;42668:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42668:17:0;;42646:39;;42696:154;42703:10;;42696:154;;42730:11;42740:1;42730:11;;:::i;:::-;;-1:-1:-1;42799:10:0;42807:2;42799:5;:10;:::i;:::-;42786:24;;:2;:24;:::i;:::-;42773:39;;42756:6;42763;42756:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;42756:56:0;;;;;;;;-1:-1:-1;42827:11:0;42836:2;42827:11;;:::i;:::-;;;42696:154;;26476:2236;26599:20;26622:13;-1:-1:-1;;;;;26650:16:0;;26646:48;;26675:19;;-1:-1:-1;;;26675:19:0;;;;;;;;;;;26646:48;26709:13;26705:44;;26731:18;;-1:-1:-1;;;26731:18:0;;;;;;;;;;;26705:44;-1:-1:-1;;;;;27298:22:0;;;;;;:18;:22;;;;12682:2;27298:22;;;:70;;27336:31;27324:44;;27298:70;;;27611:31;;;:17;:31;;;;;27704:15;13199:3;27704:41;27662:84;;-1:-1:-1;27782:13:0;;13462:3;27767:56;27662:162;27611:213;;:31;;27905:23;;;;27949:14;:19;27945:635;;27989:313;28020:38;;28045:12;;-1:-1:-1;;;;;28020:38:0;;;28037:1;;28020:38;;28037:1;;28020:38;28086:69;28125:1;28129:2;28133:14;;;;;;28149:5;28086:30;:69::i;:::-;28081:174;;28191:40;;-1:-1:-1;;;28191:40:0;;;;;;;;;;;28081:174;28297:3;28282:12;:18;27989:313;;28383:12;28366:13;;:29;28362:43;;28397:8;;;28362:43;27945:635;;;28446:119;28477:40;;28502:14;;;;;-1:-1:-1;;;;;28477:40:0;;;28494:1;;28477:40;;28494:1;;28477:40;28560:3;28545:12;:18;28446:119;;27945:635;-1:-1:-1;28594:13:0;:28;;;28644:60;;28677:2;28681:12;28695:8;28644:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:1527::-;4786:3;4824:6;4818:13;4850:4;4863:51;4907:6;4902:3;4897:2;4889:6;4885:15;4863:51;:::i;:::-;4977:13;;4936:16;;;;4999:55;4977:13;4936:16;5021:15;;;4999:55;:::i;:::-;5143:13;;5076:20;;;5116:1;;5203;5225:18;;;;5278;;;;5305:93;;5383:4;5373:8;5369:19;5357:31;;5305:93;5446:2;5436:8;5433:16;5413:18;5410:40;5407:167;;;-1:-1:-1;;;5473:33:1;;5529:4;5526:1;5519:15;5559:4;5480:3;5547:17;5407:167;5590:18;5617:110;;;;5741:1;5736:328;;;;5583:481;;5617:110;-1:-1:-1;;5652:24:1;;5638:39;;5697:20;;;;-1:-1:-1;5617:110:1;;5736:328;11371:1;11364:14;;;11408:4;11395:18;;5831:1;5845:169;5859:8;5856:1;5853:15;5845:169;;;5941:14;;5926:13;;;5919:37;5984:16;;;;5876:10;;5845:169;;;5849:3;;6045:8;6038:5;6034:20;6027:27;;5583:481;-1:-1:-1;6080:3:1;;4562:1527;-1:-1:-1;;;;;;;;;;;4562:1527:1:o;6512:488::-;-1:-1:-1;;;;;6781:15:1;;;6763:34;;6833:15;;6828:2;6813:18;;6806:43;6880:2;6865:18;;6858:34;;;6928:3;6923:2;6908:18;;6901:31;;;6706:4;;6949:45;;6974:19;;6966:6;6949:45;:::i;:::-;6941:53;6512:488;-1:-1:-1;;;;;;6512:488:1:o;7197:219::-;7346:2;7335:9;7328:21;7309:4;7366:44;7406:2;7395:9;7391:18;7383:6;7366:44;:::i;9294:356::-;9496:2;9478:21;;;9515:18;;;9508:30;9574:34;9569:2;9554:18;;9547:62;9641:2;9626:18;;9294:356::o;11424:128::-;11464:3;11495:1;11491:6;11488:1;11485:13;11482:39;;;11501:18;;:::i;:::-;-1:-1:-1;11537:9:1;;11424:128::o;11557:120::-;11597:1;11623;11613:35;;11628:18;;:::i;:::-;-1:-1:-1;11662:9:1;;11557:120::o;11682:168::-;11722:7;11788:1;11784;11780:6;11776:14;11773:1;11770:21;11765:1;11758:9;11751:17;11747:45;11744:71;;;11795:18;;:::i;:::-;-1:-1:-1;11835:9:1;;11682:168::o;11855:125::-;11895:4;11923:1;11920;11917:8;11914:34;;;11928:18;;:::i;:::-;-1:-1:-1;11965:9:1;;11855:125::o;11985:258::-;12057:1;12067:113;12081:6;12078:1;12075:13;12067:113;;;12157:11;;;12151:18;12138:11;;;12131:39;12103:2;12096:10;12067:113;;;12198:6;12195:1;12192:13;12189:48;;;-1:-1:-1;;12233:1:1;12215:16;;12208:27;11985:258::o;12248:380::-;12327:1;12323:12;;;;12370;;;12391:61;;12445:4;12437:6;12433:17;12423:27;;12391:61;12498:2;12490:6;12487:14;12467:18;12464:38;12461:161;;;12544:10;12539:3;12535:20;12532:1;12525:31;12579:4;12576:1;12569:15;12607:4;12604:1;12597:15;12461:161;;12248:380;;;:::o;12633:135::-;12672:3;-1:-1:-1;;12693:17:1;;12690:43;;;12713:18;;:::i;:::-;-1:-1:-1;12760:1:1;12749:13;;12633:135::o;12773:112::-;12805:1;12831;12821:35;;12836:18;;:::i;:::-;-1:-1:-1;12870:9:1;;12773:112::o;12890:127::-;12951:10;12946:3;12942:20;12939:1;12932:31;12982:4;12979:1;12972:15;13006:4;13003:1;12996:15;13022:127;13083:10;13078:3;13074:20;13071:1;13064:31;13114:4;13111:1;13104:15;13138:4;13135:1;13128:15;13154:127;13215:10;13210:3;13206:20;13203:1;13196:31;13246:4;13243:1;13236:15;13270:4;13267:1;13260:15;13286:127;13347:10;13342:3;13338:20;13335:1;13328:31;13378:4;13375:1;13368:15;13402:4;13399:1;13392:15;13418:131;-1:-1:-1;;;;;;13492:32:1;;13482:43;;13472:71;;13539:1;13536;13529:12

Swarm Source

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