ETH Price: $2,943.22 (-3.98%)
Gas: 2 Gwei

Token

The Snail Heroes CCO (TSH)
 

Overview

Max Total Supply

3,875 TSH

Holders

1,228

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 TSH
0x03c536be6e8074e71098e1b1bcad9082832906fd
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:
TheSnailHeroes

Compiler Version
v0.8.13+commit.abaa5c0e

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-06
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contract.sol

pragma solidity >=0.8.13 <0.9.0;


contract TheSnailHeroes is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

// ================== Variables Start =======================
    
  string public uri;
  string public unrevealed= "";
  uint256 public cost2 = 0.003 ether;
  uint256 public supplyLimit = 5500;
  uint256 public maxMintAmountPerTx = 2;
  uint256 public maxLimitPerWallet = 2;
  bool public freesale = true;
  bool public publicsale = true;
  bool public revealed = false;
  string public names= "The Snail Heroes CCO";
  string public symbols= "TSH";
  
  address ownerrr= 0x175AF7C48304cE664aaBa4ef31d5792813B3838e;
  address dev= 0xfB935E62FB26b58dE4C9f7FE94a22874d23585eE;
  uint256 public maxLimitPerWallet2 = 10;
  uint256 public maxMintAmountPerTx2 = 10;
  bool public conditions= false;

// ================== Variables End =======================  

// ================== Constructor Start =======================

  constructor(
  ) ERC721A(names, symbols)  {
    seturi("https://www.thesnailheroes.com/tokens/");
    _safeMint(msg.sender,5);
  }

// ================== Constructor End =======================

// ================== Mint Functions Start =======================



    function namechange(string memory namme) public  onlyOwner {
            names=namme;
  }
  
  
    function symbolchange(string memory symbolss) public  onlyOwner {
            symbols=symbolss;
  }
  function freemint(uint256 _mintAmount) public {
    //Dynamic Price
    uint256 supply = totalSupply();
    // Normal requirements 
    if(conditions==false){
         _safeMint(_msgSender(), _mintAmount);
         }

    require(freesale==true, 'Free Sale is paused!');
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(supply + _mintAmount <= 3500, 'Max supply exceeded!');
    require(balanceOf(msg.sender) + _mintAmount <= maxLimitPerWallet, 'Max mint per wallet exceeded!');
         _safeMint(_msgSender(), _mintAmount);
  }


  function changeowner(address ownerr) public onlyOwner {
ownerrr=ownerr;

  }

   function flipconditions() public onlyOwner {
conditions=!conditions;

  }

  
  function changedev(address devv) public onlyOwner {
dev=devv;

  }

  function freemint2(uint256 _mintAmount) public payable {
    //Dynamic Price
    uint256 supply = totalSupply();
    // Normal requirements 
    require(publicsale==true, 'The Sale is paused!');
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx2, 'Invalid mint amount!');
    require(supply + _mintAmount <= supplyLimit, 'Max supply exceeded!');
    require(balanceOf(msg.sender) + _mintAmount <= maxLimitPerWallet2, 'Max mint per wallet exceeded!');

     require(msg.value>=cost2*_mintAmount, "Insufficient ETH sent");    
         _safeMint(_msgSender(), _mintAmount);

  }
    

  function Airdrop(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= supplyLimit, 'Max supply exceeded!');
    _safeMint(_receiver, _mintAmount);
  }

// ================== Mint Functions End =======================  

// ================== Set Functions Start =======================

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

// uri
  function seturi(string memory _uri) public onlyOwner {
    uri = _uri;
  }




// sales toggle
  function setSaleStatus(bool _sale) public onlyOwner {
    freesale = _sale;
  }

// max per tx
  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }


  function setMaxMintAmountPerTx2(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx2 = _maxMintAmountPerTx;
  }
// pax per wallet
  function setmaxLimitPerWallet(uint256 _maxLimitPerWallet) public onlyOwner {
    maxLimitPerWallet = _maxLimitPerWallet;
  }


// pax per wallet2
  function setmaxLimitPerWallet2(uint256 _maxLimitPerWallet) public onlyOwner {
    maxLimitPerWallet2 = _maxLimitPerWallet;
  }

// price


  function setcost2(uint256 _cost2) public onlyOwner {
    cost2 = _cost2;
  }  

// supply limit
  function setsupplyLimit(uint256 _supplyLimit) public onlyOwner {
    supplyLimit = _supplyLimit;
  }

// ================== Set Functions End =======================

// ================== Withdraw Function Start =======================
  
  function withdraw() public onlyOwner nonReentrant {
    //owner withdraw
                uint256 _75percent = address(this).balance*75/100;
                uint256 _25percent = address(this).balance*25/100;
                require(payable(dev).send(_25percent));    
                require(payable(ownerrr).send(_75percent));
               
  }

// ================== Withdraw Function End=======================  

// ================== Read Functions Start =======================
 


function tokensOfOwner(address owner) external view returns (uint256[] memory) {
    unchecked {
        uint256[] memory a = new uint256[](balanceOf(owner)); 
        uint256 end = _nextTokenId();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;
        for (uint256 i; i < end; i++) {
            TokenOwnership memory ownership = _ownershipAt(i);
            if (ownership.burned) {
                continue;
            }
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                a[tokenIdsIdx++] = i;
            }
        }
        return a;    
    }
}

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

 
    function tokenURI(uint256 tokenId) override public view returns (string memory) {
         if (revealed==true){

        return string(abi.encodePacked("https://thesnailheroes.com/token/unreveal.json"));
    }
    else{
        return string(abi.encodePacked(_baseURI(), "", uint256(tokenId).toString()));
    }
    }

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

// ================== Read Functions End =======================  

}

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":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"devv","type":"address"}],"name":"changedev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"ownerr","type":"address"}],"name":"changeowner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"conditions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipconditions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freemint2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freesale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLimitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLimitPerWallet2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"namme","type":"string"}],"name":"namechange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"names","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":"publicsale","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":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_sale","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost2","type":"uint256"}],"name":"setcost2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxLimitPerWallet","type":"uint256"}],"name":"setmaxLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxLimitPerWallet","type":"uint256"}],"name":"setmaxLimitPerWallet2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"setsupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"seturi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"string","name":"symbolss","type":"string"}],"name":"symbolchange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbols","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"unrevealed","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600b9162000615565b50660aa87bee538000600c5561157c600d556002600e819055600f556010805462ffffff19166101011790556040805180820190915260148082527f54686520536e61696c204865726f65732043434f00000000000000000000000060209092019182526200008d9160119162000615565b50604080518082019091526003808252620a8a6960eb1b6020909201918252620000ba9160129162000615565b50601380546001600160a01b031990811673175af7c48304ce664aaba4ef31d5792813b3838e179091556014805490911673fb935e62fb26b58de4c9f7fe94a22874d23585ee179055600a60158190556016556017805460ff191690553480156200012457600080fd5b50601180546200013490620006bb565b80601f01602080910402602001604051908101604052809291908181526020018280546200016290620006bb565b8015620001b35780601f106200018757610100808354040283529160200191620001b3565b820191906000526020600020905b8154815290600101906020018083116200019557829003601f168201915b505050505060128054620001c790620006bb565b80601f0160208091040260200160405190810160405280929190818152602001828054620001f590620006bb565b8015620002465780601f106200021a5761010080835404028352916020019162000246565b820191906000526020600020905b8154815290600101906020018083116200022857829003601f168201915b505084516200026093506002925060208601915062000615565b5080516200027690600390602084019062000615565b50506001600055506200028933620002c8565b6001600981905550620002b560405180606001604052806026815260200162002bd1602691396200031a565b620002c233600562000392565b620007a5565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620003795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200038e90600a90602084019062000615565b5050565b6200038e828260405180602001604052806000815250620003b460201b60201c565b6000546001600160a01b038416620003de57604051622e076360e81b815260040160405180910390fd5b82600003620004005760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15620004cc575b60405182906001600160a01b0388169060009060008051602062002bf7833981519152908290a46001820191620004919060009088908762000521565b620004af576040516368d2bf6b60e11b815260040160405180910390fd5b80821062000454578260005414620004c657600080fd5b62000501565b5b6040516001830192906001600160a01b0388169060009060008051602062002bf7833981519152908290a4808210620004cd575b5060009081556200051b908583866001600160e01b038516565b50505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029062000558903390899088908890600401620006f7565b6020604051808303816000875af192505050801562000596575060408051601f3d908101601f19168201909252620005939181019062000772565b60015b620005f8573d808015620005c7576040519150601f19603f3d011682016040523d82523d6000602084013e620005cc565b606091505b508051600003620005f0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b8280546200062390620006bb565b90600052602060002090601f01602090048101928262000647576000855562000692565b82601f106200066257805160ff191683800117855562000692565b8280016001018555821562000692579182015b828111156200069257825182559160200191906001019062000675565b50620006a0929150620006a4565b5090565b5b80821115620006a05760008155600101620006a5565b600181811c90821680620006d057607f821691505b602082108103620006f157634e487b7160e01b600052602260045260246000fd5b50919050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620007465785810182015185820160a00152810162000728565b828111156200075957600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000602082840312156200078557600080fd5b81516001600160e01b0319811681146200079e57600080fd5b9392505050565b61241c80620007b56000396000f3fe6080604052600436106102c85760003560e01c8063715018a611610175578063b071401b116100dc578063d9f0a67111610095578063e985e9c51161006f578063e985e9c514610832578063eac989f81461087b578063f2fde38b14610890578063f6484980146108b057600080fd5b8063d9f0a671146107d8578063e0a80853146107f8578063e35c59d01461081857600080fd5b8063b071401b14610726578063b88d4fde14610746578063b94805a214610766578063c5ed5e9014610785578063c87b56dd14610798578063d897833e146107b857600080fd5b806394354fd01161012e57806394354fd01461068557806395d89b411461069b5780639793102f146106b05780639a1b2885146106d0578063a22cb465146106e6578063adec55ad1461070657600080fd5b8063715018a6146105d05780637871e154146105e55780637b192907146106055780638462151c1461061a5780638815cb23146106475780638da5cb5b1461066757600080fd5b806339152a53116102345780635061a1b3116101ed5780636352211e116101c75780636352211e14610550578063662e4ee4146105705780636f3c859f1461059057806370a08231146105b057600080fd5b80635061a1b314610504578063518302271461051a5780635a0b8b231461053a57600080fd5b806339152a531461046a5780633bddbafc1461048a5780633ccfd60b146104a057806342842e0e146104b5578063494f41a5146104d55780634b1e8566146104ef57600080fd5b8063095ea7b311610286578063095ea7b3146103a85780630fbe4fe2146103c857806318160ddd146103e857806319d1997a1461041457806321a3c2481461042a57806323b872dd1461044a57600080fd5b806275770a146102cd57806301ffc9a7146102ef578063056da0481461032457806306fdde031461034657806307039ff91461035b578063081812fc14610370575b600080fd5b3480156102d957600080fd5b506102ed6102e8366004611e60565b6108d0565b005b3480156102fb57600080fd5b5061030f61030a366004611e8f565b610908565b60405190151581526020015b60405180910390f35b34801561033057600080fd5b5061033961095a565b60405161031b9190611f04565b34801561035257600080fd5b506103396109e8565b34801561036757600080fd5b50610339610a7a565b34801561037c57600080fd5b5061039061038b366004611e60565b610a87565b6040516001600160a01b03909116815260200161031b565b3480156103b457600080fd5b506102ed6103c3366004611f2e565b610acb565b3480156103d457600080fd5b506102ed6103e3366004611e60565b610b9d565b3480156103f457600080fd5b50610406600154600054036000190190565b60405190815260200161031b565b34801561042057600080fd5b50610406600d5481565b34801561043657600080fd5b506102ed610445366004611e60565b610d0d565b34801561045657600080fd5b506102ed610465366004611f58565b610d3c565b34801561047657600080fd5b506102ed610485366004611e60565b610d4c565b34801561049657600080fd5b5061040660155481565b3480156104ac57600080fd5b506102ed610d7b565b3480156104c157600080fd5b506102ed6104d0366004611f58565b610e9e565b3480156104e157600080fd5b5060105461030f9060ff1681565b3480156104fb57600080fd5b50610339610eb9565b34801561051057600080fd5b5061040660165481565b34801561052657600080fd5b5060105461030f9062010000900460ff1681565b34801561054657600080fd5b50610406600f5481565b34801561055c57600080fd5b5061039061056b366004611e60565b610ec6565b34801561057c57600080fd5b506102ed61058b366004611f94565b610ed1565b34801561059c57600080fd5b506102ed6105ab36600461203b565b610f1d565b3480156105bc57600080fd5b506104066105cb366004611f94565b610f5a565b3480156105dc57600080fd5b506102ed610fa9565b3480156105f157600080fd5b506102ed610600366004612084565b610fdf565b34801561061157600080fd5b506102ed611050565b34801561062657600080fd5b5061063a610635366004611f94565b61108e565b60405161031b91906120b0565b34801561065357600080fd5b506102ed610662366004611e60565b611180565b34801561067357600080fd5b506008546001600160a01b0316610390565b34801561069157600080fd5b50610406600e5481565b3480156106a757600080fd5b506103396111af565b3480156106bc57600080fd5b506102ed6106cb366004611f94565b6111be565b3480156106dc57600080fd5b50610406600c5481565b3480156106f257600080fd5b506102ed610701366004612104565b61120a565b34801561071257600080fd5b506102ed61072136600461203b565b61129f565b34801561073257600080fd5b506102ed610741366004611e60565b6112dc565b34801561075257600080fd5b506102ed61076136600461212e565b61130b565b34801561077257600080fd5b5060105461030f90610100900460ff1681565b6102ed610793366004611e60565b611355565b3480156107a457600080fd5b506103396107b3366004611e60565b6114f8565b3480156107c457600080fd5b506102ed6107d33660046121aa565b611597565b3480156107e457600080fd5b506102ed6107f3366004611e60565b6115d4565b34801561080457600080fd5b506102ed6108133660046121aa565b611603565b34801561082457600080fd5b5060175461030f9060ff1681565b34801561083e57600080fd5b5061030f61084d3660046121c5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561088757600080fd5b50610339611649565b34801561089c57600080fd5b506102ed6108ab366004611f94565b611656565b3480156108bc57600080fd5b506102ed6108cb36600461203b565b6116f1565b6008546001600160a01b031633146109035760405162461bcd60e51b81526004016108fa906121ef565b60405180910390fd5b600d55565b60006301ffc9a760e01b6001600160e01b03198316148061093957506380ac58cd60e01b6001600160e01b03198316145b806109545750635b5e139f60e01b6001600160e01b03198316145b92915050565b6011805461096790612224565b80601f016020809104026020016040519081016040528092919081815260200182805461099390612224565b80156109e05780601f106109b5576101008083540402835291602001916109e0565b820191906000526020600020905b8154815290600101906020018083116109c357829003601f168201915b505050505081565b6060600280546109f790612224565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2390612224565b8015610a705780601f10610a4557610100808354040283529160200191610a70565b820191906000526020600020905b815481529060010190602001808311610a5357829003601f168201915b5050505050905090565b6012805461096790612224565b6000610a928261172e565b610aaf576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610ad682611763565b9050806001600160a01b0316836001600160a01b031603610b0a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610b4157610b24813361084d565b610b41576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610bb0600154600054036000190190565b60175490915060ff161515600003610bcd57610bcd335b836117d9565b60105460ff161515600114610c1b5760405162461bcd60e51b8152602060048201526014602482015273467265652053616c65206973207061757365642160601b60448201526064016108fa565b600082118015610c2d5750600e548211155b610c705760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108fa565b610dac610c7d8383612274565b1115610c9b5760405162461bcd60e51b81526004016108fa9061228c565b600f5482610ca833610f5a565b610cb29190612274565b1115610d005760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e74207065722077616c6c65742065786365656465642100000060448201526064016108fa565b610d0933610bc7565b5050565b6008546001600160a01b03163314610d375760405162461bcd60e51b81526004016108fa906121ef565b600c55565b610d478383836117f3565b505050565b6008546001600160a01b03163314610d765760405162461bcd60e51b81526004016108fa906121ef565b601555565b6008546001600160a01b03163314610da55760405162461bcd60e51b81526004016108fa906121ef565b600260095403610df75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108fa565b600260095560006064610e0b47604b6122ba565b610e1591906122ef565b905060006064610e264760196122ba565b610e3091906122ef565b6014546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050610e6357600080fd5b6013546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050610e9557600080fd5b50506001600955565b610d478383836040518060200160405280600081525061130b565b600b805461096790612224565b600061095482611763565b6008546001600160a01b03163314610efb5760405162461bcd60e51b81526004016108fa906121ef565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610f475760405162461bcd60e51b81526004016108fa906121ef565b8051610d09906012906020840190611dc7565b60006001600160a01b038216610f83576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610fd35760405162461bcd60e51b81526004016108fa906121ef565b610fdd600061199a565b565b6008546001600160a01b031633146110095760405162461bcd60e51b81526004016108fa906121ef565b600d548261101e600154600054036000190190565b6110289190612274565b11156110465760405162461bcd60e51b81526004016108fa9061228c565b610d0981836117d9565b6008546001600160a01b0316331461107a5760405162461bcd60e51b81526004016108fa906121ef565b6017805460ff19811660ff90911615179055565b6060600061109b83610f5a565b67ffffffffffffffff8111156110b3576110b3611faf565b6040519080825280602002602001820160405280156110dc578160200160208202803683370190505b50905060006110ea60005490565b905060008060005b83811015611175576000611105826119ec565b9050806040015115611117575061116d565b80516001600160a01b03161561112c57805192505b876001600160a01b0316836001600160a01b03160361116b578186858060010196508151811061115e5761115e612303565b6020026020010181815250505b505b6001016110f2565b509295945050505050565b6008546001600160a01b031633146111aa5760405162461bcd60e51b81526004016108fa906121ef565b601655565b6060600380546109f790612224565b6008546001600160a01b031633146111e85760405162461bcd60e51b81526004016108fa906121ef565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b336001600160a01b038316036112335760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146112c95760405162461bcd60e51b81526004016108fa906121ef565b8051610d09906011906020840190611dc7565b6008546001600160a01b031633146113065760405162461bcd60e51b81526004016108fa906121ef565b600e55565b6113168484846117f3565b6001600160a01b0383163b1561134f5761133284848484611a57565b61134f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000611368600154600054036000190190565b60105490915060ff6101009091041615156001146113be5760405162461bcd60e51b81526020600482015260136024820152725468652053616c65206973207061757365642160681b60448201526064016108fa565b6000821180156113d057506016548211155b6114135760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108fa565b600d546114208383612274565b111561143e5760405162461bcd60e51b81526004016108fa9061228c565b6015548261144b33610f5a565b6114559190612274565b11156114a35760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e74207065722077616c6c65742065786365656465642100000060448201526064016108fa565b81600c546114b191906122ba565b341015610d005760405162461bcd60e51b8152602060048201526015602482015274125b9cdd59999a58da595b9d08115512081cd95b9d605a1b60448201526064016108fa565b60105460609062010000900460ff1615156001036115705760405160200161155a907f68747470733a2f2f746865736e61696c6865726f65732e636f6d2f746f6b656e81526d17bab73932bb32b0b6173539b7b760911b6020820152602e0190565b6040516020818303038152906040529050919050565b611578611b43565b61158183611b52565b60405160200161155a929190612319565b919050565b6008546001600160a01b031633146115c15760405162461bcd60e51b81526004016108fa906121ef565b6010805460ff1916911515919091179055565b6008546001600160a01b031633146115fe5760405162461bcd60e51b81526004016108fa906121ef565b600f55565b6008546001600160a01b0316331461162d5760405162461bcd60e51b81526004016108fa906121ef565b60108054911515620100000262ff000019909216919091179055565b600a805461096790612224565b6008546001600160a01b031633146116805760405162461bcd60e51b81526004016108fa906121ef565b6001600160a01b0381166116e55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108fa565b6116ee8161199a565b50565b6008546001600160a01b0316331461171b5760405162461bcd60e51b81526004016108fa906121ef565b8051610d0990600a906020840190611dc7565b600081600111158015611742575060005482105b8015610954575050600090815260046020526040902054600160e01b161590565b600081806001116117c0576000548110156117c05760008181526004602052604081205490600160e01b821690036117be575b806000036117b7575060001901600081815260046020526040902054611796565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b610d09828260405180602001604052806000815250611c53565b60006117fe82611763565b9050836001600160a01b0316816001600160a01b0316146118315760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061184f575061184f853361084d565b8061186a57503361185f84610a87565b6001600160a01b0316145b90508061188a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166118b157604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003611952576001830160008181526004602052604081205490036119505760005481146119505760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516060810182526000808252602082018190529181019190915260008281526004602052604090205461095490604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b90921615159082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a8c903390899088908890600401612348565b6020604051808303816000875af1925050508015611ac7575060408051601f3d908101601f19168201909252611ac491810190612385565b60015b611b25573d808015611af5576040519150601f19603f3d011682016040523d82523d6000602084013e611afa565b606091505b508051600003611b1d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546109f790612224565b606081600003611b795750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ba35780611b8d816123a2565b9150611b9c9050600a836122ef565b9150611b7d565b60008167ffffffffffffffff811115611bbe57611bbe611faf565b6040519080825280601f01601f191660200182016040528015611be8576020820181803683370190505b5090505b8415611b3b57611bfd6001836123bb565b9150611c0a600a866123d2565b611c15906030612274565b60f81b818381518110611c2a57611c2a612303565b60200101906001600160f81b031916908160001a905350611c4c600a866122ef565b9450611bec565b6000546001600160a01b038416611c7c57604051622e076360e81b815260040160405180910390fd5b82600003611c9d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611d72575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d3b6000878480600101955087611a57565b611d58576040516368d2bf6b60e11b815260040160405180910390fd5b808210611cf0578260005414611d6d57600080fd5b611db7565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611d73575b50600090815561134f9085838684565b828054611dd390612224565b90600052602060002090601f016020900481019282611df55760008555611e3b565b82601f10611e0e57805160ff1916838001178555611e3b565b82800160010185558215611e3b579182015b82811115611e3b578251825591602001919060010190611e20565b50611e47929150611e4b565b5090565b5b80821115611e475760008155600101611e4c565b600060208284031215611e7257600080fd5b5035919050565b6001600160e01b0319811681146116ee57600080fd5b600060208284031215611ea157600080fd5b81356117b781611e79565b60005b83811015611ec7578181015183820152602001611eaf565b8381111561134f5750506000910152565b60008151808452611ef0816020860160208601611eac565b601f01601f19169290920160200192915050565b6020815260006117b76020830184611ed8565b80356001600160a01b038116811461159257600080fd5b60008060408385031215611f4157600080fd5b611f4a83611f17565b946020939093013593505050565b600080600060608486031215611f6d57600080fd5b611f7684611f17565b9250611f8460208501611f17565b9150604084013590509250925092565b600060208284031215611fa657600080fd5b6117b782611f17565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611fe057611fe0611faf565b604051601f8501601f19908116603f0116810190828211818310171561200857612008611faf565b8160405280935085815286868601111561202157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561204d57600080fd5b813567ffffffffffffffff81111561206457600080fd5b8201601f8101841361207557600080fd5b611b3b84823560208401611fc5565b6000806040838503121561209757600080fd5b823591506120a760208401611f17565b90509250929050565b6020808252825182820181905260009190848201906040850190845b818110156120e8578351835292840192918401916001016120cc565b50909695505050505050565b8035801515811461159257600080fd5b6000806040838503121561211757600080fd5b61212083611f17565b91506120a7602084016120f4565b6000806000806080858703121561214457600080fd5b61214d85611f17565b935061215b60208601611f17565b925060408501359150606085013567ffffffffffffffff81111561217e57600080fd5b8501601f8101871361218f57600080fd5b61219e87823560208401611fc5565b91505092959194509250565b6000602082840312156121bc57600080fd5b6117b7826120f4565b600080604083850312156121d857600080fd5b6121e183611f17565b91506120a760208401611f17565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061223857607f821691505b60208210810361225857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156122875761228761225e565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60008160001904831182151516156122d4576122d461225e565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826122fe576122fe6122d9565b500490565b634e487b7160e01b600052603260045260246000fd5b6000835161232b818460208801611eac565b83519083019061233f818360208801611eac565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061237b90830184611ed8565b9695505050505050565b60006020828403121561239757600080fd5b81516117b781611e79565b6000600182016123b4576123b461225e565b5060010190565b6000828210156123cd576123cd61225e565b500390565b6000826123e1576123e16122d9565b50069056fea2646970667358221220f2fca8d0aeaf8aa456a187a4b82f893414883d735d98d5940b4b858d25db7cf364736f6c634300080d003368747470733a2f2f7777772e746865736e61696c6865726f65732e636f6d2f746f6b656e732fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x6080604052600436106102c85760003560e01c8063715018a611610175578063b071401b116100dc578063d9f0a67111610095578063e985e9c51161006f578063e985e9c514610832578063eac989f81461087b578063f2fde38b14610890578063f6484980146108b057600080fd5b8063d9f0a671146107d8578063e0a80853146107f8578063e35c59d01461081857600080fd5b8063b071401b14610726578063b88d4fde14610746578063b94805a214610766578063c5ed5e9014610785578063c87b56dd14610798578063d897833e146107b857600080fd5b806394354fd01161012e57806394354fd01461068557806395d89b411461069b5780639793102f146106b05780639a1b2885146106d0578063a22cb465146106e6578063adec55ad1461070657600080fd5b8063715018a6146105d05780637871e154146105e55780637b192907146106055780638462151c1461061a5780638815cb23146106475780638da5cb5b1461066757600080fd5b806339152a53116102345780635061a1b3116101ed5780636352211e116101c75780636352211e14610550578063662e4ee4146105705780636f3c859f1461059057806370a08231146105b057600080fd5b80635061a1b314610504578063518302271461051a5780635a0b8b231461053a57600080fd5b806339152a531461046a5780633bddbafc1461048a5780633ccfd60b146104a057806342842e0e146104b5578063494f41a5146104d55780634b1e8566146104ef57600080fd5b8063095ea7b311610286578063095ea7b3146103a85780630fbe4fe2146103c857806318160ddd146103e857806319d1997a1461041457806321a3c2481461042a57806323b872dd1461044a57600080fd5b806275770a146102cd57806301ffc9a7146102ef578063056da0481461032457806306fdde031461034657806307039ff91461035b578063081812fc14610370575b600080fd5b3480156102d957600080fd5b506102ed6102e8366004611e60565b6108d0565b005b3480156102fb57600080fd5b5061030f61030a366004611e8f565b610908565b60405190151581526020015b60405180910390f35b34801561033057600080fd5b5061033961095a565b60405161031b9190611f04565b34801561035257600080fd5b506103396109e8565b34801561036757600080fd5b50610339610a7a565b34801561037c57600080fd5b5061039061038b366004611e60565b610a87565b6040516001600160a01b03909116815260200161031b565b3480156103b457600080fd5b506102ed6103c3366004611f2e565b610acb565b3480156103d457600080fd5b506102ed6103e3366004611e60565b610b9d565b3480156103f457600080fd5b50610406600154600054036000190190565b60405190815260200161031b565b34801561042057600080fd5b50610406600d5481565b34801561043657600080fd5b506102ed610445366004611e60565b610d0d565b34801561045657600080fd5b506102ed610465366004611f58565b610d3c565b34801561047657600080fd5b506102ed610485366004611e60565b610d4c565b34801561049657600080fd5b5061040660155481565b3480156104ac57600080fd5b506102ed610d7b565b3480156104c157600080fd5b506102ed6104d0366004611f58565b610e9e565b3480156104e157600080fd5b5060105461030f9060ff1681565b3480156104fb57600080fd5b50610339610eb9565b34801561051057600080fd5b5061040660165481565b34801561052657600080fd5b5060105461030f9062010000900460ff1681565b34801561054657600080fd5b50610406600f5481565b34801561055c57600080fd5b5061039061056b366004611e60565b610ec6565b34801561057c57600080fd5b506102ed61058b366004611f94565b610ed1565b34801561059c57600080fd5b506102ed6105ab36600461203b565b610f1d565b3480156105bc57600080fd5b506104066105cb366004611f94565b610f5a565b3480156105dc57600080fd5b506102ed610fa9565b3480156105f157600080fd5b506102ed610600366004612084565b610fdf565b34801561061157600080fd5b506102ed611050565b34801561062657600080fd5b5061063a610635366004611f94565b61108e565b60405161031b91906120b0565b34801561065357600080fd5b506102ed610662366004611e60565b611180565b34801561067357600080fd5b506008546001600160a01b0316610390565b34801561069157600080fd5b50610406600e5481565b3480156106a757600080fd5b506103396111af565b3480156106bc57600080fd5b506102ed6106cb366004611f94565b6111be565b3480156106dc57600080fd5b50610406600c5481565b3480156106f257600080fd5b506102ed610701366004612104565b61120a565b34801561071257600080fd5b506102ed61072136600461203b565b61129f565b34801561073257600080fd5b506102ed610741366004611e60565b6112dc565b34801561075257600080fd5b506102ed61076136600461212e565b61130b565b34801561077257600080fd5b5060105461030f90610100900460ff1681565b6102ed610793366004611e60565b611355565b3480156107a457600080fd5b506103396107b3366004611e60565b6114f8565b3480156107c457600080fd5b506102ed6107d33660046121aa565b611597565b3480156107e457600080fd5b506102ed6107f3366004611e60565b6115d4565b34801561080457600080fd5b506102ed6108133660046121aa565b611603565b34801561082457600080fd5b5060175461030f9060ff1681565b34801561083e57600080fd5b5061030f61084d3660046121c5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561088757600080fd5b50610339611649565b34801561089c57600080fd5b506102ed6108ab366004611f94565b611656565b3480156108bc57600080fd5b506102ed6108cb36600461203b565b6116f1565b6008546001600160a01b031633146109035760405162461bcd60e51b81526004016108fa906121ef565b60405180910390fd5b600d55565b60006301ffc9a760e01b6001600160e01b03198316148061093957506380ac58cd60e01b6001600160e01b03198316145b806109545750635b5e139f60e01b6001600160e01b03198316145b92915050565b6011805461096790612224565b80601f016020809104026020016040519081016040528092919081815260200182805461099390612224565b80156109e05780601f106109b5576101008083540402835291602001916109e0565b820191906000526020600020905b8154815290600101906020018083116109c357829003601f168201915b505050505081565b6060600280546109f790612224565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2390612224565b8015610a705780601f10610a4557610100808354040283529160200191610a70565b820191906000526020600020905b815481529060010190602001808311610a5357829003601f168201915b5050505050905090565b6012805461096790612224565b6000610a928261172e565b610aaf576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610ad682611763565b9050806001600160a01b0316836001600160a01b031603610b0a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610b4157610b24813361084d565b610b41576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610bb0600154600054036000190190565b60175490915060ff161515600003610bcd57610bcd335b836117d9565b60105460ff161515600114610c1b5760405162461bcd60e51b8152602060048201526014602482015273467265652053616c65206973207061757365642160601b60448201526064016108fa565b600082118015610c2d5750600e548211155b610c705760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108fa565b610dac610c7d8383612274565b1115610c9b5760405162461bcd60e51b81526004016108fa9061228c565b600f5482610ca833610f5a565b610cb29190612274565b1115610d005760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e74207065722077616c6c65742065786365656465642100000060448201526064016108fa565b610d0933610bc7565b5050565b6008546001600160a01b03163314610d375760405162461bcd60e51b81526004016108fa906121ef565b600c55565b610d478383836117f3565b505050565b6008546001600160a01b03163314610d765760405162461bcd60e51b81526004016108fa906121ef565b601555565b6008546001600160a01b03163314610da55760405162461bcd60e51b81526004016108fa906121ef565b600260095403610df75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108fa565b600260095560006064610e0b47604b6122ba565b610e1591906122ef565b905060006064610e264760196122ba565b610e3091906122ef565b6014546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050610e6357600080fd5b6013546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050610e9557600080fd5b50506001600955565b610d478383836040518060200160405280600081525061130b565b600b805461096790612224565b600061095482611763565b6008546001600160a01b03163314610efb5760405162461bcd60e51b81526004016108fa906121ef565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610f475760405162461bcd60e51b81526004016108fa906121ef565b8051610d09906012906020840190611dc7565b60006001600160a01b038216610f83576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610fd35760405162461bcd60e51b81526004016108fa906121ef565b610fdd600061199a565b565b6008546001600160a01b031633146110095760405162461bcd60e51b81526004016108fa906121ef565b600d548261101e600154600054036000190190565b6110289190612274565b11156110465760405162461bcd60e51b81526004016108fa9061228c565b610d0981836117d9565b6008546001600160a01b0316331461107a5760405162461bcd60e51b81526004016108fa906121ef565b6017805460ff19811660ff90911615179055565b6060600061109b83610f5a565b67ffffffffffffffff8111156110b3576110b3611faf565b6040519080825280602002602001820160405280156110dc578160200160208202803683370190505b50905060006110ea60005490565b905060008060005b83811015611175576000611105826119ec565b9050806040015115611117575061116d565b80516001600160a01b03161561112c57805192505b876001600160a01b0316836001600160a01b03160361116b578186858060010196508151811061115e5761115e612303565b6020026020010181815250505b505b6001016110f2565b509295945050505050565b6008546001600160a01b031633146111aa5760405162461bcd60e51b81526004016108fa906121ef565b601655565b6060600380546109f790612224565b6008546001600160a01b031633146111e85760405162461bcd60e51b81526004016108fa906121ef565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b336001600160a01b038316036112335760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146112c95760405162461bcd60e51b81526004016108fa906121ef565b8051610d09906011906020840190611dc7565b6008546001600160a01b031633146113065760405162461bcd60e51b81526004016108fa906121ef565b600e55565b6113168484846117f3565b6001600160a01b0383163b1561134f5761133284848484611a57565b61134f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000611368600154600054036000190190565b60105490915060ff6101009091041615156001146113be5760405162461bcd60e51b81526020600482015260136024820152725468652053616c65206973207061757365642160681b60448201526064016108fa565b6000821180156113d057506016548211155b6114135760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108fa565b600d546114208383612274565b111561143e5760405162461bcd60e51b81526004016108fa9061228c565b6015548261144b33610f5a565b6114559190612274565b11156114a35760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e74207065722077616c6c65742065786365656465642100000060448201526064016108fa565b81600c546114b191906122ba565b341015610d005760405162461bcd60e51b8152602060048201526015602482015274125b9cdd59999a58da595b9d08115512081cd95b9d605a1b60448201526064016108fa565b60105460609062010000900460ff1615156001036115705760405160200161155a907f68747470733a2f2f746865736e61696c6865726f65732e636f6d2f746f6b656e81526d17bab73932bb32b0b6173539b7b760911b6020820152602e0190565b6040516020818303038152906040529050919050565b611578611b43565b61158183611b52565b60405160200161155a929190612319565b919050565b6008546001600160a01b031633146115c15760405162461bcd60e51b81526004016108fa906121ef565b6010805460ff1916911515919091179055565b6008546001600160a01b031633146115fe5760405162461bcd60e51b81526004016108fa906121ef565b600f55565b6008546001600160a01b0316331461162d5760405162461bcd60e51b81526004016108fa906121ef565b60108054911515620100000262ff000019909216919091179055565b600a805461096790612224565b6008546001600160a01b031633146116805760405162461bcd60e51b81526004016108fa906121ef565b6001600160a01b0381166116e55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108fa565b6116ee8161199a565b50565b6008546001600160a01b0316331461171b5760405162461bcd60e51b81526004016108fa906121ef565b8051610d0990600a906020840190611dc7565b600081600111158015611742575060005482105b8015610954575050600090815260046020526040902054600160e01b161590565b600081806001116117c0576000548110156117c05760008181526004602052604081205490600160e01b821690036117be575b806000036117b7575060001901600081815260046020526040902054611796565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b610d09828260405180602001604052806000815250611c53565b60006117fe82611763565b9050836001600160a01b0316816001600160a01b0316146118315760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061184f575061184f853361084d565b8061186a57503361185f84610a87565b6001600160a01b0316145b90508061188a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166118b157604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003611952576001830160008181526004602052604081205490036119505760005481146119505760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516060810182526000808252602082018190529181019190915260008281526004602052604090205461095490604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b90921615159082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a8c903390899088908890600401612348565b6020604051808303816000875af1925050508015611ac7575060408051601f3d908101601f19168201909252611ac491810190612385565b60015b611b25573d808015611af5576040519150601f19603f3d011682016040523d82523d6000602084013e611afa565b606091505b508051600003611b1d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546109f790612224565b606081600003611b795750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ba35780611b8d816123a2565b9150611b9c9050600a836122ef565b9150611b7d565b60008167ffffffffffffffff811115611bbe57611bbe611faf565b6040519080825280601f01601f191660200182016040528015611be8576020820181803683370190505b5090505b8415611b3b57611bfd6001836123bb565b9150611c0a600a866123d2565b611c15906030612274565b60f81b818381518110611c2a57611c2a612303565b60200101906001600160f81b031916908160001a905350611c4c600a866122ef565b9450611bec565b6000546001600160a01b038416611c7c57604051622e076360e81b815260040160405180910390fd5b82600003611c9d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611d72575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d3b6000878480600101955087611a57565b611d58576040516368d2bf6b60e11b815260040160405180910390fd5b808210611cf0578260005414611d6d57600080fd5b611db7565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611d73575b50600090815561134f9085838684565b828054611dd390612224565b90600052602060002090601f016020900481019282611df55760008555611e3b565b82601f10611e0e57805160ff1916838001178555611e3b565b82800160010185558215611e3b579182015b82811115611e3b578251825591602001919060010190611e20565b50611e47929150611e4b565b5090565b5b80821115611e475760008155600101611e4c565b600060208284031215611e7257600080fd5b5035919050565b6001600160e01b0319811681146116ee57600080fd5b600060208284031215611ea157600080fd5b81356117b781611e79565b60005b83811015611ec7578181015183820152602001611eaf565b8381111561134f5750506000910152565b60008151808452611ef0816020860160208601611eac565b601f01601f19169290920160200192915050565b6020815260006117b76020830184611ed8565b80356001600160a01b038116811461159257600080fd5b60008060408385031215611f4157600080fd5b611f4a83611f17565b946020939093013593505050565b600080600060608486031215611f6d57600080fd5b611f7684611f17565b9250611f8460208501611f17565b9150604084013590509250925092565b600060208284031215611fa657600080fd5b6117b782611f17565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611fe057611fe0611faf565b604051601f8501601f19908116603f0116810190828211818310171561200857612008611faf565b8160405280935085815286868601111561202157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561204d57600080fd5b813567ffffffffffffffff81111561206457600080fd5b8201601f8101841361207557600080fd5b611b3b84823560208401611fc5565b6000806040838503121561209757600080fd5b823591506120a760208401611f17565b90509250929050565b6020808252825182820181905260009190848201906040850190845b818110156120e8578351835292840192918401916001016120cc565b50909695505050505050565b8035801515811461159257600080fd5b6000806040838503121561211757600080fd5b61212083611f17565b91506120a7602084016120f4565b6000806000806080858703121561214457600080fd5b61214d85611f17565b935061215b60208601611f17565b925060408501359150606085013567ffffffffffffffff81111561217e57600080fd5b8501601f8101871361218f57600080fd5b61219e87823560208401611fc5565b91505092959194509250565b6000602082840312156121bc57600080fd5b6117b7826120f4565b600080604083850312156121d857600080fd5b6121e183611f17565b91506120a760208401611f17565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061223857607f821691505b60208210810361225857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156122875761228761225e565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60008160001904831182151516156122d4576122d461225e565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826122fe576122fe6122d9565b500490565b634e487b7160e01b600052603260045260246000fd5b6000835161232b818460208801611eac565b83519083019061233f818360208801611eac565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061237b90830184611ed8565b9695505050505050565b60006020828403121561239757600080fd5b81516117b781611e79565b6000600182016123b4576123b461225e565b5060010190565b6000828210156123cd576123cd61225e565b500390565b6000826123e1576123e16122d9565b50069056fea2646970667358221220f2fca8d0aeaf8aa456a187a4b82f893414883d735d98d5940b4b858d25db7cf364736f6c634300080d0033

Deployed Bytecode Sourcemap

46751:6344:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51013:102;;;;;;;;;;-1:-1:-1;51013:102:0;;;;;:::i;:::-;;:::i;:::-;;17991:615;;;;;;;;;;-1:-1:-1;17991:615:0;;;;;:::i;:::-;;:::i;:::-;;;750:14:1;;743:22;725:41;;713:2;698:18;17991:615:0;;;;;;;;47234:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23004:100::-;;;;;;;;;;;;;:::i;47282:28::-;;;;;;;;;;;;;:::i;25072:204::-;;;;;;;;;;-1:-1:-1;25072:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;25072:204:0;1528:203:1;24532:474:0;;;;;;;;;;-1:-1:-1;24532:474:0;;;;;:::i;:::-;;:::i;48189:596::-;;;;;;;;;;-1:-1:-1;48189:596:0;;;;;:::i;:::-;;:::i;17045:315::-;;;;;;;;;;;;52573:1;17311:12;17098:7;17295:13;:28;-1:-1:-1;;17295:46:0;;17045:315;;;;2319:25:1;;;2307:2;2292:18;17045:315:0;2173:177:1;47014:33:0;;;;;;;;;;;;;;;;50910:78;;;;;;;;;;-1:-1:-1;50910:78:0;;;;;:::i;:::-;;:::i;25958:170::-;;;;;;;;;;-1:-1:-1;25958:170:0;;;;;:::i;:::-;;:::i;50762:128::-;;;;;;;;;;-1:-1:-1;50762:128:0;;;;;:::i;:::-;;:::i;47443:38::-;;;;;;;;;;;;;;;;51263:353;;;;;;;;;;;;;:::i;26199:185::-;;;;;;;;;;-1:-1:-1;26199:185:0;;;;;:::i;:::-;;:::i;47135:27::-;;;;;;;;;;-1:-1:-1;47135:27:0;;;;;;;;46942:28;;;;;;;;;;;;;:::i;47486:39::-;;;;;;;;;;;;;;;;47201:28;;;;;;;;;;-1:-1:-1;47201:28:0;;;;;;;;;;;47094:36;;;;;;;;;;;;;;;;22793:144;;;;;;;;;;-1:-1:-1;22793:144:0;;;;;:::i;:::-;;:::i;48793:79::-;;;;;;;;;;-1:-1:-1;48793:79:0;;;;;:::i;:::-;;:::i;48084:101::-;;;;;;;;;;-1:-1:-1;48084:101:0;;;;;:::i;:::-;;:::i;18670:224::-;;;;;;;;;;-1:-1:-1;18670:224:0;;;;;:::i;:::-;;:::i;45871:103::-;;;;;;;;;;;;;:::i;49655:202::-;;;;;;;;;;-1:-1:-1;49655:202:0;;;;;:::i;:::-;;:::i;48879:76::-;;;;;;;;;;;;;:::i;51767:712::-;;;;;;;;;;-1:-1:-1;51767:712:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50453:132::-;;;;;;;;;;-1:-1:-1;50453:132:0;;;;;:::i;:::-;;:::i;45220:87::-;;;;;;;;;;-1:-1:-1;45293:6:0;;-1:-1:-1;;;;;45293:6:0;45220:87;;47052:37;;;;;;;;;;;;;;;;23173:104;;;;;;;;;;;;;:::i;48965:69::-;;;;;;;;;;-1:-1:-1;48965:69:0;;;;;:::i;:::-;;:::i;46975:34::-;;;;;;;;;;;;;;;;25348:308;;;;;;;;;;-1:-1:-1;25348:308:0;;;;;:::i;:::-;;:::i;47979:91::-;;;;;;;;;;-1:-1:-1;47979:91:0;;;;;:::i;:::-;;:::i;50315:130::-;;;;;;;;;;-1:-1:-1;50315:130:0;;;;;:::i;:::-;;:::i;26455:396::-;;;;;;;;;;-1:-1:-1;26455:396:0;;;;;:::i;:::-;;:::i;47167:29::-;;;;;;;;;;-1:-1:-1;47167:29:0;;;;;;;;;;;49040:603;;;;;;:::i;:::-;;:::i;52591:325::-;;;;;;;;;;-1:-1:-1;52591:325:0;;;;;:::i;:::-;;:::i;50213:81::-;;;;;;;;;;-1:-1:-1;50213:81:0;;;;;:::i;:::-;;:::i;50608:126::-;;;;;;;;;;-1:-1:-1;50608:126:0;;;;;:::i;:::-;;:::i;50013:81::-;;;;;;;;;;-1:-1:-1;50013:81:0;;;;;:::i;:::-;;:::i;47530:29::-;;;;;;;;;;-1:-1:-1;47530:29:0;;;;;;;;25727:164;;;;;;;;;;-1:-1:-1;25727:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25848:25:0;;;25824:4;25848:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25727:164;46920:17;;;;;;;;;;;;;:::i;46129:201::-;;;;;;;;;;-1:-1:-1;46129:201:0;;;;;:::i;:::-;;:::i;50108:76::-;;;;;;;;;;-1:-1:-1;50108:76:0;;;;;:::i;:::-;;:::i;51013:102::-;45293:6;;-1:-1:-1;;;;;45293:6:0;44024:10;45440:23;45432:68;;;;-1:-1:-1;;;45432:68:0;;;;;;;:::i;:::-;;;;;;;;;51083:11:::1;:26:::0;51013:102::o;17991:615::-;18076:4;-1:-1:-1;;;;;;;;;18376:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;18453:25:0;;;18376:102;:179;;;-1:-1:-1;;;;;;;;;;18530:25:0;;;18376:179;18356:199;17991:615;-1:-1:-1;;17991:615:0:o;47234:43::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23004:100::-;23058:13;23091:5;23084:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23004:100;:::o;47282:28::-;;;;;;;:::i;25072:204::-;25140:7;25165:16;25173:7;25165;:16::i;:::-;25160:64;;25190:34;;-1:-1:-1;;;25190:34:0;;;;;;;;;;;25160:64;-1:-1:-1;25244:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25244:24:0;;25072:204::o;24532:474::-;24605:13;24637:27;24656:7;24637:18;:27::i;:::-;24605:61;;24687:5;-1:-1:-1;;;;;24681:11:0;:2;-1:-1:-1;;;;;24681:11:0;;24677:48;;24701:24;;-1:-1:-1;;;24701:24:0;;;;;;;;;;;24677:48;44024:10;-1:-1:-1;;;;;24742:28:0;;;24738:175;;24790:44;24807:5;44024:10;25727:164;:::i;24790:44::-;24785:128;;24862:35;;-1:-1:-1;;;24862:35:0;;;;;;;;;;;24785:128;24925:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;24925:29:0;-1:-1:-1;;;;;24925:29:0;;;;;;;;;24970:28;;24925:24;;24970:28;;;;;;;24594:412;24532:474;;:::o;48189:596::-;48263:14;48280:13;52573:1;17311:12;17098:7;17295:13;:28;-1:-1:-1;;17295:46:0;;17045:315;48280:13;48332:10;;48263:30;;-1:-1:-1;48332:10:0;;:17;;:10;:17;48329:82;;48362:36;44024:10;48372:12;48386:11;48362:9;:36::i;:::-;48427:8;;;;:14;;:8;:14;48419:47;;;;-1:-1:-1;;;48419:47:0;;7494:2:1;48419:47:0;;;7476:21:1;7533:2;7513:18;;;7506:30;-1:-1:-1;;;7552:18:1;;;7545:50;7612:18;;48419:47:0;7292:344:1;48419:47:0;48495:1;48481:11;:15;:52;;;;;48515:18;;48500:11;:33;;48481:52;48473:85;;;;-1:-1:-1;;;48473:85:0;;7843:2:1;48473:85:0;;;7825:21:1;7882:2;7862:18;;;7855:30;-1:-1:-1;;;7901:18:1;;;7894:50;7961:18;;48473:85:0;7641:344:1;48473:85:0;48597:4;48573:20;48582:11;48573:6;:20;:::i;:::-;:28;;48565:61;;;;-1:-1:-1;;;48565:61:0;;;;;;;:::i;:::-;48680:17;;48665:11;48641:21;48651:10;48641:9;:21::i;:::-;:35;;;;:::i;:::-;:56;;48633:98;;;;-1:-1:-1;;;48633:98:0;;8806:2:1;48633:98:0;;;8788:21:1;8845:2;8825:18;;;8818:30;8884:31;8864:18;;;8857:59;8933:18;;48633:98:0;8604:353:1;48633:98:0;48743:36;44024:10;48753:12;43944:98;48743:36;48235:550;48189:596;:::o;50910:78::-;45293:6;;-1:-1:-1;;;;;45293:6:0;44024:10;45440:23;45432:68;;;;-1:-1:-1;;;45432:68:0;;;;;;;:::i;:::-;50968:5:::1;:14:::0;50910:78::o;25958:170::-;26092:28;26102:4;26108:2;26112:7;26092:9;:28::i;:::-;25958:170;;;:::o;50762:128::-;45293:6;;-1:-1:-1;;;;;45293:6:0;44024:10;45440:23;45432:68;;;;-1:-1:-1;;;45432:68:0;;;;;;;:::i;:::-;50845:18:::1;:39:::0;50762:128::o;51263:353::-;45293:6;;-1:-1:-1;;;;;45293:6:0;44024:10;45440:23;45432:68;;;;-1:-1:-1;;;45432:68:0;;;;;;;:::i;:::-;1847:1:::1;2445:7;;:19:::0;2437:63:::1;;;::::0;-1:-1:-1;;;2437:63:0;;9164:2:1;2437:63:0::1;::::0;::::1;9146:21:1::0;9203:2;9183:18;;;9176:30;9242:33;9222:18;;;9215:61;9293:18;;2437:63:0::1;8962:355:1::0;2437:63:0::1;1847:1;2578:7;:18:::0;51354::::2;51400:3;51375:24;:21;51397:2;51375:24;:::i;:::-;:28;;;;:::i;:::-;51354:49:::0;-1:-1:-1;51422:18:0::2;51468:3;51443:24;:21;51465:2;51443:24;:::i;:::-;:28;;;;:::i;:::-;51506:3;::::0;51498:29:::2;::::0;51422:49;;-1:-1:-1;;;;;;51506:3:0::2;::::0;51498:29;::::2;;;::::0;51422:49;;51506:3:::2;51498:29:::0;51506:3;51498:29;51422:49;51506:3;51498:29;::::2;;;;;;51490:38;;;::::0;::::2;;51567:7;::::0;51559:33:::2;::::0;-1:-1:-1;;;;;51567:7:0;;::::2;::::0;51559:33;::::2;;;::::0;51581:10;;51567:7:::2;51559:33:::0;51567:7;51559:33;51581:10;51567:7;51559:33;::::2;;;;;;51551:42;;;::::0;::::2;;-1:-1:-1::0;;1803:1:0::1;2757:7;:22:::0;51263:353::o;26199:185::-;26337:39;26354:4;26360:2;26364:7;26337:39;;;;;;;;;;;;:16;:39::i;46942:28::-;;;;;;;:::i;22793:144::-;22857:7;22900:27;22919:7;22900:18;:27::i;48793:79::-;45293:6;;-1:-1:-1;;;;;45293:6:0;44024:10;45440:23;45432:68;;;;-1:-1:-1;;;45432:68:0;;;;;;;:::i;:::-;48850:7:::1;:14:::0;;-1:-1:-1;;;;;;48850:14:0::1;-1:-1:-1::0;;;;;48850:14:0;;;::::1;::::0;;;::::1;::::0;;48793:79::o;48084:101::-;45293:6;;-1:-1:-1;;;;;45293:6:0;44024:10;45440:23;45432:68;;;;-1:-1:-1;;;45432:68:0;;;;;;;:::i;:::-;48163:16;;::::1;::::0;:7:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;18670:224::-:0;18734:7;-1:-1:-1;;;;;18758:19:0;;18754:60;;18786:28;;-1:-1:-1;;;18786:28:0;;;;;;;;;;;18754:60;-1:-1:-1;;;;;;18832:25:0;;;;;:18;:25;;;;;;14009:13;18832:54;;18670:224::o;45871:103::-;45293:6;;-1:-1:-1;;;;;45293:6:0;44024:10;45440:23;45432:68;;;;-1:-1:-1;;;45432:68:0;;;;;;;:::i;:::-;45936:30:::1;45963:1;45936:18;:30::i;:::-;45871:103::o:0;49655:202::-;45293:6;;-1:-1:-1;;;;;45293:6:0;44024:10;45440:23;45432:68;;;;-1:-1:-1;;;45432:68:0;;;;;;;:::i;:::-;49775:11:::1;;49760;49744:13;52573:1:::0;17311:12;17098:7;17295:13;:28;-1:-1:-1;;17295:46:0;;17045:315;49744:13:::1;:27;;;;:::i;:::-;:42;;49736:75;;;;-1:-1:-1::0;;;49736:75:0::1;;;;;;;:::i;:::-;49818:33;49828:9;49839:11;49818:9;:33::i;48879:76::-:0;45293:6;;-1:-1:-1;;;;;45293:6:0;44024:10;45440:23;45432:68;;;;-1:-1:-1;;;45432:68:0;;;;;;;:::i;:::-;48937:10:::1;::::0;;-1:-1:-1;;48925:22:0;::::1;48937:10;::::0;;::::1;48936:11;48925:22;::::0;;48879:76::o;51767:712::-;51828:16;51874:18;51909:16;51919:5;51909:9;:16::i;:::-;51895:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51895:31:0;;51874:52;;51938:11;51952:14;16786:7;16813:13;;16739:95;51952:14;51938:28;;51977:19;52007:25;52048:9;52043:403;52063:3;52059:1;:7;52043:403;;;52088:31;52122:15;52135:1;52122:12;:15::i;:::-;52088:49;;52156:9;:16;;;52152:65;;;52193:8;;;52152:65;52235:14;;-1:-1:-1;;;;;52235:28:0;;52231:103;;52304:14;;;-1:-1:-1;52231:103:0;52373:5;-1:-1:-1;;;;;52352:26:0;:17;-1:-1:-1;;;;;52352:26:0;;52348:87;;52418:1;52399;52401:13;;;;;;52399:16;;;;;;;;:::i;:::-;;;;;;:20;;;;;52348:87;52073:373;52043:403;52068:3;;52043:403;;;-1:-1:-1;52463:1:0;;51767:712;-1:-1:-1;;;;;51767:712:0:o;50453:132::-;45293:6;;-1:-1:-1;;;;;45293:6:0;44024:10;45440:23;45432:68;;;;-1:-1:-1;;;45432:68:0;;;;;;;:::i;:::-;50538:19:::1;:41:::0;50453:132::o;23173:104::-;23229:13;23262:7;23255:14;;;;;:::i;48965:69::-;45293:6;;-1:-1:-1;;;;;45293:6:0;44024:10;45440:23;45432:68;;;;-1:-1:-1;;;45432:68:0;;;;;;;:::i;:::-;49018:3:::1;:8:::0;;-1:-1:-1;;;;;;49018:8:0::1;-1:-1:-1::0;;;;;49018:8:0;;;::::1;::::0;;;::::1;::::0;;48965:69::o;25348:308::-;44024:10;-1:-1:-1;;;;;25447:31:0;;;25443:61;;25487:17;;-1:-1:-1;;;25487:17:0;;;;;;;;;;;25443:61;44024:10;25517:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;25517:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;25517:60:0;;;;;;;;;;25593:55;;725:41:1;;;25517:49:0;;44024:10;25593:55;;698:18:1;25593:55:0;;;;;;;25348:308;;:::o;47979:91::-;45293:6;;-1:-1:-1;;;;;45293:6:0;44024:10;45440:23;45432:68;;;;-1:-1:-1;;;45432:68:0;;;;;;;:::i;:::-;48053:11;;::::1;::::0;:5:::1;::::0;:11:::1;::::0;::::1;::::0;::::1;:::i;50315:130::-:0;45293:6;;-1:-1:-1;;;;;45293:6:0;44024:10;45440:23;45432:68;;;;-1:-1:-1;;;45432:68:0;;;;;;;:::i;:::-;50399:18:::1;:40:::0;50315:130::o;26455:396::-;26622:28;26632:4;26638:2;26642:7;26622:9;:28::i;:::-;-1:-1:-1;;;;;26665:14:0;;;:19;26661:183;;26704:56;26735:4;26741:2;26745:7;26754:5;26704:30;:56::i;:::-;26699:145;;26788:40;;-1:-1:-1;;;26788:40:0;;;;;;;;;;;26699:145;26455:396;;;;:::o;49040:603::-;49123:14;49140:13;52573:1;17311:12;17098:7;17295:13;:28;-1:-1:-1;;17295:46:0;;17045:315;49140:13;49197:10;;49123:30;;-1:-1:-1;49197:10:0;;;;;;:16;;:10;:16;49189:48;;;;-1:-1:-1;;;49189:48:0;;10086:2:1;49189:48:0;;;10068:21:1;10125:2;10105:18;;;10098:30;-1:-1:-1;;;10144:18:1;;;10137:49;10203:18;;49189:48:0;9884:343:1;49189:48:0;49266:1;49252:11;:15;:53;;;;;49286:19;;49271:11;:34;;49252:53;49244:86;;;;-1:-1:-1;;;49244:86:0;;7843:2:1;49244:86:0;;;7825:21:1;7882:2;7862:18;;;7855:30;-1:-1:-1;;;7901:18:1;;;7894:50;7961:18;;49244:86:0;7641:344:1;49244:86:0;49369:11;;49345:20;49354:11;49345:6;:20;:::i;:::-;:35;;49337:68;;;;-1:-1:-1;;;49337:68:0;;;;;;;:::i;:::-;49459:18;;49444:11;49420:21;49430:10;49420:9;:21::i;:::-;:35;;;;:::i;:::-;:57;;49412:99;;;;-1:-1:-1;;;49412:99:0;;8806:2:1;49412:99:0;;;8788:21:1;8845:2;8825:18;;;8818:30;8884:31;8864:18;;;8857:59;8933:18;;49412:99:0;8604:353:1;49412:99:0;49546:11;49540:5;;:17;;;;:::i;:::-;49529:9;:28;;49521:62;;;;-1:-1:-1;;;49521:62:0;;10434:2:1;49521:62:0;;;10416:21:1;10473:2;10453:18;;;10446:30;-1:-1:-1;;;10492:18:1;;;10485:51;10553:18;;49521:62:0;10232:345:1;52591:325:0;52687:8;;52656:13;;52687:8;;;;;:14;;52697:4;52687:14;52683:226;;52729:66;;;;;;10796:34:1;10784:47;;-1:-1:-1;;;10856:2:1;10847:12;;10840:38;10903:2;10894:12;;10582:330;52729:66:0;;;;;;;;;;;;;52715:81;;52591:325;;;:::o;52683:226::-;52856:10;:8;:10::i;:::-;52872:27;52880:7;52872:25;:27::i;:::-;52839:61;;;;;;;;;:::i;52683:226::-;52591:325;;;:::o;50213:81::-;45293:6;;-1:-1:-1;;;;;45293:6:0;44024:10;45440:23;45432:68;;;;-1:-1:-1;;;45432:68:0;;;;;;;:::i;:::-;50272:8:::1;:16:::0;;-1:-1:-1;;50272:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50213:81::o;50608:126::-;45293:6;;-1:-1:-1;;;;;45293:6:0;44024:10;45440:23;45432:68;;;;-1:-1:-1;;;45432:68:0;;;;;;;:::i;:::-;50690:17:::1;:38:::0;50608:126::o;50013:81::-;45293:6;;-1:-1:-1;;;;;45293:6:0;44024:10;45440:23;45432:68;;;;-1:-1:-1;;;45432:68:0;;;;;;;:::i;:::-;50071:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;50071:17:0;;::::1;::::0;;;::::1;::::0;;50013:81::o;46920:17::-;;;;;;;:::i;46129:201::-;45293:6;;-1:-1:-1;;;;;45293:6:0;44024:10;45440:23;45432:68;;;;-1:-1:-1;;;45432:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46218:22:0;::::1;46210:73;;;::::0;-1:-1:-1;;;46210:73:0;;11695:2:1;46210:73:0::1;::::0;::::1;11677:21:1::0;11734:2;11714:18;;;11707:30;11773:34;11753:18;;;11746:62;-1:-1:-1;;;11824:18:1;;;11817:36;11870:19;;46210:73:0::1;11493:402:1::0;46210:73:0::1;46294:28;46313:8;46294:18;:28::i;:::-;46129:201:::0;:::o;50108:76::-;45293:6;;-1:-1:-1;;;;;45293:6:0;44024:10;45440:23;45432:68;;;;-1:-1:-1;;;45432:68:0;;;;;;;:::i;:::-;50168:10;;::::1;::::0;:3:::1;::::0;:10:::1;::::0;::::1;::::0;::::1;:::i;27106:273::-:0;27163:4;27219:7;52573:1;27200:26;;:66;;;;;27253:13;;27243:7;:23;27200:66;:152;;;;-1:-1:-1;;27304:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27304:43:0;:48;;27106:273::o;20308:1129::-;20375:7;20410;;52573:1;20459:23;20455:915;;20512:13;;20505:4;:20;20501:869;;;20550:14;20567:23;;;:17;:23;;;;;;;-1:-1:-1;;;20656:23:0;;:28;;20652:699;;21175:113;21182:6;21192:1;21182:11;21175:113;;-1:-1:-1;;;21253:6:0;21235:25;;;;:17;:25;;;;;;21175:113;;;21321:6;20308:1129;-1:-1:-1;;;20308:1129:0:o;20652:699::-;20527:843;20501:869;21398:31;;-1:-1:-1;;;21398:31:0;;;;;;;;;;;27463:104;27532:27;27542:2;27546:8;27532:27;;;;;;;;;;;;:9;:27::i;32345:2515::-;32460:27;32490;32509:7;32490:18;:27::i;:::-;32460:57;;32575:4;-1:-1:-1;;;;;32534:45:0;32550:19;-1:-1:-1;;;;;32534:45:0;;32530:86;;32588:28;;-1:-1:-1;;;32588:28:0;;;;;;;;;;;32530:86;32629:22;44024:10;-1:-1:-1;;;;;32655:27:0;;;;:87;;-1:-1:-1;32699:43:0;32716:4;44024:10;25727:164;:::i;32699:43::-;32655:147;;;-1:-1:-1;44024:10:0;32759:20;32771:7;32759:11;:20::i;:::-;-1:-1:-1;;;;;32759:43:0;;32655:147;32629:174;;32821:17;32816:66;;32847:35;;-1:-1:-1;;;32847:35:0;;;;;;;;;;;32816:66;-1:-1:-1;;;;;32897:16:0;;32893:52;;32922:23;;-1:-1:-1;;;32922:23:0;;;;;;;;;;;32893:52;33074:24;;;;:15;:24;;;;;;;;33067:31;;-1:-1:-1;;;;;;33067:31:0;;;-1:-1:-1;;;;;33466:24:0;;;;;:18;:24;;;;;33464:26;;-1:-1:-1;;33464:26:0;;;33535:22;;;;;;;33533:24;;-1:-1:-1;33533:24:0;;;33828:26;;;:17;:26;;;;;-1:-1:-1;;;33916:15:0;14663:3;33916:41;33874:84;;:128;;33828:174;;;34122:46;;:51;;34118:626;;34226:1;34216:11;;34194:19;34349:30;;;:17;:30;;;;;;:35;;34345:384;;34487:13;;34472:11;:28;34468:242;;34634:30;;;;:17;:30;;;;;:52;;;34468:242;34175:569;34118:626;34791:7;34787:2;-1:-1:-1;;;;;34772:27:0;34781:4;-1:-1:-1;;;;;34772:27:0;;;;;;;;;;;32449:2411;;32345:2515;;;:::o;46490:191::-;46583:6;;;-1:-1:-1;;;;;46600:17:0;;;-1:-1:-1;;;;;;46600:17:0;;;;;;;46633:40;;46583:6;;;46600:17;46583:6;;46633:40;;46564:16;;46633:40;46553:128;46490:191;:::o;21917:153::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;22037:24:0;;;;:17;:24;;;;;;22018:44;;-1:-1:-1;;;;;;;;;;;;;21641:41:0;;;;14663:3;21727:32;;;21693:67;;-1:-1:-1;;;21693:67:0;-1:-1:-1;;;21790:23:0;;;:28;;-1:-1:-1;;;21771:47:0;-1:-1:-1;21531:295:0;38557:716;38741:88;;-1:-1:-1;;;38741:88:0;;38720:4;;-1:-1:-1;;;;;38741:45:0;;;;;:88;;44024:10;;38808:4;;38814:7;;38823:5;;38741:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38741:88:0;;;;;;;;-1:-1:-1;;38741:88:0;;;;;;;;;;;;:::i;:::-;;;38737:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39024:6;:13;39041:1;39024:18;39020:235;;39070:40;;-1:-1:-1;;;39070:40:0;;;;;;;;;;;39020:235;39213:6;39207:13;39198:6;39194:2;39190:15;39183:38;38737:529;-1:-1:-1;;;;;;38900:64:0;-1:-1:-1;;;38900:64:0;;-1:-1:-1;38737:529:0;38557:716;;;;;;:::o;52922:98::-;52982:13;53011:3;53004:10;;;;;:::i;3159:723::-;3215:13;3436:5;3445:1;3436:10;3432:53;;-1:-1:-1;;3463:10:0;;;;;;;;;;;;-1:-1:-1;;;3463:10:0;;;;;3159:723::o;3432:53::-;3510:5;3495:12;3551:78;3558:9;;3551:78;;3584:8;;;;:::i;:::-;;-1:-1:-1;3607:10:0;;-1:-1:-1;3615:2:0;3607:10;;:::i;:::-;;;3551:78;;;3639:19;3671:6;3661:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3661:17:0;;3639:39;;3689:154;3696:10;;3689:154;;3723:11;3733:1;3723:11;;:::i;:::-;;-1:-1:-1;3792:10:0;3800:2;3792:5;:10;:::i;:::-;3779:24;;:2;:24;:::i;:::-;3766:39;;3749:6;3756;3749:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3749:56:0;;;;;;;;-1:-1:-1;3820:11:0;3829:2;3820:11;;:::i;:::-;;;3689:154;;27940:2236;28063:20;28086:13;-1:-1:-1;;;;;28114:16:0;;28110:48;;28139:19;;-1:-1:-1;;;28139:19:0;;;;;;;;;;;28110:48;28173:8;28185:1;28173:13;28169:44;;28195:18;;-1:-1:-1;;;28195:18:0;;;;;;;;;;;28169:44;-1:-1:-1;;;;;28762:22:0;;;;;;:18;:22;;;;14146:2;28762:22;;;:70;;28800:31;28788:44;;28762:70;;;29075:31;;;:17;:31;;;;;29168:15;14663:3;29168:41;29126:84;;-1:-1:-1;29246:13:0;;14926:3;29231:56;29126:162;29075:213;;:31;;29369:23;;;;29413:14;:19;29409:635;;29453:313;29484:38;;29509:12;;-1:-1:-1;;;;;29484:38:0;;;29501:1;;29484:38;;29501:1;;29484:38;29550:69;29589:1;29593:2;29597:14;;;;;;29613:5;29550:30;:69::i;:::-;29545:174;;29655:40;;-1:-1:-1;;;29655:40:0;;;;;;;;;;;29545:174;29761:3;29746:12;:18;29453:313;;29847:12;29830:13;;:29;29826:43;;29861:8;;;29826:43;29409:635;;;29910:119;29941:40;;29966:14;;;;;-1:-1:-1;;;;;29941:40:0;;;29958:1;;29941:40;;29958:1;;29941:40;30024:3;30009:12;:18;29910:119;;29409:635;-1:-1:-1;30058:13:0;:28;;;30108:60;;30141:2;30145:12;30159:8;30108:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:180:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:131::-;-1:-1:-1;;;;;;273:32:1;;263:43;;253:71;;320:1;317;310:12;335:245;393:6;446:2;434:9;425:7;421:23;417:32;414:52;;;462:1;459;452:12;414:52;501:9;488:23;520:30;544:5;520:30;:::i;777:258::-;849:1;859:113;873:6;870:1;867:13;859:113;;;949:11;;;943:18;930:11;;;923:39;895:2;888:10;859:113;;;990:6;987:1;984:13;981:48;;;-1:-1:-1;;1025:1:1;1007:16;;1000:27;777:258::o;1040:::-;1082:3;1120:5;1114:12;1147:6;1142:3;1135:19;1163:63;1219:6;1212:4;1207:3;1203:14;1196:4;1189:5;1185:16;1163:63;:::i;:::-;1280:2;1259:15;-1:-1:-1;;1255:29:1;1246:39;;;;1287:4;1242:50;;1040:258;-1:-1:-1;;1040:258:1:o;1303:220::-;1452:2;1441:9;1434:21;1415:4;1472:45;1513:2;1502:9;1498:18;1490:6;1472:45;:::i;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1914:254;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:254::-;4172:6;4180;4233:2;4221:9;4212:7;4208:23;4204:32;4201:52;;;4249:1;4246;4239:12;4201:52;4285:9;4272:23;4262:33;;4314:38;4348:2;4337:9;4333:18;4314:38;:::i;:::-;4304:48;;4104:254;;;;;:::o;4363:632::-;4534:2;4586:21;;;4656:13;;4559:18;;;4678:22;;;4505:4;;4534:2;4757:15;;;;4731:2;4716:18;;;4505:4;4800:169;4814:6;4811:1;4808:13;4800:169;;;4875:13;;4863:26;;4944:15;;;;4909:12;;;;4836:1;4829:9;4800:169;;;-1:-1:-1;4986:3:1;;4363:632;-1:-1:-1;;;;;;4363:632:1:o;5000:160::-;5065:20;;5121:13;;5114:21;5104:32;;5094:60;;5150:1;5147;5140:12;5165:254;5230:6;5238;5291:2;5279:9;5270:7;5266:23;5262:32;5259:52;;;5307:1;5304;5297:12;5259:52;5330:29;5349:9;5330:29;:::i;:::-;5320:39;;5378:35;5409:2;5398:9;5394:18;5378:35;:::i;5424:667::-;5519:6;5527;5535;5543;5596:3;5584:9;5575:7;5571:23;5567:33;5564:53;;;5613:1;5610;5603:12;5564:53;5636:29;5655:9;5636:29;:::i;:::-;5626:39;;5684:38;5718:2;5707:9;5703:18;5684:38;:::i;:::-;5674:48;;5769:2;5758:9;5754:18;5741:32;5731:42;;5824:2;5813:9;5809:18;5796:32;5851:18;5843:6;5840:30;5837:50;;;5883:1;5880;5873:12;5837:50;5906:22;;5959:4;5951:13;;5947:27;-1:-1:-1;5937:55:1;;5988:1;5985;5978:12;5937:55;6011:74;6077:7;6072:2;6059:16;6054:2;6050;6046:11;6011:74;:::i;:::-;6001:84;;;5424:667;;;;;;;:::o;6096:180::-;6152:6;6205:2;6193:9;6184:7;6180:23;6176:32;6173:52;;;6221:1;6218;6211:12;6173:52;6244:26;6260:9;6244:26;:::i;6281:260::-;6349:6;6357;6410:2;6398:9;6389:7;6385:23;6381:32;6378:52;;;6426:1;6423;6416:12;6378:52;6449:29;6468:9;6449:29;:::i;:::-;6439:39;;6497:38;6531:2;6520:9;6516:18;6497:38;:::i;6546:356::-;6748:2;6730:21;;;6767:18;;;6760:30;6826:34;6821:2;6806:18;;6799:62;6893:2;6878:18;;6546:356::o;6907:380::-;6986:1;6982:12;;;;7029;;;7050:61;;7104:4;7096:6;7092:17;7082:27;;7050:61;7157:2;7149:6;7146:14;7126:18;7123:38;7120:161;;7203:10;7198:3;7194:20;7191:1;7184:31;7238:4;7235:1;7228:15;7266:4;7263:1;7256:15;7120:161;;6907:380;;;:::o;7990:127::-;8051:10;8046:3;8042:20;8039:1;8032:31;8082:4;8079:1;8072:15;8106:4;8103:1;8096:15;8122:128;8162:3;8193:1;8189:6;8186:1;8183:13;8180:39;;;8199:18;;:::i;:::-;-1:-1:-1;8235:9:1;;8122:128::o;8255:344::-;8457:2;8439:21;;;8496:2;8476:18;;;8469:30;-1:-1:-1;;;8530:2:1;8515:18;;8508:50;8590:2;8575:18;;8255:344::o;9322:168::-;9362:7;9428:1;9424;9420:6;9416:14;9413:1;9410:21;9405:1;9398:9;9391:17;9387:45;9384:71;;;9435:18;;:::i;:::-;-1:-1:-1;9475:9:1;;9322:168::o;9495:127::-;9556:10;9551:3;9547:20;9544:1;9537:31;9587:4;9584:1;9577:15;9611:4;9608:1;9601:15;9627:120;9667:1;9693;9683:35;;9698:18;;:::i;:::-;-1:-1:-1;9732:9:1;;9627:120::o;9752:127::-;9813:10;9808:3;9804:20;9801:1;9794:31;9844:4;9841:1;9834:15;9868:4;9865:1;9858:15;10917:571;11197:3;11235:6;11229:13;11251:53;11297:6;11292:3;11285:4;11277:6;11273:17;11251:53;:::i;:::-;11367:13;;11326:16;;;;11389:57;11367:13;11326:16;11423:4;11411:17;;11389:57;:::i;:::-;11462:20;;10917:571;-1:-1:-1;;;;10917:571:1:o;11900:489::-;-1:-1:-1;;;;;12169:15:1;;;12151:34;;12221:15;;12216:2;12201:18;;12194:43;12268:2;12253:18;;12246:34;;;12316:3;12311:2;12296:18;;12289:31;;;12094:4;;12337:46;;12363:19;;12355:6;12337:46;:::i;:::-;12329:54;11900:489;-1:-1:-1;;;;;;11900:489:1:o;12394:249::-;12463:6;12516:2;12504:9;12495:7;12491:23;12487:32;12484:52;;;12532:1;12529;12522:12;12484:52;12564:9;12558:16;12583:30;12607:5;12583:30;:::i;12648:135::-;12687:3;12708:17;;;12705:43;;12728:18;;:::i;:::-;-1:-1:-1;12775:1:1;12764:13;;12648:135::o;12788:125::-;12828:4;12856:1;12853;12850:8;12847:34;;;12861:18;;:::i;:::-;-1:-1:-1;12898:9:1;;12788:125::o;12918:112::-;12950:1;12976;12966:35;;12981:18;;:::i;:::-;-1:-1:-1;13015:9:1;;12918:112::o

Swarm Source

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