ETH Price: $2,761.92 (+4.65%)

Token

Cool Cats Expansion (COOLE)
 

Overview

Max Total Supply

806 COOLE

Holders

221

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 COOLE
0xE8228a7D86AE5B94d656eCec560C7B560AF7BF08
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:
CoolCatsExpansion

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-02
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/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/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 v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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/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 v4.4.1 (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 overriden 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 || getApproved(tokenId) == spender || isApprovedForAll(owner, 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);
    }

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

    /**
     * @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 of token that is not own");
        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);
    }

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

// File: contracts/OptimisedCats.sol



pragma solidity >=0.8.9 <0.9.0;





contract CoolCatsExpansion is ERC721, Ownable, ReentrancyGuard {

  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private SUPPLY;

  string BASE_URI;
  string BASE_URI_SUFFIX = ".json";
  string HIDDEN_METADATA_URI;

  uint256 public MAX_SUPPLY = 9999;
  uint256 public COST = 0.01 ether;
  uint256 public MAX_MINT_AMOUNT_PER_TX = 20;
  uint256 public FREE_MINTS_UNTIL = 778;
  uint256 public MAX_FREE_MINTS_PER_WALLET = 5;
  bool public PAUSED = true;
  bool public REVEALED = false;

  constructor(
    string memory hiddenMetadataUri
  ) ERC721("Cool Cats Expansion", "COOLE") {
    setHiddenMetadataUri(hiddenMetadataUri);    
  }

  function totalSupply() public view returns (uint256) {
    return SUPPLY.current();
  }

  modifier mintCompliance(uint256 mintAmount) {
    require(mintAmount > 0 && mintAmount <= MAX_MINT_AMOUNT_PER_TX, "Invalid mint amount!");
    require(SUPPLY.current() + mintAmount <= MAX_SUPPLY, "Max supply exceeded!");
    _;
  }

  function mint(uint256 mintAmount) public payable mintCompliance(mintAmount) {
    require(!PAUSED, "The contract is paused!");

    // First set of NFTs are free to mint
    if (SUPPLY.current() < FREE_MINTS_UNTIL && balanceOf(msg.sender) < MAX_FREE_MINTS_PER_WALLET) {
      uint256 freeMintsLeft = MAX_FREE_MINTS_PER_WALLET - balanceOf(msg.sender); 
      // If the amount requested by sender would take them above their limit, then cut it off at the limit
      if (mintAmount > freeMintsLeft) {
          mintAmount = freeMintsLeft;
      }
    }
    else {
      require(msg.value >= COST * mintAmount, "Incorrect amount paid!");
    }

    _mintLoop(msg.sender, mintAmount);
  }
  
  function mintForAddress(uint256 mintAmount, address receiver) public mintCompliance(mintAmount) onlyOwner {
    _mintLoop(receiver, mintAmount);
  }

  // For later giveaways etc
  function reserveTokens(uint256 amount) public onlyOwner {
    require(SUPPLY.current() + amount <= MAX_SUPPLY);
    _mintLoop(msg.sender, amount);
  }

  function _mintLoop(address receiver, uint256 mintAmount) internal {
    for (uint256 i = 0; i < mintAmount; i++) {
      SUPPLY.increment();
      _safeMint(receiver, SUPPLY.current());
    }
  }

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

    if (REVEALED == false) {
      return HIDDEN_METADATA_URI;
    }

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

  function walletOfOwner(address owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) {
      address currentTokenOwner = ownerOf(currentTokenId);
      if (currentTokenOwner == owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;
        ownedTokenIndex++;
      }
      currentTokenId++;
    }

    return ownedTokenIds;
  }

  // Only owner
  function setRevealed(bool state) public onlyOwner {
    REVEALED = state;
  }

  function setCost(uint256 cost) public onlyOwner {
    COST = cost;
  }

  function setMaxMintAmountPerTx(uint256 maxMintAmountPerTx) public onlyOwner {
    MAX_MINT_AMOUNT_PER_TX = maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory uri) public onlyOwner {
    HIDDEN_METADATA_URI = uri;
  }

  function setBaseUri(string memory uri) public onlyOwner {
    BASE_URI = uri;
  }

  function setUriSuffix(string memory uriSuffix) public onlyOwner {
    BASE_URI_SUFFIX = uriSuffix;
  }

  function setPaused(bool state) public onlyOwner {
    PAUSED = state;
  }

  function setFreeMintsUntil(uint256 amount) public onlyOwner {
    FREE_MINTS_UNTIL = amount;
  }

  function setMaxFreeMintsPerWallet(uint256 amount) public onlyOwner {
    MAX_FREE_MINTS_PER_WALLET = amount;
  }

  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"hiddenMetadataUri","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":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINTS_UNTIL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_MINTS_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMOUNT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEALED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserveTokens","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":"uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeMintsUntil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreeMintsPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600a919062000202565b5061270f600c55662386f26fc10000600d556014600e5561030a600f5560056010556011805461ffff191660011790553480156200006557600080fd5b50604051620027bb380380620027bb8339810160408190526200008891620002be565b604080518082018252601381527f436f6f6c204361747320457870616e73696f6e00000000000000000000000000602080830191825283518085019094526005845264434f4f4c4560d81b908401528151919291620000ea9160009162000202565b5080516200010090600190602084019062000202565b5050506200011d620001176200013460201b60201c565b62000138565b60016007556200012d816200018a565b50620003d7565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001e95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001fe90600b90602084019062000202565b5050565b82805462000210906200039a565b90600052602060002090601f0160209004810192826200023457600085556200027f565b82601f106200024f57805160ff19168380011785556200027f565b828001600101855582156200027f579182015b828111156200027f57825182559160200191906001019062000262565b506200028d92915062000291565b5090565b5b808211156200028d576000815560010162000292565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215620002d257600080fd5b82516001600160401b0380821115620002ea57600080fd5b818501915085601f830112620002ff57600080fd5b815181811115620003145762000314620002a8565b604051601f8201601f19908116603f011681019083821181831017156200033f576200033f620002a8565b8160405282815288868487010111156200035857600080fd5b600093505b828410156200037c57848401860151818501870152928501926200035d565b828411156200038e5760008684830101525b98975050505050505050565b600181811c90821680620003af57607f821691505b60208210811415620003d157634e487b7160e01b600052602260045260246000fd5b50919050565b6123d480620003e76000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063b071401b116100ab578063e0a808531161006f578063e0a808531461062c578063e985e9c51461064c578063efbd73f414610695578063f079a6ec146106b5578063f2fde38b146106cb57600080fd5b8063b071401b14610596578063b88d4fde146105b6578063bf8fbbd2146105d6578063c87b56dd146105ec578063d031370b1461060c57600080fd5b8063a0712d68116100f2578063a0712d681461050a578063a0bcfc7f1461051d578063a22cb4651461053d578063a76a95871461055d578063a9aad58c1461057c57600080fd5b806370a08231146104a2578063715018a6146104c25780638da5cb5b146104d757806395d89b41146104f557600080fd5b8063293ae5cf116101b1578063438b630011610175578063438b6300146103f557806344a0d68a146104225780634fdd43cb146104425780636352211e146104625780636dd66cbe1461048257600080fd5b8063293ae5cf146103745780632e91ce4b1461038a57806332cb6b0c146103aa5780633ccfd60b146103c057806342842e0e146103d557600080fd5b806309ef6527116101f857806309ef6527146102db57806316ba10e0146102ff57806316c38b3c1461031f57806318160ddd1461033f57806323b872dd1461035457600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611d1c565b6106eb565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461073d565b6040516102569190611d91565b34801561028d57600080fd5b506102a161029c366004611da4565b6107cf565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611dd9565b610869565b005b3480156102e757600080fd5b506102f1600e5481565b604051908152602001610256565b34801561030b57600080fd5b506102d961031a366004611e8f565b61097f565b34801561032b57600080fd5b506102d961033a366004611ee8565b6109c0565b34801561034b57600080fd5b506102f16109fd565b34801561036057600080fd5b506102d961036f366004611f03565b610a0d565b34801561038057600080fd5b506102f160105481565b34801561039657600080fd5b506102d96103a5366004611da4565b610a3e565b3480156103b657600080fd5b506102f1600c5481565b3480156103cc57600080fd5b506102d9610a6d565b3480156103e157600080fd5b506102d96103f0366004611f03565b610b68565b34801561040157600080fd5b50610415610410366004611f3f565b610b83565b6040516102569190611f5a565b34801561042e57600080fd5b506102d961043d366004611da4565b610c64565b34801561044e57600080fd5b506102d961045d366004611e8f565b610c93565b34801561046e57600080fd5b506102a161047d366004611da4565b610cd0565b34801561048e57600080fd5b506102d961049d366004611da4565b610d47565b3480156104ae57600080fd5b506102f16104bd366004611f3f565b610d76565b3480156104ce57600080fd5b506102d9610dfd565b3480156104e357600080fd5b506006546001600160a01b03166102a1565b34801561050157600080fd5b50610274610e33565b6102d9610518366004611da4565b610e42565b34801561052957600080fd5b506102d9610538366004611e8f565b610ff4565b34801561054957600080fd5b506102d9610558366004611f9e565b611031565b34801561056957600080fd5b5060115461024a90610100900460ff1681565b34801561058857600080fd5b5060115461024a9060ff1681565b3480156105a257600080fd5b506102d96105b1366004611da4565b61103c565b3480156105c257600080fd5b506102d96105d1366004611fd1565b61106b565b3480156105e257600080fd5b506102f1600d5481565b3480156105f857600080fd5b50610274610607366004611da4565b6110a3565b34801561061857600080fd5b506102d9610627366004611da4565b611222565b34801561063857600080fd5b506102d9610647366004611ee8565b61127b565b34801561065857600080fd5b5061024a61066736600461204d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106a157600080fd5b506102d96106b0366004612077565b6112bf565b3480156106c157600080fd5b506102f1600f5481565b3480156106d757600080fd5b506102d96106e6366004611f3f565b6113a5565b60006001600160e01b031982166380ac58cd60e01b148061071c57506001600160e01b03198216635b5e139f60e01b145b8061073757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461074c9061209a565b80601f01602080910402602001604051908101604052809291908181526020018280546107789061209a565b80156107c55780601f1061079a576101008083540402835291602001916107c5565b820191906000526020600020905b8154815290600101906020018083116107a857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661084d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061087482610cd0565b9050806001600160a01b0316836001600160a01b031614156108e25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610844565b336001600160a01b03821614806108fe57506108fe8133610667565b6109705760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610844565b61097a838361143d565b505050565b6006546001600160a01b031633146109a95760405162461bcd60e51b8152600401610844906120d5565b80516109bc90600a906020840190611c6d565b5050565b6006546001600160a01b031633146109ea5760405162461bcd60e51b8152600401610844906120d5565b6011805460ff1916911515919091179055565b6000610a0860085490565b905090565b610a1733826114ab565b610a335760405162461bcd60e51b81526004016108449061210a565b61097a8383836115a2565b6006546001600160a01b03163314610a685760405162461bcd60e51b8152600401610844906120d5565b600f55565b6006546001600160a01b03163314610a975760405162461bcd60e51b8152600401610844906120d5565b60026007541415610aea5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610844565b60026007556000610b036006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b4d576040519150601f19603f3d011682016040523d82523d6000602084013e610b52565b606091505b5050905080610b6057600080fd5b506001600755565b61097a8383836040518060200160405280600081525061106b565b60606000610b9083610d76565b905060008167ffffffffffffffff811115610bad57610bad611e03565b604051908082528060200260200182016040528015610bd6578160200160208202803683370190505b509050600160005b8381108015610bef5750600c548211155b15610c5a576000610bff83610cd0565b9050866001600160a01b0316816001600160a01b03161415610c475782848381518110610c2e57610c2e61215b565b602090810291909101015281610c4381612187565b9250505b82610c5181612187565b93505050610bde565b5090949350505050565b6006546001600160a01b03163314610c8e5760405162461bcd60e51b8152600401610844906120d5565b600d55565b6006546001600160a01b03163314610cbd5760405162461bcd60e51b8152600401610844906120d5565b80516109bc90600b906020840190611c6d565b6000818152600260205260408120546001600160a01b0316806107375760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610844565b6006546001600160a01b03163314610d715760405162461bcd60e51b8152600401610844906120d5565b601055565b60006001600160a01b038216610de15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610844565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e275760405162461bcd60e51b8152600401610844906120d5565b610e316000611742565b565b60606001805461074c9061209a565b80600081118015610e555750600e548111155b610e985760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610844565b600c5481610ea560085490565b610eaf91906121a2565b1115610ef45760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610844565b60115460ff1615610f475760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610844565b600f54600854108015610f635750601054610f6133610d76565b105b15610f94576000610f7333610d76565b601054610f8091906121ba565b905080831115610f8e578092505b50610fea565b81600d54610fa291906121d1565b341015610fea5760405162461bcd60e51b8152602060048201526016602482015275496e636f727265637420616d6f756e7420706169642160501b6044820152606401610844565b6109bc3383611794565b6006546001600160a01b0316331461101e5760405162461bcd60e51b8152600401610844906120d5565b80516109bc906009906020840190611c6d565b6109bc3383836117d1565b6006546001600160a01b031633146110665760405162461bcd60e51b8152600401610844906120d5565b600e55565b61107533836114ab565b6110915760405162461bcd60e51b81526004016108449061210a565b61109d848484846118a0565b50505050565b6000818152600260205260409020546060906001600160a01b03166111225760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610844565b601154610100900460ff166111c357600b805461113e9061209a565b80601f016020809104026020016040519081016040528092919081815260200182805461116a9061209a565b80156111b75780601f1061118c576101008083540402835291602001916111b7565b820191906000526020600020905b81548152906001019060200180831161119a57829003601f168201915b50505050509050919050565b60006111cd6118d3565b905060008151116111ed576040518060200160405280600081525061121b565b806111f7846118e2565b600a60405160200161120b939291906121f0565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461124c5760405162461bcd60e51b8152600401610844906120d5565b600c548161125960085490565b61126391906121a2565b111561126e57600080fd5b6112783382611794565b50565b6006546001600160a01b031633146112a55760405162461bcd60e51b8152600401610844906120d5565b601180549115156101000261ff0019909216919091179055565b816000811180156112d25750600e548111155b6113155760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610844565b600c548161132260085490565b61132c91906121a2565b11156113715760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610844565b6006546001600160a01b0316331461139b5760405162461bcd60e51b8152600401610844906120d5565b61097a8284611794565b6006546001600160a01b031633146113cf5760405162461bcd60e51b8152600401610844906120d5565b6001600160a01b0381166114345760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610844565b61127881611742565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061147282610cd0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610844565b600061152f83610cd0565b9050806001600160a01b0316846001600160a01b0316148061156a5750836001600160a01b031661155f846107cf565b6001600160a01b0316145b8061159a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115b582610cd0565b6001600160a01b03161461161d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610844565b6001600160a01b03821661167f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610844565b61168a60008261143d565b6001600160a01b03831660009081526003602052604081208054600192906116b39084906121ba565b90915550506001600160a01b03821660009081526003602052604081208054600192906116e19084906121a2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b8181101561097a576117ad600880546001019055565b6117bf836117ba60085490565b6119e0565b806117c981612187565b915050611797565b816001600160a01b0316836001600160a01b031614156118335760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610844565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118ab8484846115a2565b6118b7848484846119fa565b61109d5760405162461bcd60e51b8152600401610844906122b4565b60606009805461074c9061209a565b6060816119065750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611930578061191a81612187565b91506119299050600a8361231c565b915061190a565b60008167ffffffffffffffff81111561194b5761194b611e03565b6040519080825280601f01601f191660200182016040528015611975576020820181803683370190505b5090505b841561159a5761198a6001836121ba565b9150611997600a86612330565b6119a29060306121a2565b60f81b8183815181106119b7576119b761215b565b60200101906001600160f81b031916908160001a9053506119d9600a8661231c565b9450611979565b6109bc828260405180602001604052806000815250611af8565b60006001600160a01b0384163b15611aed57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a3e903390899088908890600401612344565b6020604051808303816000875af1925050508015611a79575060408051601f3d908101601f19168201909252611a7691810190612381565b60015b611ad3573d808015611aa7576040519150601f19603f3d011682016040523d82523d6000602084013e611aac565b606091505b508051611acb5760405162461bcd60e51b8152600401610844906122b4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061159a565b506001949350505050565b611b028383611b2b565b611b0f60008484846119fa565b61097a5760405162461bcd60e51b8152600401610844906122b4565b6001600160a01b038216611b815760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610844565b6000818152600260205260409020546001600160a01b031615611be65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610844565b6001600160a01b0382166000908152600360205260408120805460019290611c0f9084906121a2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611c799061209a565b90600052602060002090601f016020900481019282611c9b5760008555611ce1565b82601f10611cb457805160ff1916838001178555611ce1565b82800160010185558215611ce1579182015b82811115611ce1578251825591602001919060010190611cc6565b50611ced929150611cf1565b5090565b5b80821115611ced5760008155600101611cf2565b6001600160e01b03198116811461127857600080fd5b600060208284031215611d2e57600080fd5b813561121b81611d06565b60005b83811015611d54578181015183820152602001611d3c565b8381111561109d5750506000910152565b60008151808452611d7d816020860160208601611d39565b601f01601f19169290920160200192915050565b60208152600061121b6020830184611d65565b600060208284031215611db657600080fd5b5035919050565b80356001600160a01b0381168114611dd457600080fd5b919050565b60008060408385031215611dec57600080fd5b611df583611dbd565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e3457611e34611e03565b604051601f8501601f19908116603f01168101908282118183101715611e5c57611e5c611e03565b81604052809350858152868686011115611e7557600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ea157600080fd5b813567ffffffffffffffff811115611eb857600080fd5b8201601f81018413611ec957600080fd5b61159a84823560208401611e19565b80358015158114611dd457600080fd5b600060208284031215611efa57600080fd5b61121b82611ed8565b600080600060608486031215611f1857600080fd5b611f2184611dbd565b9250611f2f60208501611dbd565b9150604084013590509250925092565b600060208284031215611f5157600080fd5b61121b82611dbd565b6020808252825182820181905260009190848201906040850190845b81811015611f9257835183529284019291840191600101611f76565b50909695505050505050565b60008060408385031215611fb157600080fd5b611fba83611dbd565b9150611fc860208401611ed8565b90509250929050565b60008060008060808587031215611fe757600080fd5b611ff085611dbd565b9350611ffe60208601611dbd565b925060408501359150606085013567ffffffffffffffff81111561202157600080fd5b8501601f8101871361203257600080fd5b61204187823560208401611e19565b91505092959194509250565b6000806040838503121561206057600080fd5b61206983611dbd565b9150611fc860208401611dbd565b6000806040838503121561208a57600080fd5b82359150611fc860208401611dbd565b600181811c908216806120ae57607f821691505b602082108114156120cf57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561219b5761219b612171565b5060010190565b600082198211156121b5576121b5612171565b500190565b6000828210156121cc576121cc612171565b500390565b60008160001904831182151516156121eb576121eb612171565b500290565b6000845160206122038285838a01611d39565b8551918401916122168184848a01611d39565b8554920191600090600181811c908083168061223357607f831692505b85831081141561225157634e487b7160e01b85526022600452602485fd5b8080156122655760018114612276576122a3565b60ff198516885283880195506122a3565b60008b81526020902060005b8581101561229b5781548a820152908401908801612282565b505083880195505b50939b9a5050505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261232b5761232b612306565b500490565b60008261233f5761233f612306565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061237790830184611d65565b9695505050505050565b60006020828403121561239357600080fd5b815161121b81611d0656fea26469706673582212207bd013e46c19f80cfc178f96f607d8cbfc63931a003a49b492cad31acd9eb74364736f6c634300080c003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d574634656972547768473746313652536b334c556731357563345771626336666131676f4e323666447a78510000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c806370a0823111610123578063b071401b116100ab578063e0a808531161006f578063e0a808531461062c578063e985e9c51461064c578063efbd73f414610695578063f079a6ec146106b5578063f2fde38b146106cb57600080fd5b8063b071401b14610596578063b88d4fde146105b6578063bf8fbbd2146105d6578063c87b56dd146105ec578063d031370b1461060c57600080fd5b8063a0712d68116100f2578063a0712d681461050a578063a0bcfc7f1461051d578063a22cb4651461053d578063a76a95871461055d578063a9aad58c1461057c57600080fd5b806370a08231146104a2578063715018a6146104c25780638da5cb5b146104d757806395d89b41146104f557600080fd5b8063293ae5cf116101b1578063438b630011610175578063438b6300146103f557806344a0d68a146104225780634fdd43cb146104425780636352211e146104625780636dd66cbe1461048257600080fd5b8063293ae5cf146103745780632e91ce4b1461038a57806332cb6b0c146103aa5780633ccfd60b146103c057806342842e0e146103d557600080fd5b806309ef6527116101f857806309ef6527146102db57806316ba10e0146102ff57806316c38b3c1461031f57806318160ddd1461033f57806323b872dd1461035457600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611d1c565b6106eb565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461073d565b6040516102569190611d91565b34801561028d57600080fd5b506102a161029c366004611da4565b6107cf565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611dd9565b610869565b005b3480156102e757600080fd5b506102f1600e5481565b604051908152602001610256565b34801561030b57600080fd5b506102d961031a366004611e8f565b61097f565b34801561032b57600080fd5b506102d961033a366004611ee8565b6109c0565b34801561034b57600080fd5b506102f16109fd565b34801561036057600080fd5b506102d961036f366004611f03565b610a0d565b34801561038057600080fd5b506102f160105481565b34801561039657600080fd5b506102d96103a5366004611da4565b610a3e565b3480156103b657600080fd5b506102f1600c5481565b3480156103cc57600080fd5b506102d9610a6d565b3480156103e157600080fd5b506102d96103f0366004611f03565b610b68565b34801561040157600080fd5b50610415610410366004611f3f565b610b83565b6040516102569190611f5a565b34801561042e57600080fd5b506102d961043d366004611da4565b610c64565b34801561044e57600080fd5b506102d961045d366004611e8f565b610c93565b34801561046e57600080fd5b506102a161047d366004611da4565b610cd0565b34801561048e57600080fd5b506102d961049d366004611da4565b610d47565b3480156104ae57600080fd5b506102f16104bd366004611f3f565b610d76565b3480156104ce57600080fd5b506102d9610dfd565b3480156104e357600080fd5b506006546001600160a01b03166102a1565b34801561050157600080fd5b50610274610e33565b6102d9610518366004611da4565b610e42565b34801561052957600080fd5b506102d9610538366004611e8f565b610ff4565b34801561054957600080fd5b506102d9610558366004611f9e565b611031565b34801561056957600080fd5b5060115461024a90610100900460ff1681565b34801561058857600080fd5b5060115461024a9060ff1681565b3480156105a257600080fd5b506102d96105b1366004611da4565b61103c565b3480156105c257600080fd5b506102d96105d1366004611fd1565b61106b565b3480156105e257600080fd5b506102f1600d5481565b3480156105f857600080fd5b50610274610607366004611da4565b6110a3565b34801561061857600080fd5b506102d9610627366004611da4565b611222565b34801561063857600080fd5b506102d9610647366004611ee8565b61127b565b34801561065857600080fd5b5061024a61066736600461204d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106a157600080fd5b506102d96106b0366004612077565b6112bf565b3480156106c157600080fd5b506102f1600f5481565b3480156106d757600080fd5b506102d96106e6366004611f3f565b6113a5565b60006001600160e01b031982166380ac58cd60e01b148061071c57506001600160e01b03198216635b5e139f60e01b145b8061073757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461074c9061209a565b80601f01602080910402602001604051908101604052809291908181526020018280546107789061209a565b80156107c55780601f1061079a576101008083540402835291602001916107c5565b820191906000526020600020905b8154815290600101906020018083116107a857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661084d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061087482610cd0565b9050806001600160a01b0316836001600160a01b031614156108e25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610844565b336001600160a01b03821614806108fe57506108fe8133610667565b6109705760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610844565b61097a838361143d565b505050565b6006546001600160a01b031633146109a95760405162461bcd60e51b8152600401610844906120d5565b80516109bc90600a906020840190611c6d565b5050565b6006546001600160a01b031633146109ea5760405162461bcd60e51b8152600401610844906120d5565b6011805460ff1916911515919091179055565b6000610a0860085490565b905090565b610a1733826114ab565b610a335760405162461bcd60e51b81526004016108449061210a565b61097a8383836115a2565b6006546001600160a01b03163314610a685760405162461bcd60e51b8152600401610844906120d5565b600f55565b6006546001600160a01b03163314610a975760405162461bcd60e51b8152600401610844906120d5565b60026007541415610aea5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610844565b60026007556000610b036006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b4d576040519150601f19603f3d011682016040523d82523d6000602084013e610b52565b606091505b5050905080610b6057600080fd5b506001600755565b61097a8383836040518060200160405280600081525061106b565b60606000610b9083610d76565b905060008167ffffffffffffffff811115610bad57610bad611e03565b604051908082528060200260200182016040528015610bd6578160200160208202803683370190505b509050600160005b8381108015610bef5750600c548211155b15610c5a576000610bff83610cd0565b9050866001600160a01b0316816001600160a01b03161415610c475782848381518110610c2e57610c2e61215b565b602090810291909101015281610c4381612187565b9250505b82610c5181612187565b93505050610bde565b5090949350505050565b6006546001600160a01b03163314610c8e5760405162461bcd60e51b8152600401610844906120d5565b600d55565b6006546001600160a01b03163314610cbd5760405162461bcd60e51b8152600401610844906120d5565b80516109bc90600b906020840190611c6d565b6000818152600260205260408120546001600160a01b0316806107375760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610844565b6006546001600160a01b03163314610d715760405162461bcd60e51b8152600401610844906120d5565b601055565b60006001600160a01b038216610de15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610844565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e275760405162461bcd60e51b8152600401610844906120d5565b610e316000611742565b565b60606001805461074c9061209a565b80600081118015610e555750600e548111155b610e985760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610844565b600c5481610ea560085490565b610eaf91906121a2565b1115610ef45760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610844565b60115460ff1615610f475760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610844565b600f54600854108015610f635750601054610f6133610d76565b105b15610f94576000610f7333610d76565b601054610f8091906121ba565b905080831115610f8e578092505b50610fea565b81600d54610fa291906121d1565b341015610fea5760405162461bcd60e51b8152602060048201526016602482015275496e636f727265637420616d6f756e7420706169642160501b6044820152606401610844565b6109bc3383611794565b6006546001600160a01b0316331461101e5760405162461bcd60e51b8152600401610844906120d5565b80516109bc906009906020840190611c6d565b6109bc3383836117d1565b6006546001600160a01b031633146110665760405162461bcd60e51b8152600401610844906120d5565b600e55565b61107533836114ab565b6110915760405162461bcd60e51b81526004016108449061210a565b61109d848484846118a0565b50505050565b6000818152600260205260409020546060906001600160a01b03166111225760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610844565b601154610100900460ff166111c357600b805461113e9061209a565b80601f016020809104026020016040519081016040528092919081815260200182805461116a9061209a565b80156111b75780601f1061118c576101008083540402835291602001916111b7565b820191906000526020600020905b81548152906001019060200180831161119a57829003601f168201915b50505050509050919050565b60006111cd6118d3565b905060008151116111ed576040518060200160405280600081525061121b565b806111f7846118e2565b600a60405160200161120b939291906121f0565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461124c5760405162461bcd60e51b8152600401610844906120d5565b600c548161125960085490565b61126391906121a2565b111561126e57600080fd5b6112783382611794565b50565b6006546001600160a01b031633146112a55760405162461bcd60e51b8152600401610844906120d5565b601180549115156101000261ff0019909216919091179055565b816000811180156112d25750600e548111155b6113155760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610844565b600c548161132260085490565b61132c91906121a2565b11156113715760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610844565b6006546001600160a01b0316331461139b5760405162461bcd60e51b8152600401610844906120d5565b61097a8284611794565b6006546001600160a01b031633146113cf5760405162461bcd60e51b8152600401610844906120d5565b6001600160a01b0381166114345760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610844565b61127881611742565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061147282610cd0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610844565b600061152f83610cd0565b9050806001600160a01b0316846001600160a01b0316148061156a5750836001600160a01b031661155f846107cf565b6001600160a01b0316145b8061159a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115b582610cd0565b6001600160a01b03161461161d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610844565b6001600160a01b03821661167f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610844565b61168a60008261143d565b6001600160a01b03831660009081526003602052604081208054600192906116b39084906121ba565b90915550506001600160a01b03821660009081526003602052604081208054600192906116e19084906121a2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b8181101561097a576117ad600880546001019055565b6117bf836117ba60085490565b6119e0565b806117c981612187565b915050611797565b816001600160a01b0316836001600160a01b031614156118335760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610844565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118ab8484846115a2565b6118b7848484846119fa565b61109d5760405162461bcd60e51b8152600401610844906122b4565b60606009805461074c9061209a565b6060816119065750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611930578061191a81612187565b91506119299050600a8361231c565b915061190a565b60008167ffffffffffffffff81111561194b5761194b611e03565b6040519080825280601f01601f191660200182016040528015611975576020820181803683370190505b5090505b841561159a5761198a6001836121ba565b9150611997600a86612330565b6119a29060306121a2565b60f81b8183815181106119b7576119b761215b565b60200101906001600160f81b031916908160001a9053506119d9600a8661231c565b9450611979565b6109bc828260405180602001604052806000815250611af8565b60006001600160a01b0384163b15611aed57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a3e903390899088908890600401612344565b6020604051808303816000875af1925050508015611a79575060408051601f3d908101601f19168201909252611a7691810190612381565b60015b611ad3573d808015611aa7576040519150601f19603f3d011682016040523d82523d6000602084013e611aac565b606091505b508051611acb5760405162461bcd60e51b8152600401610844906122b4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061159a565b506001949350505050565b611b028383611b2b565b611b0f60008484846119fa565b61097a5760405162461bcd60e51b8152600401610844906122b4565b6001600160a01b038216611b815760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610844565b6000818152600260205260409020546001600160a01b031615611be65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610844565b6001600160a01b0382166000908152600360205260408120805460019290611c0f9084906121a2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611c799061209a565b90600052602060002090601f016020900481019282611c9b5760008555611ce1565b82601f10611cb457805160ff1916838001178555611ce1565b82800160010185558215611ce1579182015b82811115611ce1578251825591602001919060010190611cc6565b50611ced929150611cf1565b5090565b5b80821115611ced5760008155600101611cf2565b6001600160e01b03198116811461127857600080fd5b600060208284031215611d2e57600080fd5b813561121b81611d06565b60005b83811015611d54578181015183820152602001611d3c565b8381111561109d5750506000910152565b60008151808452611d7d816020860160208601611d39565b601f01601f19169290920160200192915050565b60208152600061121b6020830184611d65565b600060208284031215611db657600080fd5b5035919050565b80356001600160a01b0381168114611dd457600080fd5b919050565b60008060408385031215611dec57600080fd5b611df583611dbd565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e3457611e34611e03565b604051601f8501601f19908116603f01168101908282118183101715611e5c57611e5c611e03565b81604052809350858152868686011115611e7557600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ea157600080fd5b813567ffffffffffffffff811115611eb857600080fd5b8201601f81018413611ec957600080fd5b61159a84823560208401611e19565b80358015158114611dd457600080fd5b600060208284031215611efa57600080fd5b61121b82611ed8565b600080600060608486031215611f1857600080fd5b611f2184611dbd565b9250611f2f60208501611dbd565b9150604084013590509250925092565b600060208284031215611f5157600080fd5b61121b82611dbd565b6020808252825182820181905260009190848201906040850190845b81811015611f9257835183529284019291840191600101611f76565b50909695505050505050565b60008060408385031215611fb157600080fd5b611fba83611dbd565b9150611fc860208401611ed8565b90509250929050565b60008060008060808587031215611fe757600080fd5b611ff085611dbd565b9350611ffe60208601611dbd565b925060408501359150606085013567ffffffffffffffff81111561202157600080fd5b8501601f8101871361203257600080fd5b61204187823560208401611e19565b91505092959194509250565b6000806040838503121561206057600080fd5b61206983611dbd565b9150611fc860208401611dbd565b6000806040838503121561208a57600080fd5b82359150611fc860208401611dbd565b600181811c908216806120ae57607f821691505b602082108114156120cf57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561219b5761219b612171565b5060010190565b600082198211156121b5576121b5612171565b500190565b6000828210156121cc576121cc612171565b500390565b60008160001904831182151516156121eb576121eb612171565b500290565b6000845160206122038285838a01611d39565b8551918401916122168184848a01611d39565b8554920191600090600181811c908083168061223357607f831692505b85831081141561225157634e487b7160e01b85526022600452602485fd5b8080156122655760018114612276576122a3565b60ff198516885283880195506122a3565b60008b81526020902060005b8581101561229b5781548a820152908401908801612282565b505083880195505b50939b9a5050505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261232b5761232b612306565b500490565b60008261233f5761233f612306565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061237790830184611d65565b9695505050505050565b60006020828403121561239357600080fd5b815161121b81611d0656fea26469706673582212207bd013e46c19f80cfc178f96f607d8cbfc63931a003a49b492cad31acd9eb74364736f6c634300080c0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d574634656972547768473746313652536b334c556731357563345771626336666131676f4e323666447a78510000000000000000000000

-----Decoded View---------------
Arg [0] : hiddenMetadataUri (string): ipfs://QmWF4eirTwhG7F16RSk3LUg15uc4Wqbc6fa1goN26fDzxQ

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [2] : 697066733a2f2f516d574634656972547768473746313652536b334c55673135
Arg [3] : 7563345771626336666131676f4e323666447a78510000000000000000000000


Deployed Bytecode Sourcemap

40524:4630:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27997:305;;;;;;;;;;-1:-1:-1;27997:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27997:305:0;;;;;;;;28942:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30501:221::-;;;;;;;;;;-1:-1:-1;30501:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;30501:221:0;1528:203:1;30024:411:0;;;;;;;;;;-1:-1:-1;30024:411:0;;;;;:::i;:::-;;:::i;:::-;;40868:42;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;40868:42:0;2173:177:1;44477:104:0;;;;;;;;;;-1:-1:-1;44477:104:0;;;;;:::i;:::-;;:::i;44587:75::-;;;;;;;;;;-1:-1:-1;44587:75:0;;;;;:::i;:::-;;:::i;41227:89::-;;;;;;;;;;;;;:::i;31251:339::-;;;;;;;;;;-1:-1:-1;31251:339:0;;;;;:::i;:::-;;:::i;40957:44::-;;;;;;;;;;;;;;;;44668:98;;;;;;;;;;-1:-1:-1;44668:98:0;;;;;:::i;:::-;;:::i;40794:32::-;;;;;;;;;;;;;;;;44892:150;;;;;;;;;;;;;:::i;31661:185::-;;;;;;;;;;-1:-1:-1;31661:185:0;;;;;:::i;:::-;;:::i;43327:627::-;;;;;;;;;;-1:-1:-1;43327:627:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;44062:72::-;;;;;;;;;;-1:-1:-1;44062:72:0;;;;;:::i;:::-;;:::i;44278:104::-;;;;;;;;;;-1:-1:-1;44278:104:0;;;;;:::i;:::-;;:::i;28636:239::-;;;;;;;;;;-1:-1:-1;28636:239:0;;;;;:::i;:::-;;:::i;44772:114::-;;;;;;;;;;-1:-1:-1;44772:114:0;;;;;:::i;:::-;;:::i;28366:208::-;;;;;;;;;;-1:-1:-1;28366:208:0;;;;;:::i;:::-;;:::i;8985:103::-;;;;;;;;;;;;;:::i;8334:87::-;;;;;;;;;;-1:-1:-1;8407:6:0;;-1:-1:-1;;;;;8407:6:0;8334:87;;29111:104;;;;;;;;;;;;;:::i;41563:700::-;;;;;;:::i;:::-;;:::i;44388:83::-;;;;;;;;;;-1:-1:-1;44388:83:0;;;;;:::i;:::-;;:::i;30794:155::-;;;;;;;;;;-1:-1:-1;30794:155:0;;;;;:::i;:::-;;:::i;41036:28::-;;;;;;;;;;-1:-1:-1;41036:28:0;;;;;;;;;;;41006:25;;;;;;;;;;-1:-1:-1;41006:25:0;;;;;;;;44140:132;;;;;;;;;;-1:-1:-1;44140:132:0;;;;;:::i;:::-;;:::i;31917:328::-;;;;;;;;;;-1:-1:-1;31917:328:0;;;;;:::i;:::-;;:::i;40831:32::-;;;;;;;;;;;;;;;;42822:499;;;;;;;;;;-1:-1:-1;42822:499:0;;;;;:::i;:::-;;:::i;42457:153::-;;;;;;;;;;-1:-1:-1;42457:153:0;;;;;:::i;:::-;;:::i;43977:79::-;;;;;;;;;;-1:-1:-1;43977:79:0;;;;;:::i;:::-;;:::i;31020:164::-;;;;;;;;;;-1:-1:-1;31020:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31141:25:0;;;31117:4;31141:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31020:164;42271:150;;;;;;;;;;-1:-1:-1;42271:150:0;;;;;:::i;:::-;;:::i;40915:37::-;;;;;;;;;;;;;;;;9243:201;;;;;;;;;;-1:-1:-1;9243:201:0;;;;;:::i;:::-;;:::i;27997:305::-;28099:4;-1:-1:-1;;;;;;28136:40:0;;-1:-1:-1;;;28136:40:0;;:105;;-1:-1:-1;;;;;;;28193:48:0;;-1:-1:-1;;;28193:48:0;28136:105;:158;;;-1:-1:-1;;;;;;;;;;20875:40:0;;;28258:36;28116:178;27997:305;-1:-1:-1;;27997:305:0:o;28942:100::-;28996:13;29029:5;29022:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28942:100;:::o;30501:221::-;30577:7;33844:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33844:16:0;30597:73;;;;-1:-1:-1;;;30597:73:0;;7133:2:1;30597:73:0;;;7115:21:1;7172:2;7152:18;;;7145:30;7211:34;7191:18;;;7184:62;-1:-1:-1;;;7262:18:1;;;7255:42;7314:19;;30597:73:0;;;;;;;;;-1:-1:-1;30690:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30690:24:0;;30501:221::o;30024:411::-;30105:13;30121:23;30136:7;30121:14;:23::i;:::-;30105:39;;30169:5;-1:-1:-1;;;;;30163:11:0;:2;-1:-1:-1;;;;;30163:11:0;;;30155:57;;;;-1:-1:-1;;;30155:57:0;;7546:2:1;30155:57:0;;;7528:21:1;7585:2;7565:18;;;7558:30;7624:34;7604:18;;;7597:62;-1:-1:-1;;;7675:18:1;;;7668:31;7716:19;;30155:57:0;7344:397:1;30155:57:0;7138:10;-1:-1:-1;;;;;30247:21:0;;;;:62;;-1:-1:-1;30272:37:0;30289:5;7138:10;31020:164;:::i;30272:37::-;30225:168;;;;-1:-1:-1;;;30225:168:0;;7948:2:1;30225:168:0;;;7930:21:1;7987:2;7967:18;;;7960:30;8026:34;8006:18;;;7999:62;8097:26;8077:18;;;8070:54;8141:19;;30225:168:0;7746:420:1;30225:168:0;30406:21;30415:2;30419:7;30406:8;:21::i;:::-;30094:341;30024:411;;:::o;44477:104::-;8407:6;;-1:-1:-1;;;;;8407:6:0;7138:10;8554:23;8546:68;;;;-1:-1:-1;;;8546:68:0;;;;;;;:::i;:::-;44548:27;;::::1;::::0;:15:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44477:104:::0;:::o;44587:75::-;8407:6;;-1:-1:-1;;;;;8407:6:0;7138:10;8554:23;8546:68;;;;-1:-1:-1;;;8546:68:0;;;;;;;:::i;:::-;44642:6:::1;:14:::0;;-1:-1:-1;;44642:14:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44587:75::o;41227:89::-;41271:7;41294:16;:6;3754:14;;3662:114;41294:16;41287:23;;41227:89;:::o;31251:339::-;31446:41;7138:10;31479:7;31446:18;:41::i;:::-;31438:103;;;;-1:-1:-1;;;31438:103:0;;;;;;;:::i;:::-;31554:28;31564:4;31570:2;31574:7;31554:9;:28::i;44668:98::-;8407:6;;-1:-1:-1;;;;;8407:6:0;7138:10;8554:23;8546:68;;;;-1:-1:-1;;;8546:68:0;;;;;;;:::i;:::-;44735:16:::1;:25:::0;44668:98::o;44892:150::-;8407:6;;-1:-1:-1;;;;;8407:6:0;7138:10;8554:23;8546:68;;;;-1:-1:-1;;;8546:68:0;;;;;;;:::i;:::-;1843:1:::1;2441:7;;:19;;2433:63;;;::::0;-1:-1:-1;;;2433:63:0;;9152:2:1;2433:63:0::1;::::0;::::1;9134:21:1::0;9191:2;9171:18;;;9164:30;9230:33;9210:18;;;9203:61;9281:18;;2433:63:0::1;8950:355:1::0;2433:63:0::1;1843:1;2574:7;:18:::0;44950:7:::2;44971;8407:6:::0;;-1:-1:-1;;;;;8407:6:0;;8334:87;44971:7:::2;-1:-1:-1::0;;;;;44963:21:0::2;44992;44963:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44949:69;;;45033:2;45025:11;;;::::0;::::2;;-1:-1:-1::0;1799:1:0::1;2753:7;:22:::0;44892:150::o;31661:185::-;31799:39;31816:4;31822:2;31826:7;31799:39;;;;;;;;;;;;:16;:39::i;43327:627::-;43401:16;43429:23;43455:16;43465:5;43455:9;:16::i;:::-;43429:42;;43478:30;43525:15;43511:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43511:30:0;-1:-1:-1;43478:63:0;-1:-1:-1;43573:1:0;43548:22;43617:303;43642:15;43624;:33;:65;;;;;43679:10;;43661:14;:28;;43624:65;43617:303;;;43700:25;43728:23;43736:14;43728:7;:23::i;:::-;43700:51;;43785:5;-1:-1:-1;;;;;43764:26:0;:17;-1:-1:-1;;;;;43764:26:0;;43760:128;;;43836:14;43803:13;43817:15;43803:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;43861:17;;;;:::i;:::-;;;;43760:128;43896:16;;;;:::i;:::-;;;;43691:229;43617:303;;;-1:-1:-1;43935:13:0;;43327:627;-1:-1:-1;;;;43327:627:0:o;44062:72::-;8407:6;;-1:-1:-1;;;;;8407:6:0;7138:10;8554:23;8546:68;;;;-1:-1:-1;;;8546:68:0;;;;;;;:::i;:::-;44117:4:::1;:11:::0;44062:72::o;44278:104::-;8407:6;;-1:-1:-1;;;;;8407:6:0;7138:10;8554:23;8546:68;;;;-1:-1:-1;;;8546:68:0;;;;;;;:::i;:::-;44351:25;;::::1;::::0;:19:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;28636:239::-:0;28708:7;28744:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28744:16:0;28779:19;28771:73;;;;-1:-1:-1;;;28771:73:0;;10126:2:1;28771:73:0;;;10108:21:1;10165:2;10145:18;;;10138:30;10204:34;10184:18;;;10177:62;-1:-1:-1;;;10255:18:1;;;10248:39;10304:19;;28771:73:0;9924:405:1;44772:114:0;8407:6;;-1:-1:-1;;;;;8407:6:0;7138:10;8554:23;8546:68;;;;-1:-1:-1;;;8546:68:0;;;;;;;:::i;:::-;44846:25:::1;:34:::0;44772:114::o;28366:208::-;28438:7;-1:-1:-1;;;;;28466:19:0;;28458:74;;;;-1:-1:-1;;;28458:74:0;;10536:2:1;28458:74:0;;;10518:21:1;10575:2;10555:18;;;10548:30;10614:34;10594:18;;;10587:62;-1:-1:-1;;;10665:18:1;;;10658:40;10715:19;;28458:74:0;10334:406:1;28458:74:0;-1:-1:-1;;;;;;28550:16:0;;;;;:9;:16;;;;;;;28366:208::o;8985:103::-;8407:6;;-1:-1:-1;;;;;8407:6:0;7138:10;8554:23;8546:68;;;;-1:-1:-1;;;8546:68:0;;;;;;;:::i;:::-;9050:30:::1;9077:1;9050:18;:30::i;:::-;8985:103::o:0;29111:104::-;29167:13;29200:7;29193:14;;;;;:::i;41563:700::-;41627:10;41394:1;41381:10;:14;:54;;;;;41413:22;;41399:10;:36;;41381:54;41373:87;;;;-1:-1:-1;;;41373:87:0;;10947:2:1;41373:87:0;;;10929:21:1;10986:2;10966:18;;;10959:30;-1:-1:-1;;;11005:18:1;;;10998:50;11065:18;;41373:87:0;10745:344:1;41373:87:0;41508:10;;41494;41475:16;:6;3754:14;;3662:114;41475:16;:29;;;;:::i;:::-;:43;;41467:76;;;;-1:-1:-1;;;41467:76:0;;11429:2:1;41467:76:0;;;11411:21:1;11468:2;11448:18;;;11441:30;-1:-1:-1;;;11487:18:1;;;11480:50;11547:18;;41467:76:0;11227:344:1;41467:76:0;41655:6:::1;::::0;::::1;;41654:7;41646:43;;;::::0;-1:-1:-1;;;41646:43:0;;11778:2:1;41646:43:0::1;::::0;::::1;11760:21:1::0;11817:2;11797:18;;;11790:30;11856:25;11836:18;;;11829:53;11899:18;;41646:43:0::1;11576:347:1::0;41646:43:0::1;41764:16;::::0;41745:6:::1;3754:14:::0;41745:35:::1;:88;;;;;41808:25;;41784:21;41794:10;41784:9;:21::i;:::-;:49;41745:88;41741:475;;;41844:21;41896;41906:10;41896:9;:21::i;:::-;41868:25;;:49;;;;:::i;:::-;41844:73;;42052:13;42039:10;:26;42035:81;;;42093:13;42080:26;;42035:81;41835:288;41741:475;;;42171:10;42164:4;;:17;;;;:::i;:::-;42151:9;:30;;42143:65;;;::::0;-1:-1:-1;;;42143:65:0;;12433:2:1;42143:65:0::1;::::0;::::1;12415:21:1::0;12472:2;12452:18;;;12445:30;-1:-1:-1;;;12491:18:1;;;12484:52;12553:18;;42143:65:0::1;12231:346:1::0;42143:65:0::1;42224:33;42234:10;42246;42224:9;:33::i;44388:83::-:0;8407:6;;-1:-1:-1;;;;;8407:6:0;7138:10;8554:23;8546:68;;;;-1:-1:-1;;;8546:68:0;;;;;;;:::i;:::-;44451:14;;::::1;::::0;:8:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;30794:155::-:0;30889:52;7138:10;30922:8;30932;30889:18;:52::i;44140:132::-;8407:6;;-1:-1:-1;;;;;8407:6:0;7138:10;8554:23;8546:68;;;;-1:-1:-1;;;8546:68:0;;;;;;;:::i;:::-;44223:22:::1;:43:::0;44140:132::o;31917:328::-;32092:41;7138:10;32125:7;32092:18;:41::i;:::-;32084:103;;;;-1:-1:-1;;;32084:103:0;;;;;;;:::i;:::-;32198:39;32212:4;32218:2;32222:7;32231:5;32198:13;:39::i;:::-;31917:328;;;;:::o;42822:499::-;33820:4;33844:16;;;:7;:16;;;;;;42920:13;;-1:-1:-1;;;;;33844:16:0;42945:97;;;;-1:-1:-1;;;42945:97:0;;12784:2:1;42945:97:0;;;12766:21:1;12823:2;12803:18;;;12796:30;12862:34;12842:18;;;12835:62;-1:-1:-1;;;12913:18:1;;;12906:45;12968:19;;42945:97:0;12582:411:1;42945:97:0;43055:8;;;;;;;43051:66;;43090:19;43083:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42822:499;;;:::o;43051:66::-;43125:28;43156:10;:8;:10::i;:::-;43125:41;;43211:1;43186:14;43180:28;:32;:135;;;;;;;;;;;;;;;;;43248:14;43264:18;:7;:16;:18::i;:::-;43284:15;43231:69;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43180:135;43173:142;42822:499;-1:-1:-1;;;42822:499:0:o;42457:153::-;8407:6;;-1:-1:-1;;;;;8407:6:0;7138:10;8554:23;8546:68;;;;-1:-1:-1;;;8546:68:0;;;;;;;:::i;:::-;42557:10:::1;;42547:6;42528:16;:6;3754:14:::0;;3662:114;42528:16:::1;:25;;;;:::i;:::-;:39;;42520:48;;;::::0;::::1;;42575:29;42585:10;42597:6;42575:9;:29::i;:::-;42457:153:::0;:::o;43977:79::-;8407:6;;-1:-1:-1;;;;;8407:6:0;7138:10;8554:23;8546:68;;;;-1:-1:-1;;;8546:68:0;;;;;;;:::i;:::-;44034:8:::1;:16:::0;;;::::1;;;;-1:-1:-1::0;;44034:16:0;;::::1;::::0;;;::::1;::::0;;43977:79::o;42271:150::-;42355:10;41394:1;41381:10;:14;:54;;;;;41413:22;;41399:10;:36;;41381:54;41373:87;;;;-1:-1:-1;;;41373:87:0;;10947:2:1;41373:87:0;;;10929:21:1;10986:2;10966:18;;;10959:30;-1:-1:-1;;;11005:18:1;;;10998:50;11065:18;;41373:87:0;10745:344:1;41373:87:0;41508:10;;41494;41475:16;:6;3754:14;;3662:114;41475:16;:29;;;;:::i;:::-;:43;;41467:76;;;;-1:-1:-1;;;41467:76:0;;11429:2:1;41467:76:0;;;11411:21:1;11468:2;11448:18;;;11441:30;-1:-1:-1;;;11487:18:1;;;11480:50;11547:18;;41467:76:0;11227:344:1;41467:76:0;8407:6;;-1:-1:-1;;;;;8407:6:0;7138:10;8554:23:::1;8546:68;;;;-1:-1:-1::0;;;8546:68:0::1;;;;;;;:::i;:::-;42384:31:::2;42394:8;42404:10;42384:9;:31::i;9243:201::-:0;8407:6;;-1:-1:-1;;;;;8407:6:0;7138:10;8554:23;8546:68;;;;-1:-1:-1;;;8546:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9332:22:0;::::1;9324:73;;;::::0;-1:-1:-1;;;9324:73:0;;14858:2:1;9324:73:0::1;::::0;::::1;14840:21:1::0;14897:2;14877:18;;;14870:30;14936:34;14916:18;;;14909:62;-1:-1:-1;;;14987:18:1;;;14980:36;15033:19;;9324:73:0::1;14656:402:1::0;9324:73:0::1;9408:28;9427:8;9408:18;:28::i;37737:174::-:0;37812:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37812:29:0;-1:-1:-1;;;;;37812:29:0;;;;;;;;:24;;37866:23;37812:24;37866:14;:23::i;:::-;-1:-1:-1;;;;;37857:46:0;;;;;;;;;;;37737:174;;:::o;34049:348::-;34142:4;33844:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33844:16:0;34159:73;;;;-1:-1:-1;;;34159:73:0;;15265:2:1;34159:73:0;;;15247:21:1;15304:2;15284:18;;;15277:30;15343:34;15323:18;;;15316:62;-1:-1:-1;;;15394:18:1;;;15387:42;15446:19;;34159:73:0;15063:408:1;34159:73:0;34243:13;34259:23;34274:7;34259:14;:23::i;:::-;34243:39;;34312:5;-1:-1:-1;;;;;34301:16:0;:7;-1:-1:-1;;;;;34301:16:0;;:51;;;;34345:7;-1:-1:-1;;;;;34321:31:0;:20;34333:7;34321:11;:20::i;:::-;-1:-1:-1;;;;;34321:31:0;;34301:51;:87;;;-1:-1:-1;;;;;;31141:25:0;;;31117:4;31141:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34356:32;34293:96;34049:348;-1:-1:-1;;;;34049:348:0:o;37041:578::-;37200:4;-1:-1:-1;;;;;37173:31:0;:23;37188:7;37173:14;:23::i;:::-;-1:-1:-1;;;;;37173:31:0;;37165:85;;;;-1:-1:-1;;;37165:85:0;;15678:2:1;37165:85:0;;;15660:21:1;15717:2;15697:18;;;15690:30;15756:34;15736:18;;;15729:62;-1:-1:-1;;;15807:18:1;;;15800:39;15856:19;;37165:85:0;15476:405:1;37165:85:0;-1:-1:-1;;;;;37269:16:0;;37261:65;;;;-1:-1:-1;;;37261:65:0;;16088:2:1;37261:65:0;;;16070:21:1;16127:2;16107:18;;;16100:30;16166:34;16146:18;;;16139:62;-1:-1:-1;;;16217:18:1;;;16210:34;16261:19;;37261:65:0;15886:400:1;37261:65:0;37443:29;37460:1;37464:7;37443:8;:29::i;:::-;-1:-1:-1;;;;;37485:15:0;;;;;;:9;:15;;;;;:20;;37504:1;;37485:15;:20;;37504:1;;37485:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37516:13:0;;;;;;:9;:13;;;;;:18;;37533:1;;37516:13;:18;;37533:1;;37516:18;:::i;:::-;;;;-1:-1:-1;;37545:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37545:21:0;-1:-1:-1;;;;;37545:21:0;;;;;;;;;37584:27;;37545:16;;37584:27;;;;;;;37041:578;;;:::o;9604:191::-;9697:6;;;-1:-1:-1;;;;;9714:17:0;;;-1:-1:-1;;;;;;9714:17:0;;;;;;;9747:40;;9697:6;;;9714:17;9697:6;;9747:40;;9678:16;;9747:40;9667:128;9604:191;:::o;42616:200::-;42694:9;42689:122;42713:10;42709:1;:14;42689:122;;;42739:18;:6;3873:19;;3891:1;3873:19;;;3784:127;42739:18;42766:37;42776:8;42786:16;:6;3754:14;;3662:114;42786:16;42766:9;:37::i;:::-;42725:3;;;;:::i;:::-;;;;42689:122;;38053:315;38208:8;-1:-1:-1;;;;;38199:17:0;:5;-1:-1:-1;;;;;38199:17:0;;;38191:55;;;;-1:-1:-1;;;38191:55:0;;16493:2:1;38191:55:0;;;16475:21:1;16532:2;16512:18;;;16505:30;16571:27;16551:18;;;16544:55;16616:18;;38191:55:0;16291:349:1;38191:55:0;-1:-1:-1;;;;;38257:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;38257:46:0;;;;;;;;;;38319:41;;540::1;;;38319::0;;513:18:1;38319:41:0;;;;;;;38053:315;;;:::o;33127:::-;33284:28;33294:4;33300:2;33304:7;33284:9;:28::i;:::-;33331:48;33354:4;33360:2;33364:7;33373:5;33331:22;:48::i;:::-;33323:111;;;;-1:-1:-1;;;33323:111:0;;;;;;;:::i;45048:103::-;45108:13;45137:8;45130:15;;;;;:::i;4620:723::-;4676:13;4897:10;4893:53;;-1:-1:-1;;4924:10:0;;;;;;;;;;;;-1:-1:-1;;;4924:10:0;;;;;4620:723::o;4893:53::-;4971:5;4956:12;5012:78;5019:9;;5012:78;;5045:8;;;;:::i;:::-;;-1:-1:-1;5068:10:0;;-1:-1:-1;5076:2:0;5068:10;;:::i;:::-;;;5012:78;;;5100:19;5132:6;5122:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5122:17:0;;5100:39;;5150:154;5157:10;;5150:154;;5184:11;5194:1;5184:11;;:::i;:::-;;-1:-1:-1;5253:10:0;5261:2;5253:5;:10;:::i;:::-;5240:24;;:2;:24;:::i;:::-;5227:39;;5210:6;5217;5210:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5210:56:0;;;;;;;;-1:-1:-1;5281:11:0;5290:2;5281:11;;:::i;:::-;;;5150:154;;34739:110;34815:26;34825:2;34829:7;34815:26;;;;;;;;;;;;:9;:26::i;38933:799::-;39088:4;-1:-1:-1;;;;;39109:13:0;;10945:20;10993:8;39105:620;;39145:72;;-1:-1:-1;;;39145:72:0;;-1:-1:-1;;;;;39145:36:0;;;;;:72;;7138:10;;39196:4;;39202:7;;39211:5;;39145:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39145:72:0;;;;;;;;-1:-1:-1;;39145:72:0;;;;;;;;;;;;:::i;:::-;;;39141:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39387:13:0;;39383:272;;39430:60;;-1:-1:-1;;;39430:60:0;;;;;;;:::i;39383:272::-;39605:6;39599:13;39590:6;39586:2;39582:15;39575:38;39141:529;-1:-1:-1;;;;;;39268:51:0;-1:-1:-1;;;39268:51:0;;-1:-1:-1;39261:58:0;;39105:620;-1:-1:-1;39709:4:0;38933:799;;;;;;:::o;35076:321::-;35206:18;35212:2;35216:7;35206:5;:18::i;:::-;35257:54;35288:1;35292:2;35296:7;35305:5;35257:22;:54::i;:::-;35235:154;;;;-1:-1:-1;;;35235:154:0;;;;;;;:::i;35733:382::-;-1:-1:-1;;;;;35813:16:0;;35805:61;;;;-1:-1:-1;;;35805:61:0;;18388:2:1;35805:61:0;;;18370:21:1;;;18407:18;;;18400:30;18466:34;18446:18;;;18439:62;18518:18;;35805:61:0;18186:356:1;35805:61:0;33820:4;33844:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33844:16:0;:30;35877:58;;;;-1:-1:-1;;;35877:58:0;;18749:2:1;35877:58:0;;;18731:21:1;18788:2;18768:18;;;18761:30;18827;18807:18;;;18800:58;18875:18;;35877:58:0;18547:352:1;35877:58:0;-1:-1:-1;;;;;36006:13:0;;;;;;:9;:13;;;;;:18;;36023:1;;36006:13;:18;;36023:1;;36006:18;:::i;:::-;;;;-1:-1:-1;;36035:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36035:21:0;-1:-1:-1;;;;;36035:21:0;;;;;;;;36074:33;;36035:16;;;36074:33;;36035:16;;36074:33;35733:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:127::-;2416:10;2411:3;2407:20;2404:1;2397:31;2447:4;2444:1;2437:15;2471:4;2468:1;2461:15;2487:632;2552:5;2582:18;2623:2;2615:6;2612:14;2609:40;;;2629:18;;:::i;:::-;2704:2;2698:9;2672:2;2758:15;;-1:-1:-1;;2754:24:1;;;2780:2;2750:33;2746:42;2734:55;;;2804:18;;;2824:22;;;2801:46;2798:72;;;2850:18;;:::i;:::-;2890:10;2886:2;2879:22;2919:6;2910:15;;2949:6;2941;2934:22;2989:3;2980:6;2975:3;2971:16;2968:25;2965:45;;;3006:1;3003;2996:12;2965:45;3056:6;3051:3;3044:4;3036:6;3032:17;3019:44;3111:1;3104:4;3095:6;3087;3083:19;3079:30;3072:41;;;;2487:632;;;;;:::o;3124:451::-;3193:6;3246:2;3234:9;3225:7;3221:23;3217:32;3214:52;;;3262:1;3259;3252:12;3214:52;3302:9;3289:23;3335:18;3327:6;3324:30;3321:50;;;3367:1;3364;3357:12;3321:50;3390:22;;3443:4;3435:13;;3431:27;-1:-1:-1;3421:55:1;;3472:1;3469;3462:12;3421:55;3495:74;3561:7;3556:2;3543:16;3538:2;3534;3530:11;3495:74;:::i;3580:160::-;3645:20;;3701:13;;3694:21;3684:32;;3674:60;;3730:1;3727;3720:12;3745:180;3801:6;3854:2;3842:9;3833:7;3829:23;3825:32;3822:52;;;3870:1;3867;3860:12;3822:52;3893:26;3909:9;3893:26;:::i;3930:328::-;4007:6;4015;4023;4076:2;4064:9;4055:7;4051:23;4047:32;4044:52;;;4092:1;4089;4082:12;4044:52;4115:29;4134:9;4115:29;:::i;:::-;4105:39;;4163:38;4197:2;4186:9;4182:18;4163:38;:::i;:::-;4153:48;;4248:2;4237:9;4233:18;4220:32;4210:42;;3930:328;;;;;:::o;4263:186::-;4322:6;4375:2;4363:9;4354:7;4350:23;4346:32;4343:52;;;4391:1;4388;4381:12;4343:52;4414:29;4433:9;4414:29;:::i;4454:632::-;4625:2;4677:21;;;4747:13;;4650:18;;;4769:22;;;4596:4;;4625:2;4848:15;;;;4822:2;4807:18;;;4596:4;4891:169;4905:6;4902:1;4899:13;4891:169;;;4966:13;;4954:26;;5035:15;;;;5000:12;;;;4927:1;4920:9;4891:169;;;-1:-1:-1;5077:3:1;;4454:632;-1:-1:-1;;;;;;4454:632:1:o;5091:254::-;5156:6;5164;5217:2;5205:9;5196:7;5192:23;5188:32;5185:52;;;5233:1;5230;5223:12;5185:52;5256:29;5275:9;5256:29;:::i;:::-;5246:39;;5304:35;5335:2;5324:9;5320:18;5304:35;:::i;:::-;5294:45;;5091:254;;;;;:::o;5350:667::-;5445:6;5453;5461;5469;5522:3;5510:9;5501:7;5497:23;5493:33;5490:53;;;5539:1;5536;5529:12;5490:53;5562:29;5581:9;5562:29;:::i;:::-;5552:39;;5610:38;5644:2;5633:9;5629:18;5610:38;:::i;:::-;5600:48;;5695:2;5684:9;5680:18;5667:32;5657:42;;5750:2;5739:9;5735:18;5722:32;5777:18;5769:6;5766:30;5763:50;;;5809:1;5806;5799:12;5763:50;5832:22;;5885:4;5877:13;;5873:27;-1:-1:-1;5863:55:1;;5914:1;5911;5904:12;5863:55;5937:74;6003:7;5998:2;5985:16;5980:2;5976;5972:11;5937:74;:::i;:::-;5927:84;;;5350:667;;;;;;;:::o;6022:260::-;6090:6;6098;6151:2;6139:9;6130:7;6126:23;6122:32;6119:52;;;6167:1;6164;6157:12;6119:52;6190:29;6209:9;6190:29;:::i;:::-;6180:39;;6238:38;6272:2;6261:9;6257:18;6238:38;:::i;6287:254::-;6355:6;6363;6416:2;6404:9;6395:7;6391:23;6387:32;6384:52;;;6432:1;6429;6422:12;6384:52;6468:9;6455:23;6445:33;;6497:38;6531:2;6520:9;6516:18;6497:38;:::i;6546:380::-;6625:1;6621:12;;;;6668;;;6689:61;;6743:4;6735:6;6731:17;6721:27;;6689:61;6796:2;6788:6;6785:14;6765:18;6762:38;6759:161;;;6842:10;6837:3;6833:20;6830:1;6823:31;6877:4;6874:1;6867:15;6905:4;6902:1;6895:15;6759:161;;6546:380;;;:::o;8171:356::-;8373:2;8355:21;;;8392:18;;;8385:30;8451:34;8446:2;8431:18;;8424:62;8518:2;8503:18;;8171:356::o;8532:413::-;8734:2;8716:21;;;8773:2;8753:18;;;8746:30;8812:34;8807:2;8792:18;;8785:62;-1:-1:-1;;;8878:2:1;8863:18;;8856:47;8935:3;8920:19;;8532:413::o;9520:127::-;9581:10;9576:3;9572:20;9569:1;9562:31;9612:4;9609:1;9602:15;9636:4;9633:1;9626:15;9652:127;9713:10;9708:3;9704:20;9701:1;9694:31;9744:4;9741:1;9734:15;9768:4;9765:1;9758:15;9784:135;9823:3;-1:-1:-1;;9844:17:1;;9841:43;;;9864:18;;:::i;:::-;-1:-1:-1;9911:1:1;9900:13;;9784:135::o;11094:128::-;11134:3;11165:1;11161:6;11158:1;11155:13;11152:39;;;11171:18;;:::i;:::-;-1:-1:-1;11207:9:1;;11094:128::o;11928:125::-;11968:4;11996:1;11993;11990:8;11987:34;;;12001:18;;:::i;:::-;-1:-1:-1;12038:9:1;;11928:125::o;12058:168::-;12098:7;12164:1;12160;12156:6;12152:14;12149:1;12146:21;12141:1;12134:9;12127:17;12123:45;12120:71;;;12171:18;;:::i;:::-;-1:-1:-1;12211:9:1;;12058:168::o;13124:1527::-;13348:3;13386:6;13380:13;13412:4;13425:51;13469:6;13464:3;13459:2;13451:6;13447:15;13425:51;:::i;:::-;13539:13;;13498:16;;;;13561:55;13539:13;13498:16;13583:15;;;13561:55;:::i;:::-;13705:13;;13638:20;;;13678:1;;13765;13787:18;;;;13840;;;;13867:93;;13945:4;13935:8;13931:19;13919:31;;13867:93;14008:2;13998:8;13995:16;13975:18;13972:40;13969:167;;;-1:-1:-1;;;14035:33:1;;14091:4;14088:1;14081:15;14121:4;14042:3;14109:17;13969:167;14152:18;14179:110;;;;14303:1;14298:328;;;;14145:481;;14179:110;-1:-1:-1;;14214:24:1;;14200:39;;14259:20;;;;-1:-1:-1;14179:110:1;;14298:328;13071:1;13064:14;;;13108:4;13095:18;;14393:1;14407:169;14421:8;14418:1;14415:15;14407:169;;;14503:14;;14488:13;;;14481:37;14546:16;;;;14438:10;;14407:169;;;14411:3;;14607:8;14600:5;14596:20;14589:27;;14145:481;-1:-1:-1;14642:3:1;;13124:1527;-1:-1:-1;;;;;;;;;;;13124:1527:1:o;16645:414::-;16847:2;16829:21;;;16886:2;16866:18;;;16859:30;16925:34;16920:2;16905:18;;16898:62;-1:-1:-1;;;16991:2:1;16976:18;;16969:48;17049:3;17034:19;;16645:414::o;17064:127::-;17125:10;17120:3;17116:20;17113:1;17106:31;17156:4;17153:1;17146:15;17180:4;17177:1;17170:15;17196:120;17236:1;17262;17252:35;;17267:18;;:::i;:::-;-1:-1:-1;17301:9:1;;17196:120::o;17321:112::-;17353:1;17379;17369:35;;17384:18;;:::i;:::-;-1:-1:-1;17418:9:1;;17321:112::o;17438:489::-;-1:-1:-1;;;;;17707:15:1;;;17689:34;;17759:15;;17754:2;17739:18;;17732:43;17806:2;17791:18;;17784:34;;;17854:3;17849:2;17834:18;;17827:31;;;17632:4;;17875:46;;17901:19;;17893:6;17875:46;:::i;:::-;17867:54;17438:489;-1:-1:-1;;;;;;17438:489:1:o;17932:249::-;18001:6;18054:2;18042:9;18033:7;18029:23;18025:32;18022:52;;;18070:1;18067;18060:12;18022:52;18102:9;18096:16;18121:30;18145:5;18121:30;:::i

Swarm Source

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