ETH Price: $3,468.19 (+2.18%)
Gas: 16 Gwei

Token

Superlative Apes (SLAPE)
 

Overview

Max Total Supply

1,609 SLAPE

Holders

721

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jimjammer.eth
Balance
1 SLAPE
0xf33eb2b631cdecf4b09dacd7e6c5b1713a6e890c
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:
SLAPES

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-10
*/

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// 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: @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: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/utils/ERC721Holder.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC721Receiver} interface.
 *
 * Accepts all token transfers.
 * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}.
 */
contract ERC721Holder is IERC721Receiver {
    /**
     * @dev See {IERC721Receiver-onERC721Received}.
     *
     * Always returns `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address,
        address,
        uint256,
        bytes memory
    ) public virtual override returns (bytes4) {
        return this.onERC721Received.selector;
    }
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: slapeold.sol

pragma solidity ^0.8.0;




/// SPDX-License-Identifier: UNLICENSED


/*
  ______                                 __          _    _                       _                             
.' ____ \                               [  |        / |_ (_)                     / \                            
| (___ \_|__   _  _ .--.   .---.  _ .--. | |  ,--. `| |-'__  _   __  .---.      / _ \    _ .--.   .---.  .--.   
 _.____`.[  | | |[ '/'`\ \/ /__\\[ `/'`\]| | `'_\ : | | [  |[ \ [  ]/ /__\\    / ___ \  [ '/'`\ \/ /__\\( (`\]  
| \____) || \_/ |,| \__/ || \__., | |    | | // | |,| |, | | \ \/ / | \__.,  _/ /   \ \_ | \__/ || \__., `'.'.  
 \______.''.__.'_/| ;.__/  '.__.'[___]  [___]\'-;__/\__/[___] \__/   '.__.' |____| |____|| ;.__/  '.__.'[\__) ) 
                 [__|                                                                   [__|                        
*/


contract SUPERLATIVEAPES is ERC721, Ownable {
   
    using Strings for uint256;
    using Counters for Counters.Counter;

    string public baseURI;
    string public baseExtension = ".json";


    uint256 public maxTx = 5;
    uint256 public maxPreTx = 2;
    uint256 public maxSupply = 4444;
    uint256 public presaleSupply = 2400;
    uint256 public price = 0.069 ether;
   
   
    //December 16th 3AM GMT
    uint256 public presaleTime = 1639623600;
    //December 16th 11PM GMT 
    uint256 public presaleClose = 1639695600;

    //December 17th 3AM GMT
    uint256 public mainsaleTime = 1639710000;
   
    Counters.Counter private _tokenIdTracker;

    mapping (address => bool) public presaleWallets;
    mapping (address => uint256) public presaleWalletLimits;
    mapping (address => uint256) public mainsaleWalletLimits;


    modifier isMainsaleOpen
    {
         require(block.timestamp >= mainsaleTime);
         _;
    }
    modifier isPresaleOpen
    {
         require(block.timestamp >= presaleTime && block.timestamp <= presaleClose, "Presale closed!");
         _;
    }
   
    constructor(string memory _initBaseURI) ERC721("Superlative Apes", "SLAPE")
    {
        setBaseURI(_initBaseURI);
        for(uint256 i=0; i<100; i++)
        {
            _tokenIdTracker.increment();
            _safeMint(msg.sender, totalToken());
        }
        for(uint256 i=0; i<100; i++)
        {
            _tokenIdTracker.increment();
            _safeMint(0xE5dF6d3Ca3CE03015a6AB93CD6d98D5b4fdb9c11, totalToken());
        }
        for(uint256 i=0; i<100; i++)
        {
            _tokenIdTracker.increment();
            _safeMint(0x3047866171b5E450449f9B1B492D2670aA08A746, totalToken());
        }
        
    }
   
    function setPrice(uint256 newPrice) external onlyOwner  {
        price = newPrice;
    }
   
    function setMaxTx(uint newMax) external onlyOwner {
        maxTx = newMax;
    }

    function totalToken() public view returns (uint256) {
            return _tokenIdTracker.current();
    }

    function mainSale(uint8 mintTotal) public payable isMainsaleOpen
    {
        uint256 totalMinted = mintTotal + mainsaleWalletLimits[msg.sender];
        
        require(mintTotal >= 1 && mintTotal <= maxTx, "Mint Amount Incorrect");
        require(msg.value >= price * mintTotal, "Minting a SLAPE APE Costs 0.069 Ether Each!");
        require(totalToken() <= maxSupply, "SOLD OUT!");
        require(totalMinted <= maxTx, "You'll pass mint limit!");
       
        for(uint i=0;i<mintTotal;i++)
        {
            mainsaleWalletLimits[msg.sender]++;
            _tokenIdTracker.increment();
            require(totalToken() <= maxSupply, "SOLD OUT!");
            _safeMint(msg.sender, totalToken());
        }
    }
   
    function preSale(uint8 mintTotal) public payable isPresaleOpen
    {
        uint256 totalMinted = mintTotal + presaleWalletLimits[msg.sender];

        require(presaleWallets[msg.sender] == true, "You aren't whitelisted!");
        require(mintTotal >= 1 && mintTotal <= maxTx, "Mint Amount Incorrect");
        require(msg.value >= price * mintTotal, "Minting a SLAPE APE Costs 0.069 Ether Each!");
        require(totalToken() <= presaleSupply, "SOLD OUT!");
        require(totalMinted <= maxPreTx, "You'll pass mint limit!");
       
        for(uint i=0; i<mintTotal; i++)
        {
            presaleWalletLimits[msg.sender]++;
            _tokenIdTracker.increment();
            require(totalToken() <= presaleSupply, "SOLD OUT!");
            _safeMint(msg.sender, totalToken());
        }
       
    }
   
    function airdrop(address airdropPatricipent, uint8 tokenID) public payable onlyOwner
    {
        _transfer(address(this), airdropPatricipent, tokenID);
    }
   
    function addWhiteList(address[] memory whiteListedAddresses) public onlyOwner
    {
        for(uint256 i=0; i<whiteListedAddresses.length;i++)
        {
            presaleWallets[whiteListedAddresses[i]] = true;
        }
    }
    function isAddressWhitelisted(address whitelist) public view returns(bool)
    {
        return presaleWallets[whitelist];
    }
       
    function withdrawContractEther(address payable recipient) external onlyOwner
    {
        recipient.transfer(getBalance());
    }
   
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
   
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }
   
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : "";
    }
    function getBalance() public view returns(uint)
    {
        return address(this).balance;
    }
   

}
// File: slapeFix.sol


pragma solidity 0.8.7;






contract SLAPES is ERC721, Ownable, ReentrancyGuard, ERC721Holder {

    using Address for address;
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";

    uint256 public totalMinted;

    SUPERLATIVEAPES slapes = SUPERLATIVEAPES(0x1e87eE9249Cc647Af9EDEecB73D6b76AF14d8C27);
    mapping (uint256 => bool) public slapeIdMinted;

    constructor(string memory _initBaseURI) ERC721("Superlative Apes", "SLAPE") {
        setBaseURI(_initBaseURI);
    }

    modifier onlySender {
        require(msg.sender == tx.origin);
        _;
    }
    function slapeAuto() public payable nonReentrant onlySender
    {      
        uint256[] memory slapeIDS = walletOfSlapeOwner(msg.sender);

        for(uint256 i=0; i<slapeIDS.length; i++)
        {
            require(slapeIdMinted[slapeIDS[i]] == false);

            totalMinted +=1;
            slapeIdMinted[slapeIDS[i]] = true;
            _mint(msg.sender, slapeIDS[i]);
        }
    }

    function slapeMint(uint256[] memory slapeIDS) public payable nonReentrant onlySender
    {      
        for(uint256 i=0; i<slapeIDS.length; i++)
        {
            require(msg.sender == slapes.ownerOf(slapeIDS[i]));
            require(slapeIdMinted[slapeIDS[i]] == false);

            totalMinted +=1;
            slapeIdMinted[slapeIDS[i]] = true;
            _mint(msg.sender, slapeIDS[i]);
        }
    }

    function totalSupply() public view returns (uint256)
    {
        return totalMinted;
    }

    function devMint(uint256[] memory slapeIDS) public onlyOwner
    {
        for(uint256 i=0; i<slapeIDS.length; i++)
        {
            totalMinted +=1;
            slapeIdMinted[slapeIDS[i]] = true;
            _mint(msg.sender, slapeIDS[i]);
        }
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
   
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }
   
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

    function walletOfOwner(address address_) public virtual view returns (uint256[] memory) {
        uint256 _balance = balanceOf(address_);
        uint256[] memory _tokens = new uint256[] (_balance);
        uint256 _index;
        uint256 _loopThrough = totalSupply();
        for (uint256 i = 0; i < _loopThrough; i++) {
            bool _exists = _exists(i);
            if (_exists) {
                if (ownerOf(i) == address_) { _tokens[_index] = i; _index++; }
            }
            else if (!_exists && _tokens[_balance - 1] == 0) { _loopThrough++; }
        }
        return _tokens;
    }

    function walletOfSlapeOwner(address address_) public virtual view returns (uint256[] memory) {
        uint256 _balance = slapes.balanceOf(address_);
        uint256[] memory _tokens = new uint256[] (_balance);
        uint256 _index;
        uint256 _loopThrough = slapes.totalToken();
        for (uint256 i = 1; i <= _loopThrough; i++) {

            if(slapes.ownerOf(i) == address_) { _tokens[_index] = i; _index++; }

        }
        return _tokens;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"slapeIDS","type":"uint256[]"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"slapeAuto","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"slapeIdMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"slapeIDS","type":"uint256[]"}],"name":"slapeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","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":[{"internalType":"address","name":"address_","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"walletOfSlapeOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a0908152620000289160099190620001ec565b50600b80546001600160a01b031916731e87ee9249cc647af9edeecb73d6b76af14d8c271790553480156200005c57600080fd5b5060405162002732380380620027328339810160408190526200007f9162000292565b604080518082018252601081526f53757065726c6174697665204170657360801b602080830191825283518085019094526005845264534c41504560d81b908401528151919291620000d491600091620001ec565b508051620000ea906001906020840190620001ec565b50505062000107620001016200011e60201b60201c565b62000122565b6001600755620001178162000174565b50620003c1565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001d35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001e8906008906020840190620001ec565b5050565b828054620001fa906200036e565b90600052602060002090601f0160209004810192826200021e576000855562000269565b82601f106200023957805160ff191683800117855562000269565b8280016001018555821562000269579182015b82811115620002695782518255916020019190600101906200024c565b50620002779291506200027b565b5090565b5b808211156200027757600081556001016200027c565b60006020808385031215620002a657600080fd5b82516001600160401b0380821115620002be57600080fd5b818501915085601f830112620002d357600080fd5b815181811115620002e857620002e8620003ab565b604051601f8201601f19908116603f01168101908382118183101715620003135762000313620003ab565b8160405282815288868487010111156200032c57600080fd5b600093505b8284101562000350578484018601518185018701529285019262000331565b82841115620003625760008684830101525b98975050505050505050565b600181811c908216806200038357607f821691505b60208210811415620003a557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61236180620003d16000396000f3fe6080604052600436106101b75760003560e01c80636c0360eb116100ec578063ad8f0aa61161008a578063c668286211610064578063c6682862146104d0578063c87b56dd146104e5578063e985e9c514610505578063f2fde38b1461054e57600080fd5b8063ad8f0aa614610488578063b3fd919d14610490578063b88d4fde146104b057600080fd5b80638da5cb5b116100c65780638da5cb5b1461041f57806395d89b411461043d578063a22cb46514610452578063a2309ff81461047257600080fd5b80636c0360eb146103d557806370a08231146103ea578063715018a61461040a57600080fd5b806342842e0e116101595780634bd9d7b7116101335780634bd9d7b7146103525780634f1416281461038257806355f804b3146103955780636352211e146103b557600080fd5b806342842e0e146102e5578063438b630014610305578063443323fe1461033257600080fd5b8063095ea7b311610195578063095ea7b31461024b578063150b7a021461026d57806318160ddd146102a657806323b872dd146102c557600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611e8d565b61056e565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105c0565b6040516101e891906120b3565b34801561021f57600080fd5b5061023361022e366004611f10565b610652565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611db4565b6106ec565b005b34801561027957600080fd5b5061028d610288366004611d01565b610802565b6040516001600160e01b031990911681526020016101e8565b3480156102b257600080fd5b50600a545b6040519081526020016101e8565b3480156102d157600080fd5b5061026b6102e0366004611cc0565b610813565b3480156102f157600080fd5b5061026b610300366004611cc0565b610844565b34801561031157600080fd5b50610325610320366004611c4d565b61085f565b6040516101e8919061206f565b34801561033e57600080fd5b5061032561034d366004611c4d565b6109a3565b34801561035e57600080fd5b506101dc61036d366004611f10565b600c6020526000908152604090205460ff1681565b61026b610390366004611de0565b610bce565b3480156103a157600080fd5b5061026b6103b0366004611ec7565b610dd5565b3480156103c157600080fd5b506102336103d0366004611f10565b610e16565b3480156103e157600080fd5b50610206610e8d565b3480156103f657600080fd5b506102b7610405366004611c4d565b610f1b565b34801561041657600080fd5b5061026b610fa2565b34801561042b57600080fd5b506006546001600160a01b0316610233565b34801561044957600080fd5b50610206610fd8565b34801561045e57600080fd5b5061026b61046d366004611d81565b610fe7565b34801561047e57600080fd5b506102b7600a5481565b61026b610ff2565b34801561049c57600080fd5b5061026b6104ab366004611de0565b611134565b3480156104bc57600080fd5b5061026b6104cb366004611d01565b6111f1565b3480156104dc57600080fd5b50610206611229565b3480156104f157600080fd5b50610206610500366004611f10565b611236565b34801561051157600080fd5b506101dc610520366004611c87565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561055a57600080fd5b5061026b610569366004611c4d565b611314565b60006001600160e01b031982166380ac58cd60e01b148061059f57506001600160e01b03198216635b5e139f60e01b145b806105ba57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105cf9061223e565b80601f01602080910402602001604051908101604052809291908181526020018280546105fb9061223e565b80156106485780601f1061061d57610100808354040283529160200191610648565b820191906000526020600020905b81548152906001019060200180831161062b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106d05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106f782610e16565b9050806001600160a01b0316836001600160a01b031614156107655760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106c7565b336001600160a01b038216148061078157506107818133610520565b6107f35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106c7565b6107fd83836113af565b505050565b630a85bd0160e11b5b949350505050565b61081d338261141d565b6108395760405162461bcd60e51b81526004016106c79061214d565b6107fd838383611513565b6107fd838383604051806020016040528060008152506111f1565b6060600061086c83610f1b565b905060008167ffffffffffffffff811115610889576108896122ea565b6040519080825280602002602001820160405280156108b2578160200160208202803683370190505b5090506000806108c1600a5490565b905060005b81811015610998576000818152600260205260409020546001600160a01b03161580159061094157876001600160a01b031661090183610e16565b6001600160a01b0316141561093c5781858581518110610923576109236122d4565b60209081029190910101528361093881612279565b9450505b610985565b801580156109725750846109566001886121fb565b81518110610966576109666122d4565b60200260200101516000145b15610985578261098181612279565b9350505b508061099081612279565b9150506108c6565b509195945050505050565b600b546040516370a0823160e01b81526001600160a01b0383811660048301526060926000929116906370a082319060240160206040518083038186803b1580156109ed57600080fd5b505afa158015610a01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a259190611f29565b905060008167ffffffffffffffff811115610a4257610a426122ea565b604051908082528060200260200182016040528015610a6b578160200160208202803683370190505b509050600080600b60009054906101000a90046001600160a01b03166001600160a01b031663626be5676040518163ffffffff1660e01b815260040160206040518083038186803b158015610abf57600080fd5b505afa158015610ad3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af79190611f29565b905060015b81811161099857600b546040516331a9108f60e11b8152600481018390526001600160a01b03898116921690636352211e9060240160206040518083038186803b158015610b4957600080fd5b505afa158015610b5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b819190611c6a565b6001600160a01b03161415610bbc5780848481518110610ba357610ba36122d4565b602090810291909101015282610bb881612279565b9350505b80610bc681612279565b915050610afc565b60026007541415610c215760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106c7565b6002600755333214610c3257600080fd5b60005b8151811015610dcc57600b5482516001600160a01b0390911690636352211e90849084908110610c6757610c676122d4565b60200260200101516040518263ffffffff1660e01b8152600401610c8d91815260200190565b60206040518083038186803b158015610ca557600080fd5b505afa158015610cb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cdd9190611c6a565b6001600160a01b0316336001600160a01b031614610cfa57600080fd5b600c6000838381518110610d1057610d106122d4565b60209081029190910181015182528101919091526040016000205460ff1615610d3857600080fd5b6001600a6000828254610d4b91906121cf565b925050819055506001600c6000848481518110610d6a57610d6a6122d4565b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550610dba33838381518110610dad57610dad6122d4565b60200260200101516116af565b80610dc481612279565b915050610c35565b50506001600755565b6006546001600160a01b03163314610dff5760405162461bcd60e51b81526004016106c790612118565b8051610e12906008906020840190611b5c565b5050565b6000818152600260205260408120546001600160a01b0316806105ba5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106c7565b60088054610e9a9061223e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec69061223e565b8015610f135780601f10610ee857610100808354040283529160200191610f13565b820191906000526020600020905b815481529060010190602001808311610ef657829003601f168201915b505050505081565b60006001600160a01b038216610f865760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106c7565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610fcc5760405162461bcd60e51b81526004016106c790612118565b610fd660006117f1565b565b6060600180546105cf9061223e565b610e12338383611843565b600260075414156110455760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106c7565b600260075533321461105657600080fd5b6000611061336109a3565b905060005b8151811015610dcc57600c6000838381518110611085576110856122d4565b60209081029190910181015182528101919091526040016000205460ff16156110ad57600080fd5b6001600a60008282546110c091906121cf565b925050819055506001600c60008484815181106110df576110df6122d4565b6020026020010151815260200190815260200160002060006101000a81548160ff02191690831515021790555061112233838381518110610dad57610dad6122d4565b8061112c81612279565b915050611066565b6006546001600160a01b0316331461115e5760405162461bcd60e51b81526004016106c790612118565b60005b8151811015610e12576001600a600082825461117d91906121cf565b925050819055506001600c600084848151811061119c5761119c6122d4565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506111df33838381518110610dad57610dad6122d4565b806111e981612279565b915050611161565b6111fb338361141d565b6112175760405162461bcd60e51b81526004016106c79061214d565b61122384848484611912565b50505050565b60098054610e9a9061223e565b6000818152600260205260409020546060906001600160a01b03166112b55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106c7565b60006112bf611945565b905060008151116112df576040518060200160405280600081525061130d565b806112e984611954565b60096040516020016112fd93929190611f6e565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461133e5760405162461bcd60e51b81526004016106c790612118565b6001600160a01b0381166113a35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c7565b6113ac816117f1565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113e482610e16565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114965760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106c7565b60006114a183610e16565b9050806001600160a01b0316846001600160a01b031614806114e857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061080b5750836001600160a01b031661150184610652565b6001600160a01b031614949350505050565b826001600160a01b031661152682610e16565b6001600160a01b03161461158a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106c7565b6001600160a01b0382166115ec5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106c7565b6115f76000826113af565b6001600160a01b03831660009081526003602052604081208054600192906116209084906121fb565b90915550506001600160a01b038216600090815260036020526040812080546001929061164e9084906121cf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166117055760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106c7565b6000818152600260205260409020546001600160a01b03161561176a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106c7565b6001600160a01b03821660009081526003602052604081208054600192906117939084906121cf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156118a55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106c7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61191d848484611513565b61192984848484611a52565b6112235760405162461bcd60e51b81526004016106c7906120c6565b6060600880546105cf9061223e565b6060816119785750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119a2578061198c81612279565b915061199b9050600a836121e7565b915061197c565b60008167ffffffffffffffff8111156119bd576119bd6122ea565b6040519080825280601f01601f1916602001820160405280156119e7576020820181803683370190505b5090505b841561080b576119fc6001836121fb565b9150611a09600a86612294565b611a149060306121cf565b60f81b818381518110611a2957611a296122d4565b60200101906001600160f81b031916908160001a905350611a4b600a866121e7565b94506119eb565b60006001600160a01b0384163b15611b5457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a96903390899088908890600401612032565b602060405180830381600087803b158015611ab057600080fd5b505af1925050508015611ae0575060408051601f3d908101601f19168201909252611add91810190611eaa565b60015b611b3a573d808015611b0e576040519150601f19603f3d011682016040523d82523d6000602084013e611b13565b606091505b508051611b325760405162461bcd60e51b81526004016106c7906120c6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061080b565b50600161080b565b828054611b689061223e565b90600052602060002090601f016020900481019282611b8a5760008555611bd0565b82601f10611ba357805160ff1916838001178555611bd0565b82800160010185558215611bd0579182015b82811115611bd0578251825591602001919060010190611bb5565b50611bdc929150611be0565b5090565b5b80821115611bdc5760008155600101611be1565b600067ffffffffffffffff831115611c0f57611c0f6122ea565b611c22601f8401601f191660200161219e565b9050828152838383011115611c3657600080fd5b828260208301376000602084830101529392505050565b600060208284031215611c5f57600080fd5b813561130d81612300565b600060208284031215611c7c57600080fd5b815161130d81612300565b60008060408385031215611c9a57600080fd5b8235611ca581612300565b91506020830135611cb581612300565b809150509250929050565b600080600060608486031215611cd557600080fd5b8335611ce081612300565b92506020840135611cf081612300565b929592945050506040919091013590565b60008060008060808587031215611d1757600080fd5b8435611d2281612300565b93506020850135611d3281612300565b925060408501359150606085013567ffffffffffffffff811115611d5557600080fd5b8501601f81018713611d6657600080fd5b611d7587823560208401611bf5565b91505092959194509250565b60008060408385031215611d9457600080fd5b8235611d9f81612300565b915060208301358015158114611cb557600080fd5b60008060408385031215611dc757600080fd5b8235611dd281612300565b946020939093013593505050565b60006020808385031215611df357600080fd5b823567ffffffffffffffff80821115611e0b57600080fd5b818501915085601f830112611e1f57600080fd5b813581811115611e3157611e316122ea565b8060051b9150611e4284830161219e565b8181528481019084860184860187018a1015611e5d57600080fd5b600095505b83861015611e80578035835260019590950194918601918601611e62565b5098975050505050505050565b600060208284031215611e9f57600080fd5b813561130d81612315565b600060208284031215611ebc57600080fd5b815161130d81612315565b600060208284031215611ed957600080fd5b813567ffffffffffffffff811115611ef057600080fd5b8201601f81018413611f0157600080fd5b61080b84823560208401611bf5565b600060208284031215611f2257600080fd5b5035919050565b600060208284031215611f3b57600080fd5b5051919050565b60008151808452611f5a816020860160208601612212565b601f01601f19169290920160200192915050565b600084516020611f818285838a01612212565b855191840191611f948184848a01612212565b8554920191600090600181811c9080831680611fb157607f831692505b858310811415611fcf57634e487b7160e01b85526022600452602485fd5b808015611fe35760018114611ff457612021565b60ff19851688528388019550612021565b60008b81526020902060005b858110156120195781548a820152908401908801612000565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206590830184611f42565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120a75783518352928401929184019160010161208b565b50909695505050505050565b60208152600061130d6020830184611f42565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156121c7576121c76122ea565b604052919050565b600082198211156121e2576121e26122a8565b500190565b6000826121f6576121f66122be565b500490565b60008282101561220d5761220d6122a8565b500390565b60005b8381101561222d578181015183820152602001612215565b838111156112235750506000910152565b600181811c9082168061225257607f821691505b6020821081141561227357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561228d5761228d6122a8565b5060010190565b6000826122a3576122a36122be565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146113ac57600080fd5b6001600160e01b0319811681146113ac57600080fdfea2646970667358221220f526e0acb97da5611ade792d130787a67c2e45c22cd1045c4bce87eaf39c884464736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d65636e616a4a637a4d515a59335a7a6559654177687747316a506e7458427245524e775956423954315443672f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636c0360eb116100ec578063ad8f0aa61161008a578063c668286211610064578063c6682862146104d0578063c87b56dd146104e5578063e985e9c514610505578063f2fde38b1461054e57600080fd5b8063ad8f0aa614610488578063b3fd919d14610490578063b88d4fde146104b057600080fd5b80638da5cb5b116100c65780638da5cb5b1461041f57806395d89b411461043d578063a22cb46514610452578063a2309ff81461047257600080fd5b80636c0360eb146103d557806370a08231146103ea578063715018a61461040a57600080fd5b806342842e0e116101595780634bd9d7b7116101335780634bd9d7b7146103525780634f1416281461038257806355f804b3146103955780636352211e146103b557600080fd5b806342842e0e146102e5578063438b630014610305578063443323fe1461033257600080fd5b8063095ea7b311610195578063095ea7b31461024b578063150b7a021461026d57806318160ddd146102a657806323b872dd146102c557600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611e8d565b61056e565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105c0565b6040516101e891906120b3565b34801561021f57600080fd5b5061023361022e366004611f10565b610652565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611db4565b6106ec565b005b34801561027957600080fd5b5061028d610288366004611d01565b610802565b6040516001600160e01b031990911681526020016101e8565b3480156102b257600080fd5b50600a545b6040519081526020016101e8565b3480156102d157600080fd5b5061026b6102e0366004611cc0565b610813565b3480156102f157600080fd5b5061026b610300366004611cc0565b610844565b34801561031157600080fd5b50610325610320366004611c4d565b61085f565b6040516101e8919061206f565b34801561033e57600080fd5b5061032561034d366004611c4d565b6109a3565b34801561035e57600080fd5b506101dc61036d366004611f10565b600c6020526000908152604090205460ff1681565b61026b610390366004611de0565b610bce565b3480156103a157600080fd5b5061026b6103b0366004611ec7565b610dd5565b3480156103c157600080fd5b506102336103d0366004611f10565b610e16565b3480156103e157600080fd5b50610206610e8d565b3480156103f657600080fd5b506102b7610405366004611c4d565b610f1b565b34801561041657600080fd5b5061026b610fa2565b34801561042b57600080fd5b506006546001600160a01b0316610233565b34801561044957600080fd5b50610206610fd8565b34801561045e57600080fd5b5061026b61046d366004611d81565b610fe7565b34801561047e57600080fd5b506102b7600a5481565b61026b610ff2565b34801561049c57600080fd5b5061026b6104ab366004611de0565b611134565b3480156104bc57600080fd5b5061026b6104cb366004611d01565b6111f1565b3480156104dc57600080fd5b50610206611229565b3480156104f157600080fd5b50610206610500366004611f10565b611236565b34801561051157600080fd5b506101dc610520366004611c87565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561055a57600080fd5b5061026b610569366004611c4d565b611314565b60006001600160e01b031982166380ac58cd60e01b148061059f57506001600160e01b03198216635b5e139f60e01b145b806105ba57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105cf9061223e565b80601f01602080910402602001604051908101604052809291908181526020018280546105fb9061223e565b80156106485780601f1061061d57610100808354040283529160200191610648565b820191906000526020600020905b81548152906001019060200180831161062b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106d05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106f782610e16565b9050806001600160a01b0316836001600160a01b031614156107655760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106c7565b336001600160a01b038216148061078157506107818133610520565b6107f35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106c7565b6107fd83836113af565b505050565b630a85bd0160e11b5b949350505050565b61081d338261141d565b6108395760405162461bcd60e51b81526004016106c79061214d565b6107fd838383611513565b6107fd838383604051806020016040528060008152506111f1565b6060600061086c83610f1b565b905060008167ffffffffffffffff811115610889576108896122ea565b6040519080825280602002602001820160405280156108b2578160200160208202803683370190505b5090506000806108c1600a5490565b905060005b81811015610998576000818152600260205260409020546001600160a01b03161580159061094157876001600160a01b031661090183610e16565b6001600160a01b0316141561093c5781858581518110610923576109236122d4565b60209081029190910101528361093881612279565b9450505b610985565b801580156109725750846109566001886121fb565b81518110610966576109666122d4565b60200260200101516000145b15610985578261098181612279565b9350505b508061099081612279565b9150506108c6565b509195945050505050565b600b546040516370a0823160e01b81526001600160a01b0383811660048301526060926000929116906370a082319060240160206040518083038186803b1580156109ed57600080fd5b505afa158015610a01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a259190611f29565b905060008167ffffffffffffffff811115610a4257610a426122ea565b604051908082528060200260200182016040528015610a6b578160200160208202803683370190505b509050600080600b60009054906101000a90046001600160a01b03166001600160a01b031663626be5676040518163ffffffff1660e01b815260040160206040518083038186803b158015610abf57600080fd5b505afa158015610ad3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af79190611f29565b905060015b81811161099857600b546040516331a9108f60e11b8152600481018390526001600160a01b03898116921690636352211e9060240160206040518083038186803b158015610b4957600080fd5b505afa158015610b5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b819190611c6a565b6001600160a01b03161415610bbc5780848481518110610ba357610ba36122d4565b602090810291909101015282610bb881612279565b9350505b80610bc681612279565b915050610afc565b60026007541415610c215760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106c7565b6002600755333214610c3257600080fd5b60005b8151811015610dcc57600b5482516001600160a01b0390911690636352211e90849084908110610c6757610c676122d4565b60200260200101516040518263ffffffff1660e01b8152600401610c8d91815260200190565b60206040518083038186803b158015610ca557600080fd5b505afa158015610cb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cdd9190611c6a565b6001600160a01b0316336001600160a01b031614610cfa57600080fd5b600c6000838381518110610d1057610d106122d4565b60209081029190910181015182528101919091526040016000205460ff1615610d3857600080fd5b6001600a6000828254610d4b91906121cf565b925050819055506001600c6000848481518110610d6a57610d6a6122d4565b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550610dba33838381518110610dad57610dad6122d4565b60200260200101516116af565b80610dc481612279565b915050610c35565b50506001600755565b6006546001600160a01b03163314610dff5760405162461bcd60e51b81526004016106c790612118565b8051610e12906008906020840190611b5c565b5050565b6000818152600260205260408120546001600160a01b0316806105ba5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106c7565b60088054610e9a9061223e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec69061223e565b8015610f135780601f10610ee857610100808354040283529160200191610f13565b820191906000526020600020905b815481529060010190602001808311610ef657829003601f168201915b505050505081565b60006001600160a01b038216610f865760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106c7565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610fcc5760405162461bcd60e51b81526004016106c790612118565b610fd660006117f1565b565b6060600180546105cf9061223e565b610e12338383611843565b600260075414156110455760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106c7565b600260075533321461105657600080fd5b6000611061336109a3565b905060005b8151811015610dcc57600c6000838381518110611085576110856122d4565b60209081029190910181015182528101919091526040016000205460ff16156110ad57600080fd5b6001600a60008282546110c091906121cf565b925050819055506001600c60008484815181106110df576110df6122d4565b6020026020010151815260200190815260200160002060006101000a81548160ff02191690831515021790555061112233838381518110610dad57610dad6122d4565b8061112c81612279565b915050611066565b6006546001600160a01b0316331461115e5760405162461bcd60e51b81526004016106c790612118565b60005b8151811015610e12576001600a600082825461117d91906121cf565b925050819055506001600c600084848151811061119c5761119c6122d4565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506111df33838381518110610dad57610dad6122d4565b806111e981612279565b915050611161565b6111fb338361141d565b6112175760405162461bcd60e51b81526004016106c79061214d565b61122384848484611912565b50505050565b60098054610e9a9061223e565b6000818152600260205260409020546060906001600160a01b03166112b55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106c7565b60006112bf611945565b905060008151116112df576040518060200160405280600081525061130d565b806112e984611954565b60096040516020016112fd93929190611f6e565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461133e5760405162461bcd60e51b81526004016106c790612118565b6001600160a01b0381166113a35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c7565b6113ac816117f1565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113e482610e16565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114965760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106c7565b60006114a183610e16565b9050806001600160a01b0316846001600160a01b031614806114e857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061080b5750836001600160a01b031661150184610652565b6001600160a01b031614949350505050565b826001600160a01b031661152682610e16565b6001600160a01b03161461158a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106c7565b6001600160a01b0382166115ec5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106c7565b6115f76000826113af565b6001600160a01b03831660009081526003602052604081208054600192906116209084906121fb565b90915550506001600160a01b038216600090815260036020526040812080546001929061164e9084906121cf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166117055760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106c7565b6000818152600260205260409020546001600160a01b03161561176a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106c7565b6001600160a01b03821660009081526003602052604081208054600192906117939084906121cf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156118a55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106c7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61191d848484611513565b61192984848484611a52565b6112235760405162461bcd60e51b81526004016106c7906120c6565b6060600880546105cf9061223e565b6060816119785750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119a2578061198c81612279565b915061199b9050600a836121e7565b915061197c565b60008167ffffffffffffffff8111156119bd576119bd6122ea565b6040519080825280601f01601f1916602001820160405280156119e7576020820181803683370190505b5090505b841561080b576119fc6001836121fb565b9150611a09600a86612294565b611a149060306121cf565b60f81b818381518110611a2957611a296122d4565b60200101906001600160f81b031916908160001a905350611a4b600a866121e7565b94506119eb565b60006001600160a01b0384163b15611b5457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a96903390899088908890600401612032565b602060405180830381600087803b158015611ab057600080fd5b505af1925050508015611ae0575060408051601f3d908101601f19168201909252611add91810190611eaa565b60015b611b3a573d808015611b0e576040519150601f19603f3d011682016040523d82523d6000602084013e611b13565b606091505b508051611b325760405162461bcd60e51b81526004016106c7906120c6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061080b565b50600161080b565b828054611b689061223e565b90600052602060002090601f016020900481019282611b8a5760008555611bd0565b82601f10611ba357805160ff1916838001178555611bd0565b82800160010185558215611bd0579182015b82811115611bd0578251825591602001919060010190611bb5565b50611bdc929150611be0565b5090565b5b80821115611bdc5760008155600101611be1565b600067ffffffffffffffff831115611c0f57611c0f6122ea565b611c22601f8401601f191660200161219e565b9050828152838383011115611c3657600080fd5b828260208301376000602084830101529392505050565b600060208284031215611c5f57600080fd5b813561130d81612300565b600060208284031215611c7c57600080fd5b815161130d81612300565b60008060408385031215611c9a57600080fd5b8235611ca581612300565b91506020830135611cb581612300565b809150509250929050565b600080600060608486031215611cd557600080fd5b8335611ce081612300565b92506020840135611cf081612300565b929592945050506040919091013590565b60008060008060808587031215611d1757600080fd5b8435611d2281612300565b93506020850135611d3281612300565b925060408501359150606085013567ffffffffffffffff811115611d5557600080fd5b8501601f81018713611d6657600080fd5b611d7587823560208401611bf5565b91505092959194509250565b60008060408385031215611d9457600080fd5b8235611d9f81612300565b915060208301358015158114611cb557600080fd5b60008060408385031215611dc757600080fd5b8235611dd281612300565b946020939093013593505050565b60006020808385031215611df357600080fd5b823567ffffffffffffffff80821115611e0b57600080fd5b818501915085601f830112611e1f57600080fd5b813581811115611e3157611e316122ea565b8060051b9150611e4284830161219e565b8181528481019084860184860187018a1015611e5d57600080fd5b600095505b83861015611e80578035835260019590950194918601918601611e62565b5098975050505050505050565b600060208284031215611e9f57600080fd5b813561130d81612315565b600060208284031215611ebc57600080fd5b815161130d81612315565b600060208284031215611ed957600080fd5b813567ffffffffffffffff811115611ef057600080fd5b8201601f81018413611f0157600080fd5b61080b84823560208401611bf5565b600060208284031215611f2257600080fd5b5035919050565b600060208284031215611f3b57600080fd5b5051919050565b60008151808452611f5a816020860160208601612212565b601f01601f19169290920160200192915050565b600084516020611f818285838a01612212565b855191840191611f948184848a01612212565b8554920191600090600181811c9080831680611fb157607f831692505b858310811415611fcf57634e487b7160e01b85526022600452602485fd5b808015611fe35760018114611ff457612021565b60ff19851688528388019550612021565b60008b81526020902060005b858110156120195781548a820152908401908801612000565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206590830184611f42565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120a75783518352928401929184019160010161208b565b50909695505050505050565b60208152600061130d6020830184611f42565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156121c7576121c76122ea565b604052919050565b600082198211156121e2576121e26122a8565b500190565b6000826121f6576121f66122be565b500490565b60008282101561220d5761220d6122a8565b500390565b60005b8381101561222d578181015183820152602001612215565b838111156112235750506000910152565b600181811c9082168061225257607f821691505b6020821081141561227357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561228d5761228d6122a8565b5060010190565b6000826122a3576122a36122be565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146113ac57600080fd5b6001600160e01b0319811681146113ac57600080fdfea2646970667358221220f526e0acb97da5611ade792d130787a67c2e45c22cd1045c4bce87eaf39c884464736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d65636e616a4a637a4d515a59335a7a6559654177687747316a506e7458427245524e775956423954315443672f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://gateway.pinata.cloud/ipfs/QmecnajJczMQZY3ZzeYeAwhwG1jPntXBrERNwYVB9T1TCg/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d65636e616a4a637a4d515a59335a7a6559654177687747316a506e74
Arg [4] : 58427245524e775956423954315443672f000000000000000000000000000000


Deployed Bytecode Sourcemap

48400:3555:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29161:305;;;;;;;;;;-1:-1:-1;29161:305:0;;;;;:::i;:::-;;:::i;:::-;;;8919:14:1;;8912:22;8894:41;;8882:2;8867:18;29161:305:0;;;;;;;;30106:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31666:221::-;;;;;;;;;;-1:-1:-1;31666:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7580:32:1;;;7562:51;;7550:2;7535:18;31666:221:0;7416:203:1;31189:411:0;;;;;;;;;;-1:-1:-1;31189:411:0;;;;;:::i;:::-;;:::i;:::-;;19919:207;;;;;;;;;;-1:-1:-1;19919:207:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;;9108:33:1;;;9090:52;;9078:2;9063:18;19919:207:0;8946:202:1;49859:95:0;;;;;;;;;;-1:-1:-1;49935:11:0;;49859:95;;;16261:25:1;;;16249:2;16234:18;49859:95:0;16115:177:1;32416:339:0;;;;;;;;;;-1:-1:-1;32416:339:0;;;;;:::i;:::-;;:::i;32826:185::-;;;;;;;;;;-1:-1:-1;32826:185:0;;;;;:::i;:::-;;:::i;50856:614::-;;;;;;;;;;-1:-1:-1;50856:614:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;51478:474::-;;;;;;;;;;-1:-1:-1;51478:474:0;;;;;:::i;:::-;;:::i;48741:46::-;;;;;;;;;;-1:-1:-1;48741:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;49426:425;;;;;;:::i;:::-;;:::i;50358:104::-;;;;;;;;;;-1:-1:-1;50358:104:0;;;;;:::i;:::-;;:::i;29800:239::-;;;;;;;;;;-1:-1:-1;29800:239:0;;;;;:::i;:::-;;:::i;48541:21::-;;;;;;;;;;;;;:::i;29530:208::-;;;;;;;;;;-1:-1:-1;29530:208:0;;;;;:::i;:::-;;:::i;8954:103::-;;;;;;;;;;;;;:::i;8303:87::-;;;;;;;;;;-1:-1:-1;8376:6:0;;-1:-1:-1;;;;;8376:6:0;8303:87;;30275:104;;;;;;;;;;;;;:::i;31959:155::-;;;;;;;;;;-1:-1:-1;31959:155:0;;;;;:::i;:::-;;:::i;48615:26::-;;;;;;;;;;;;;;;;49012:406;;;:::i;49962:269::-;;;;;;;;;;-1:-1:-1;49962:269:0;;;;;:::i;:::-;;:::i;33082:328::-;;;;;;;;;;-1:-1:-1;33082:328:0;;;;;:::i;:::-;;:::i;48569:37::-;;;;;;;;;;;;;:::i;50473:375::-;;;;;;;;;;-1:-1:-1;50473:375:0;;;;;:::i;:::-;;:::i;32185:164::-;;;;;;;;;;-1:-1:-1;32185:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32306:25:0;;;32282:4;32306:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32185:164;9212:201;;;;;;;;;;-1:-1:-1;9212:201:0;;;;;:::i;:::-;;:::i;29161:305::-;29263:4;-1:-1:-1;;;;;;29300:40:0;;-1:-1:-1;;;29300:40:0;;:105;;-1:-1:-1;;;;;;;29357:48:0;;-1:-1:-1;;;29357:48:0;29300:105;:158;;;-1:-1:-1;;;;;;;;;;22024:40:0;;;29422:36;29280:178;29161:305;-1:-1:-1;;29161:305:0:o;30106:100::-;30160:13;30193:5;30186:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30106:100;:::o;31666:221::-;31742:7;35009:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35009:16:0;31762:73;;;;-1:-1:-1;;;31762:73:0;;13947:2:1;31762:73:0;;;13929:21:1;13986:2;13966:18;;;13959:30;14025:34;14005:18;;;13998:62;-1:-1:-1;;;14076:18:1;;;14069:42;14128:19;;31762:73:0;;;;;;;;;-1:-1:-1;31855:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31855:24:0;;31666:221::o;31189:411::-;31270:13;31286:23;31301:7;31286:14;:23::i;:::-;31270:39;;31334:5;-1:-1:-1;;;;;31328:11:0;:2;-1:-1:-1;;;;;31328:11:0;;;31320:57;;;;-1:-1:-1;;;31320:57:0;;15137:2:1;31320:57:0;;;15119:21:1;15176:2;15156:18;;;15149:30;15215:34;15195:18;;;15188:62;-1:-1:-1;;;15266:18:1;;;15259:31;15307:19;;31320:57:0;14935:397:1;31320:57:0;7107:10;-1:-1:-1;;;;;31412:21:0;;;;:62;;-1:-1:-1;31437:37:0;31454:5;7107:10;32185:164;:::i;31437:37::-;31390:168;;;;-1:-1:-1;;;31390:168:0;;12340:2:1;31390:168:0;;;12322:21:1;12379:2;12359:18;;;12352:30;12418:34;12398:18;;;12391:62;12489:26;12469:18;;;12462:54;12533:19;;31390:168:0;12138:420:1;31390:168:0;31571:21;31580:2;31584:7;31571:8;:21::i;:::-;31259:341;31189:411;;:::o;19919:207::-;-1:-1:-1;;;19919:207:0;;;;;;;:::o;32416:339::-;32611:41;7107:10;32644:7;32611:18;:41::i;:::-;32603:103;;;;-1:-1:-1;;;32603:103:0;;;;;;;:::i;:::-;32719:28;32729:4;32735:2;32739:7;32719:9;:28::i;32826:185::-;32964:39;32981:4;32987:2;32991:7;32964:39;;;;;;;;;;;;:16;:39::i;50856:614::-;50926:16;50955;50974:19;50984:8;50974:9;:19::i;:::-;50955:38;;51004:24;51046:8;51031:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51031:24:0;;51004:51;;51066:14;51091:20;51114:13;49935:11;;;49859:95;51114:13;51091:36;;51143:9;51138:300;51162:12;51158:1;:16;51138:300;;;51196:12;35009:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35009:16:0;:30;;;;51236:191;;51286:8;-1:-1:-1;;;;;51272:22:0;:10;51280:1;51272:7;:10::i;:::-;-1:-1:-1;;;;;51272:22:0;;51268:62;;;51316:1;51298:7;51306:6;51298:15;;;;;;;;:::i;:::-;;;;;;;;;;:19;51319:8;;;;:::i;:::-;;;;51268:62;51236:191;;;51369:7;51368:8;:38;;;;-1:-1:-1;51380:7:0;51388:12;51399:1;51388:8;:12;:::i;:::-;51380:21;;;;;;;;:::i;:::-;;;;;;;51405:1;51380:26;51368:38;51364:63;;;51410:14;;;;:::i;:::-;;;;51364:63;-1:-1:-1;51176:3:0;;;;:::i;:::-;;;;51138:300;;;-1:-1:-1;51455:7:0;;50856:614;-1:-1:-1;;;;;50856:614:0:o;51478:474::-;51601:6;;:26;;-1:-1:-1;;;51601:26:0;;-1:-1:-1;;;;;7580:32:1;;;51601:26:0;;;7562:51:1;51553:16:0;;51582;;51601:6;;;:16;;7535:18:1;;51601:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51582:45;;51638:24;51680:8;51665:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51665:24:0;;51638:51;;51700:14;51725:20;51748:6;;;;;;;;;-1:-1:-1;;;;;51748:6:0;-1:-1:-1;;;;;51748:17:0;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51725:42;-1:-1:-1;51795:1:0;51778:142;51803:12;51798:1;:17;51778:142;;51842:6;;:17;;-1:-1:-1;;;51842:17:0;;;;;16261:25:1;;;-1:-1:-1;;;;;51842:29:0;;;;:6;;:14;;16234:18:1;;51842:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;51842:29:0;;51839:68;;;51893:1;51875:7;51883:6;51875:15;;;;;;;;:::i;:::-;;;;;;;;;;:19;51896:8;;;;:::i;:::-;;;;51839:68;51817:3;;;;:::i;:::-;;;;51778:142;;49426:425;3277:1;3875:7;;:19;;3867:63;;;;-1:-1:-1;;;3867:63:0;;15957:2:1;3867:63:0;;;15939:21:1;15996:2;15976:18;;;15969:30;16035:33;16015:18;;;16008:61;16086:18;;3867:63:0;15755:355:1;3867:63:0;3277:1;4008:7;:18;48962:10:::1;48976:9;48962:23;48954:32;;;::::0;::::1;;49537:9:::2;49533:311;49552:8;:15;49550:1;:17;49533:311;;;49620:6;::::0;49635:11;;-1:-1:-1;;;;;49620:6:0;;::::2;::::0;:14:::2;::::0;49635:8;;49644:1;;49635:11;::::2;;;;;:::i;:::-;;;;;;;49620:27;;;;;;;;;;;;;16261:25:1::0;;16249:2;16234:18;;16115:177;49620:27:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49606:41:0::2;:10;-1:-1:-1::0;;;;;49606:41:0::2;;49598:50;;;::::0;::::2;;49671:13;:26;49685:8;49694:1;49685:11;;;;;;;;:::i;:::-;;::::0;;::::2;::::0;;;;;;;49671:26;;;::::2;::::0;;;;;;-1:-1:-1;49671:26:0;;::::2;;:35;49663:44;;;::::0;::::2;;49738:1;49724:11;;:15;;;;;;;:::i;:::-;;;;;;;;49783:4;49754:13;:26;49768:8;49777:1;49768:11;;;;;;;;:::i;:::-;;;;;;;49754:26;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;49802:30;49808:10;49820:8;49829:1;49820:11;;;;;;;;:::i;:::-;;;;;;;49802:5;:30::i;:::-;49569:3:::0;::::2;::::0;::::2;:::i;:::-;;;;49533:311;;;-1:-1:-1::0;;3233:1:0;4187:7;:22;49426:425::o;50358:104::-;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;50433:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50358:104:::0;:::o;29800:239::-;29872:7;29908:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29908:16:0;29943:19;29935:73;;;;-1:-1:-1;;;29935:73:0;;13176:2:1;29935:73:0;;;13158:21:1;13215:2;13195:18;;;13188:30;13254:34;13234:18;;;13227:62;-1:-1:-1;;;13305:18:1;;;13298:39;13354:19;;29935:73:0;12974:405:1;48541:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29530:208::-;29602:7;-1:-1:-1;;;;;29630:19:0;;29622:74;;;;-1:-1:-1;;;29622:74:0;;12765:2:1;29622:74:0;;;12747:21:1;12804:2;12784:18;;;12777:30;12843:34;12823:18;;;12816:62;-1:-1:-1;;;12894:18:1;;;12887:40;12944:19;;29622:74:0;12563:406:1;29622:74:0;-1:-1:-1;;;;;;29714:16:0;;;;;:9;:16;;;;;;;29530:208::o;8954:103::-;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;9019:30:::1;9046:1;9019:18;:30::i;:::-;8954:103::o:0;30275:104::-;30331:13;30364:7;30357:14;;;;;:::i;31959:155::-;32054:52;7107:10;32087:8;32097;32054:18;:52::i;49012:406::-;3277:1;3875:7;;:19;;3867:63;;;;-1:-1:-1;;;3867:63:0;;15957:2:1;3867:63:0;;;15939:21:1;15996:2;15976:18;;;15969:30;16035:33;16015:18;;;16008:61;16086:18;;3867:63:0;15755:355:1;3867:63:0;3277:1;4008:7;:18;48962:10:::1;48976:9;48962:23;48954:32;;;::::0;::::1;;49094:25:::2;49122:30;49141:10;49122:18;:30::i;:::-;49094:58;;49169:9;49165:246;49184:8;:15;49182:1;:17;49165:246;;;49238:13;:26;49252:8;49261:1;49252:11;;;;;;;;:::i;:::-;;::::0;;::::2;::::0;;;;;;;49238:26;;;::::2;::::0;;;;;;-1:-1:-1;49238:26:0;;::::2;;:35;49230:44;;;::::0;::::2;;49305:1;49291:11;;:15;;;;;;;:::i;:::-;;;;;;;;49350:4;49321:13;:26;49335:8;49344:1;49335:11;;;;;;;;:::i;:::-;;;;;;;49321:26;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;49369:30;49375:10;49387:8;49396:1;49387:11;;;;;;;;:::i;49369:30::-;49201:3:::0;::::2;::::0;::::2;:::i;:::-;;;;49165:246;;49962:269:::0;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;50043:9:::1;50039:185;50058:8;:15;50056:1;:17;50039:185;;;50118:1;50104:11;;:15;;;;;;;:::i;:::-;;;;;;;;50163:4;50134:13;:26;50148:8;50157:1;50148:11;;;;;;;;:::i;:::-;;;;;;;50134:26;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;50182:30;50188:10;50200:8;50209:1;50200:11;;;;;;;;:::i;50182:30::-;50075:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50039:185;;33082:328:::0;33257:41;7107:10;33290:7;33257:18;:41::i;:::-;33249:103;;;;-1:-1:-1;;;33249:103:0;;;;;;;:::i;:::-;33363:39;33377:4;33383:2;33387:7;33396:5;33363:13;:39::i;:::-;33082:328;;;;:::o;48569:37::-;;;;;;;:::i;50473:375::-;34985:4;35009:16;;;:7;:16;;;;;;50546:13;;-1:-1:-1;;;;;35009:16:0;50577:76;;;;-1:-1:-1;;;50577:76:0;;14721:2:1;50577:76:0;;;14703:21:1;14760:2;14740:18;;;14733:30;14799:34;14779:18;;;14772:62;-1:-1:-1;;;14850:18:1;;;14843:45;14905:19;;50577:76:0;14519:411:1;50577:76:0;50666:28;50697:10;:8;:10::i;:::-;50666:41;;50756:1;50731:14;50725:28;:32;:115;;;;;;;;;;;;;;;;;50784:14;50800:18;:7;:16;:18::i;:::-;50820:13;50767:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50725:115;50718:122;50473:375;-1:-1:-1;;;50473:375:0:o;9212:201::-;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9301:22:0;::::1;9293:73;;;::::0;-1:-1:-1;;;9293:73:0;;9998:2:1;9293:73:0::1;::::0;::::1;9980:21:1::0;10037:2;10017:18;;;10010:30;10076:34;10056:18;;;10049:62;-1:-1:-1;;;10127:18:1;;;10120:36;10173:19;;9293:73:0::1;9796:402:1::0;9293:73:0::1;9377:28;9396:8;9377:18;:28::i;:::-;9212:201:::0;:::o;39066:174::-;39141:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39141:29:0;-1:-1:-1;;;;;39141:29:0;;;;;;;;:24;;39195:23;39141:24;39195:14;:23::i;:::-;-1:-1:-1;;;;;39186:46:0;;;;;;;;;;;39066:174;;:::o;35214:348::-;35307:4;35009:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35009:16:0;35324:73;;;;-1:-1:-1;;;35324:73:0;;11927:2:1;35324:73:0;;;11909:21:1;11966:2;11946:18;;;11939:30;12005:34;11985:18;;;11978:62;-1:-1:-1;;;12056:18:1;;;12049:42;12108:19;;35324:73:0;11725:408:1;35324:73:0;35408:13;35424:23;35439:7;35424:14;:23::i;:::-;35408:39;;35477:5;-1:-1:-1;;;;;35466:16:0;:7;-1:-1:-1;;;;;35466:16:0;;:52;;;-1:-1:-1;;;;;;32306:25:0;;;32282:4;32306:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35486:32;35466:87;;;;35546:7;-1:-1:-1;;;;;35522:31:0;:20;35534:7;35522:11;:20::i;:::-;-1:-1:-1;;;;;35522:31:0;;35458:96;35214:348;-1:-1:-1;;;;35214:348:0:o;38323:625::-;38482:4;-1:-1:-1;;;;;38455:31:0;:23;38470:7;38455:14;:23::i;:::-;-1:-1:-1;;;;;38455:31:0;;38447:81;;;;-1:-1:-1;;;38447:81:0;;10405:2:1;38447:81:0;;;10387:21:1;10444:2;10424:18;;;10417:30;10483:34;10463:18;;;10456:62;-1:-1:-1;;;10534:18:1;;;10527:35;10579:19;;38447:81:0;10203:401:1;38447:81:0;-1:-1:-1;;;;;38547:16:0;;38539:65;;;;-1:-1:-1;;;38539:65:0;;11168:2:1;38539:65:0;;;11150:21:1;11207:2;11187:18;;;11180:30;11246:34;11226:18;;;11219:62;-1:-1:-1;;;11297:18:1;;;11290:34;11341:19;;38539:65:0;10966:400:1;38539:65:0;38721:29;38738:1;38742:7;38721:8;:29::i;:::-;-1:-1:-1;;;;;38763:15:0;;;;;;:9;:15;;;;;:20;;38782:1;;38763:15;:20;;38782:1;;38763:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38794:13:0;;;;;;:9;:13;;;;;:18;;38811:1;;38794:13;:18;;38811:1;;38794:18;:::i;:::-;;;;-1:-1:-1;;38823:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38823:21:0;-1:-1:-1;;;;;38823:21:0;;;;;;;;;38862:27;;38823:16;;38862:27;;;;;;;31259:341;31189:411;;:::o;36898:439::-;-1:-1:-1;;;;;36978:16:0;;36970:61;;;;-1:-1:-1;;;36970:61:0;;13586:2:1;36970:61:0;;;13568:21:1;;;13605:18;;;13598:30;13664:34;13644:18;;;13637:62;13716:18;;36970:61:0;13384:356:1;36970:61:0;34985:4;35009:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35009:16:0;:30;37042:58;;;;-1:-1:-1;;;37042:58:0;;10811:2:1;37042:58:0;;;10793:21:1;10850:2;10830:18;;;10823:30;10889;10869:18;;;10862:58;10937:18;;37042:58:0;10609:352:1;37042:58:0;-1:-1:-1;;;;;37171:13:0;;;;;;:9;:13;;;;;:18;;37188:1;;37171:13;:18;;37188:1;;37171:18;:::i;:::-;;;;-1:-1:-1;;37200:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37200:21:0;-1:-1:-1;;;;;37200:21:0;;;;;;;;37239:33;;37200:16;;;37239:33;;37200:16;;37239:33;50433:21:::1;50358:104:::0;:::o;9573:191::-;9666:6;;;-1:-1:-1;;;;;9683:17:0;;;-1:-1:-1;;;;;;9683:17:0;;;;;;;9716:40;;9666:6;;;9683:17;9666:6;;9716:40;;9647:16;;9716:40;9636:128;9573:191;:::o;39382:315::-;39537:8;-1:-1:-1;;;;;39528:17:0;:5;-1:-1:-1;;;;;39528:17:0;;;39520:55;;;;-1:-1:-1;;;39520:55:0;;11573:2:1;39520:55:0;;;11555:21:1;11612:2;11592:18;;;11585:30;11651:27;11631:18;;;11624:55;11696:18;;39520:55:0;11371:349:1;39520:55:0;-1:-1:-1;;;;;39586:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;39586:46:0;;;;;;;;;;39648:41;;8894::1;;;39648::0;;8867:18:1;39648:41:0;;;;;;;39382:315;;;:::o;34292:::-;34449:28;34459:4;34465:2;34469:7;34449:9;:28::i;:::-;34496:48;34519:4;34525:2;34529:7;34538:5;34496:22;:48::i;:::-;34488:111;;;;-1:-1:-1;;;34488:111:0;;;;;;;:::i;50239:108::-;50299:13;50332:7;50325:14;;;;;:::i;4589:723::-;4645:13;4866:10;4862:53;;-1:-1:-1;;4893:10:0;;;;;;;;;;;;-1:-1:-1;;;4893:10:0;;;;;4589:723::o;4862:53::-;4940:5;4925:12;4981:78;4988:9;;4981:78;;5014:8;;;;:::i;:::-;;-1:-1:-1;5037:10:0;;-1:-1:-1;5045:2:0;5037:10;;:::i;:::-;;;4981:78;;;5069:19;5101:6;5091:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5091:17:0;;5069:39;;5119:154;5126:10;;5119:154;;5153:11;5163:1;5153:11;;:::i;:::-;;-1:-1:-1;5222:10:0;5230:2;5222:5;:10;:::i;:::-;5209:24;;:2;:24;:::i;:::-;5196:39;;5179:6;5186;5179:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5179:56:0;;;;;;;;-1:-1:-1;5250:11:0;5259:2;5250:11;;:::i;:::-;;;5119:154;;40262:799;40417:4;-1:-1:-1;;;;;40438:13:0;;11299:19;:23;40434:620;;40474:72;;-1:-1:-1;;;40474:72:0;;-1:-1:-1;;;;;40474:36:0;;;;;:72;;7107:10;;40525:4;;40531:7;;40540:5;;40474:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40474:72:0;;;;;;;;-1:-1:-1;;40474:72:0;;;;;;;;;;;;:::i;:::-;;;40470:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40716:13:0;;40712:272;;40759:60;;-1:-1:-1;;;40759:60:0;;;;;;;:::i;40712:272::-;40934:6;40928:13;40919:6;40915:2;40911:15;40904:38;40470:529;-1:-1:-1;;;;;;40597:51:0;-1:-1:-1;;;40597:51:0;;-1:-1:-1;40590:58:0;;40434:620;-1:-1:-1;41038:4:0;41031:11;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:247::-;484:6;537:2;525:9;516:7;512:23;508:32;505:52;;;553:1;550;543:12;505:52;592:9;579:23;611:31;636:5;611:31;:::i;677:251::-;747:6;800:2;788:9;779:7;775:23;771:32;768:52;;;816:1;813;806:12;768:52;848:9;842:16;867:31;892:5;867:31;:::i;933:388::-;1001:6;1009;1062:2;1050:9;1041:7;1037:23;1033:32;1030:52;;;1078:1;1075;1068:12;1030:52;1117:9;1104:23;1136:31;1161:5;1136:31;:::i;:::-;1186:5;-1:-1:-1;1243:2:1;1228:18;;1215:32;1256:33;1215:32;1256:33;:::i;:::-;1308:7;1298:17;;;933:388;;;;;:::o;1326:456::-;1403:6;1411;1419;1472:2;1460:9;1451:7;1447:23;1443:32;1440:52;;;1488:1;1485;1478:12;1440:52;1527:9;1514:23;1546:31;1571:5;1546:31;:::i;:::-;1596:5;-1:-1:-1;1653:2:1;1638:18;;1625:32;1666:33;1625:32;1666:33;:::i;:::-;1326:456;;1718:7;;-1:-1:-1;;;1772:2:1;1757:18;;;;1744:32;;1326:456::o;1787:794::-;1882:6;1890;1898;1906;1959:3;1947:9;1938:7;1934:23;1930:33;1927:53;;;1976:1;1973;1966:12;1927:53;2015:9;2002:23;2034:31;2059:5;2034:31;:::i;:::-;2084:5;-1:-1:-1;2141:2:1;2126:18;;2113:32;2154:33;2113:32;2154:33;:::i;:::-;2206:7;-1:-1:-1;2260:2:1;2245:18;;2232:32;;-1:-1:-1;2315:2:1;2300:18;;2287:32;2342:18;2331:30;;2328:50;;;2374:1;2371;2364:12;2328:50;2397:22;;2450:4;2442:13;;2438:27;-1:-1:-1;2428:55:1;;2479:1;2476;2469:12;2428:55;2502:73;2567:7;2562:2;2549:16;2544:2;2540;2536:11;2502:73;:::i;:::-;2492:83;;;1787:794;;;;;;;:::o;2586:416::-;2651:6;2659;2712:2;2700:9;2691:7;2687:23;2683:32;2680:52;;;2728:1;2725;2718:12;2680:52;2767:9;2754:23;2786:31;2811:5;2786:31;:::i;:::-;2836:5;-1:-1:-1;2893:2:1;2878:18;;2865:32;2935:15;;2928:23;2916:36;;2906:64;;2966:1;2963;2956:12;3007:315;3075:6;3083;3136:2;3124:9;3115:7;3111:23;3107:32;3104:52;;;3152:1;3149;3142:12;3104:52;3191:9;3178:23;3210:31;3235:5;3210:31;:::i;:::-;3260:5;3312:2;3297:18;;;;3284:32;;-1:-1:-1;;;3007:315:1:o;3327:957::-;3411:6;3442:2;3485;3473:9;3464:7;3460:23;3456:32;3453:52;;;3501:1;3498;3491:12;3453:52;3541:9;3528:23;3570:18;3611:2;3603:6;3600:14;3597:34;;;3627:1;3624;3617:12;3597:34;3665:6;3654:9;3650:22;3640:32;;3710:7;3703:4;3699:2;3695:13;3691:27;3681:55;;3732:1;3729;3722:12;3681:55;3768:2;3755:16;3790:2;3786;3783:10;3780:36;;;3796:18;;:::i;:::-;3842:2;3839:1;3835:10;3825:20;;3865:28;3889:2;3885;3881:11;3865:28;:::i;:::-;3927:15;;;3958:12;;;;3990:11;;;4020;;;4016:20;;4013:33;-1:-1:-1;4010:53:1;;;4059:1;4056;4049:12;4010:53;4081:1;4072:10;;4091:163;4105:2;4102:1;4099:9;4091:163;;;4162:17;;4150:30;;4123:1;4116:9;;;;;4200:12;;;;4232;;4091:163;;;-1:-1:-1;4273:5:1;3327:957;-1:-1:-1;;;;;;;;3327:957:1:o;4289:245::-;4347:6;4400:2;4388:9;4379:7;4375:23;4371:32;4368:52;;;4416:1;4413;4406:12;4368:52;4455:9;4442:23;4474:30;4498:5;4474:30;:::i;4539:249::-;4608:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:52;;;4677:1;4674;4667:12;4629:52;4709:9;4703:16;4728:30;4752:5;4728:30;:::i;4793:450::-;4862:6;4915:2;4903:9;4894:7;4890:23;4886:32;4883:52;;;4931:1;4928;4921:12;4883:52;4971:9;4958:23;5004:18;4996:6;4993:30;4990:50;;;5036:1;5033;5026:12;4990:50;5059:22;;5112:4;5104:13;;5100:27;-1:-1:-1;5090:55:1;;5141:1;5138;5131:12;5090:55;5164:73;5229:7;5224:2;5211:16;5206:2;5202;5198:11;5164:73;:::i;5248:180::-;5307:6;5360:2;5348:9;5339:7;5335:23;5331:32;5328:52;;;5376:1;5373;5366:12;5328:52;-1:-1:-1;5399:23:1;;5248:180;-1:-1:-1;5248:180:1:o;5433:184::-;5503:6;5556:2;5544:9;5535:7;5531:23;5527:32;5524:52;;;5572:1;5569;5562:12;5524:52;-1:-1:-1;5595:16:1;;5433:184;-1:-1:-1;5433:184:1:o;5622:257::-;5663:3;5701:5;5695:12;5728:6;5723:3;5716:19;5744:63;5800:6;5793:4;5788:3;5784:14;5777:4;5770:5;5766:16;5744:63;:::i;:::-;5861:2;5840:15;-1:-1:-1;;5836:29:1;5827:39;;;;5868:4;5823:50;;5622:257;-1:-1:-1;;5622:257:1:o;5884:1527::-;6108:3;6146:6;6140:13;6172:4;6185:51;6229:6;6224:3;6219:2;6211:6;6207:15;6185:51;:::i;:::-;6299:13;;6258:16;;;;6321:55;6299:13;6258:16;6343:15;;;6321:55;:::i;:::-;6465:13;;6398:20;;;6438:1;;6525;6547:18;;;;6600;;;;6627:93;;6705:4;6695:8;6691:19;6679:31;;6627:93;6768:2;6758:8;6755:16;6735:18;6732:40;6729:167;;;-1:-1:-1;;;6795:33:1;;6851:4;6848:1;6841:15;6881:4;6802:3;6869:17;6729:167;6912:18;6939:110;;;;7063:1;7058:328;;;;6905:481;;6939:110;-1:-1:-1;;6974:24:1;;6960:39;;7019:20;;;;-1:-1:-1;6939:110:1;;7058:328;16650:1;16643:14;;;16687:4;16674:18;;7153:1;7167:169;7181:8;7178:1;7175:15;7167:169;;;7263:14;;7248:13;;;7241:37;7306:16;;;;7198:10;;7167:169;;;7171:3;;7367:8;7360:5;7356:20;7349:27;;6905:481;-1:-1:-1;7402:3:1;;5884:1527;-1:-1:-1;;;;;;;;;;;5884:1527:1:o;7624:488::-;-1:-1:-1;;;;;7893:15:1;;;7875:34;;7945:15;;7940:2;7925:18;;7918:43;7992:2;7977:18;;7970:34;;;8040:3;8035:2;8020:18;;8013:31;;;7818:4;;8061:45;;8086:19;;8078:6;8061:45;:::i;:::-;8053:53;7624:488;-1:-1:-1;;;;;;7624:488:1:o;8117:632::-;8288:2;8340:21;;;8410:13;;8313:18;;;8432:22;;;8259:4;;8288:2;8511:15;;;;8485:2;8470:18;;;8259:4;8554:169;8568:6;8565:1;8562:13;8554:169;;;8629:13;;8617:26;;8698:15;;;;8663:12;;;;8590:1;8583:9;8554:169;;;-1:-1:-1;8740:3:1;;8117:632;-1:-1:-1;;;;;;8117:632:1:o;9153:219::-;9302:2;9291:9;9284:21;9265:4;9322:44;9362:2;9351:9;9347:18;9339:6;9322:44;:::i;9377:414::-;9579:2;9561:21;;;9618:2;9598:18;;;9591:30;9657:34;9652:2;9637:18;;9630:62;-1:-1:-1;;;9723:2:1;9708:18;;9701:48;9781:3;9766:19;;9377:414::o;14158:356::-;14360:2;14342:21;;;14379:18;;;14372:30;14438:34;14433:2;14418:18;;14411:62;14505:2;14490:18;;14158:356::o;15337:413::-;15539:2;15521:21;;;15578:2;15558:18;;;15551:30;15617:34;15612:2;15597:18;;15590:62;-1:-1:-1;;;15683:2:1;15668:18;;15661:47;15740:3;15725:19;;15337:413::o;16297:275::-;16368:2;16362:9;16433:2;16414:13;;-1:-1:-1;;16410:27:1;16398:40;;16468:18;16453:34;;16489:22;;;16450:62;16447:88;;;16515:18;;:::i;:::-;16551:2;16544:22;16297:275;;-1:-1:-1;16297:275:1:o;16703:128::-;16743:3;16774:1;16770:6;16767:1;16764:13;16761:39;;;16780:18;;:::i;:::-;-1:-1:-1;16816:9:1;;16703:128::o;16836:120::-;16876:1;16902;16892:35;;16907:18;;:::i;:::-;-1:-1:-1;16941:9:1;;16836:120::o;16961:125::-;17001:4;17029:1;17026;17023:8;17020:34;;;17034:18;;:::i;:::-;-1:-1:-1;17071:9:1;;16961:125::o;17091:258::-;17163:1;17173:113;17187:6;17184:1;17181:13;17173:113;;;17263:11;;;17257:18;17244:11;;;17237:39;17209:2;17202:10;17173:113;;;17304:6;17301:1;17298:13;17295:48;;;-1:-1:-1;;17339:1:1;17321:16;;17314:27;17091:258::o;17354:380::-;17433:1;17429:12;;;;17476;;;17497:61;;17551:4;17543:6;17539:17;17529:27;;17497:61;17604:2;17596:6;17593:14;17573:18;17570:38;17567:161;;;17650:10;17645:3;17641:20;17638:1;17631:31;17685:4;17682:1;17675:15;17713:4;17710:1;17703:15;17567:161;;17354:380;;;:::o;17739:135::-;17778:3;-1:-1:-1;;17799:17:1;;17796:43;;;17819:18;;:::i;:::-;-1:-1:-1;17866:1:1;17855:13;;17739:135::o;17879:112::-;17911:1;17937;17927:35;;17942:18;;:::i;:::-;-1:-1:-1;17976:9:1;;17879:112::o;17996:127::-;18057:10;18052:3;18048:20;18045:1;18038:31;18088:4;18085:1;18078:15;18112:4;18109:1;18102:15;18128:127;18189:10;18184:3;18180:20;18177:1;18170:31;18220:4;18217:1;18210:15;18244:4;18241:1;18234:15;18260:127;18321:10;18316:3;18312:20;18309:1;18302:31;18352:4;18349:1;18342:15;18376:4;18373:1;18366:15;18392:127;18453:10;18448:3;18444:20;18441:1;18434:31;18484:4;18481:1;18474:15;18508:4;18505:1;18498:15;18524:131;-1:-1:-1;;;;;18599:31:1;;18589:42;;18579:70;;18645:1;18642;18635:12;18660:131;-1:-1:-1;;;;;;18734:32:1;;18724:43;;18714:71;;18781:1;18778;18771:12

Swarm Source

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