POL Price: $0.714755 (+16.87%)
 

Overview

Max Total Supply

41 CF

Holders

13

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
CrazyFroggers: CF Token
Balance
1 CF
0x9DDB63d8BE107803bC7C290bA5D231CbF7a6e642
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

CrazyFroggers is a Brazilian NFT Collection, the first focused to recovery the natural life on planet.

Contract Source Code Verified (Exact Match)

Contract Name:
CrazyFroggers

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2022-09-30
*/

// SPDX-License-Identifier: MIT
// 2022 | Conte Group
//█▀▀ █▀▀█ █▀▀█ ▀▀█ █░░█ █▀▀ █▀▀█ █▀▀█ █▀▀▀ █▀▀▀ █▀▀ █▀▀█ █▀▀ 
//█░░ █▄▄▀ █▄▄█ ▄▀░ █▄▄█ █▀▀ █▄▄▀ █░░█ █░▀█ █░▀█ █▀▀ █▄▄▀ ▀▀█
//▀▀▀ ▀░▀▀ ▀░░▀ ▀▀▀ ▄▄▄█ ▀░░ ▀░▀▀ ▀▀▀▀ ▀▀▀▀ ▀▀▀▀ ▀▀▀ ▀░▀▀ ▀▀▀
//──▒▒▒▒▒▒▒▒───▒▒▒▒▒▒▒▒───▒▒▒▒▒▒▒▒───▒▒▒▒▒▒▒▒───▒▒▒▒▒▒▒▒
//─▒▐▒▐▒▒▒▒▌▒─▒▒▌▒▒▐▒▒▌▒─▒▐▒▐▒▒▒▒▌▒─▒▒▌▒▒▐▒▒▌▒─▒▐▒▐▒▒▒▒▌▒
//──▒▀▄█▒▄▀▒───▒▀▄▒▌▄▀▒───▒▀▄█▒▄▀▒───▒▀▄▒▌▄▀▒───▒▀▄█▒▄▀▒
//─────██─────────██─────────██─────────██─────────██  
//░░░▄▄██▄░░░░░░░▄██▄░░░░░░▄▄██▄░░░░░░░▄██▄░░░░░░▄▄██▄░░░░

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.7.0) (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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/CrazyFroggers.sol


// 2022 | Conte Group


//──▒▒▒▒▒▒▒▒───▒▒▒▒▒▒▒▒───▒▒▒▒▒▒▒▒───▒▒▒▒▒▒▒▒───▒▒▒▒▒▒▒▒
//─▒▐▒▐▒▒▒▒▌▒─▒▒▌▒▒▐▒▒▌▒─▒▐▒▐▒▒▒▒▌▒─▒▒▌▒▒▐▒▒▌▒─▒▐▒▐▒▒▒▒▌▒
//──▒▀▄█▒▄▀▒───▒▀▄▒▌▄▀▒───▒▀▄█▒▄▀▒───▒▀▄▒▌▄▀▒───▒▀▄█▒▄▀▒
//─────██─────────██─────────██─────────██─────────██  
//░░░▄▄██▄░░░░░░░▄██▄░░░░░░▄▄██▄░░░░░░░▄██▄░░░░░░▄▄██▄░░░░


pragma solidity >=0.7.0 <0.9.0;





contract CrazyFroggers is ERC721Enumerable, Ownable, ReentrancyGuard {
  using Counters for Counters.Counter;
   Counters.Counter private _tokenIds;

  using Strings for uint256;
  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;

  //mint settings
  uint256 public preCost = 10 ether;
  uint256 public cost = 20 ether;
  uint256 public costFinal = 40 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmount = 200;
  uint256 public nftPerAddressLimit = 100;
  uint256 public halfSupply = 5000;

  //booleans
  bool public paused = true;
  bool public revealed = false;
  bool public onlyWhitelisted = true;
  bool public dynamicCost = true;


  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;


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

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

  function updateCost(uint256 _supply) internal view returns (uint256 _cost){
      if(onlyWhitelisted == true) {
      return (preCost);
      }
      if(onlyWhitelisted == false && _supply < halfSupply) {
      return (cost);
      }
      if(onlyWhitelisted == false && _supply > halfSupply) {
      return (costFinal);
      }
    }

  // public
  function mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused, "Please wait. The contract is paused.");
    require(_mintAmount > 0, "Mint amount must be at least 1.");
    require(_mintAmount <= maxMintAmount, "Limit exceeded.");
    require(supply + _mintAmount <= maxSupply, "Sold out!");

    if (msg.sender != owner()) {
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "User is not whitelisted.");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "Too much CrazyFroggers on your wallet.");
        }
        require(msg.value >= updateCost(supply) * _mintAmount, "Ew! No funds on your wallet.");
    }
    
    for (uint256 i = 1; i <= _mintAmount; i++) {
        addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }
  
  function isWhitelisted(address _user) public view returns (bool) {
    for (uint256 i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function getCost() public view returns (uint256){
    return cost;
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
    {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

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

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

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }

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

//──▒▒▒▒▒▒▒▒───▒▒▒▒▒▒▒▒───▒▒▒▒▒▒▒▒───▒▒▒▒▒▒▒▒───▒▒▒▒▒▒▒▒
//─▒▐▒▐▒▒▒▒▌▒─▒▒▌▒▒▐▒▒▌▒─▒▐▒▐▒▒▒▒▌▒─▒▒▌▒▒▐▒▒▌▒─▒▐▒▐▒▒▒▒▌▒
//──▒▀▄█▒▄▀▒───▒▀▄▒▌▄▀▒───▒▀▄█▒▄▀▒───▒▀▄▒▌▄▀▒───▒▀▄█▒▄▀▒
//─────██─────────██─────────██─────────██─────────██  
//░░░▄▄██▄░░░░░░░▄██▄░░░░░░▄▄██▄░░░░░░░▄██▄░░░░░░▄▄██▄░░░░

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costFinal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dynamicCost","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"halfSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600e919062000212565b50678ac7230489e800006010556801158e460913d0000060115568022b1c8c1227a0000060125561271060135560c860145560646015556113886016556017805463ffffffff191663010100011790553480156200008557600080fd5b5060405162002dac38038062002dac833981016040819052620000a8916200036f565b835184908490620000c190600090602085019062000212565b508051620000d790600190602084019062000212565b505050620000f4620000ee6200011960201b60201c565b6200011d565b6001600b5562000104826200016f565b6200010f8162000192565b505050506200047b565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000179620001b1565b80516200018e90600d90602084019062000212565b5050565b6200019c620001b1565b80516200018e90600f90602084019062000212565b600a546001600160a01b03163314620002105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b828054620002209062000428565b90600052602060002090601f0160209004810192826200024457600085556200028f565b82601f106200025f57805160ff19168380011785556200028f565b828001600101855582156200028f579182015b828111156200028f57825182559160200191906001019062000272565b506200029d929150620002a1565b5090565b5b808211156200029d5760008155600101620002a2565b600082601f830112620002ca57600080fd5b81516001600160401b0380821115620002e757620002e762000465565b604051601f8301601f19908116603f0116810190828211818310171562000312576200031262000465565b816040528381526020925086838588010111156200032f57600080fd5b600091505b8382101562000353578582018301518183018401529082019062000334565b83821115620003655760008385830101525b9695505050505050565b600080600080608085870312156200038657600080fd5b84516001600160401b03808211156200039e57600080fd5b620003ac88838901620002b8565b95506020870151915080821115620003c357600080fd5b620003d188838901620002b8565b94506040870151915080821115620003e857600080fd5b620003f688838901620002b8565b935060608701519150808211156200040d57600080fd5b506200041c87828801620002b8565b91505092959194509250565b600181811c908216806200043d57607f821691505b602082108114156200045f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612921806200048b6000396000f3fe6080604052600436106102c95760003560e01c80636c0360eb11610175578063ba4e5c49116100dc578063d0eb26b011610095578063e985e9c51161006f578063e985e9c51461081c578063edec5f2714610865578063f2c4ce1e14610885578063f2fde38b146108a557600080fd5b8063d0eb26b0146107c6578063d5abeb01146107e6578063da3ef23f146107fc57600080fd5b8063ba4e5c4914610725578063ba7d2c7614610745578063bd3e19d41461075b578063be745f7714610770578063c668286214610791578063c87b56dd146107a657600080fd5b80639c70b5121161012e5780639c70b51214610687578063a0712d68146106a7578063a22cb465146106ba578063a475b5dd146106da578063b6374e35146106ef578063b88d4fde1461070557600080fd5b80636c0360eb146105ea57806370a08231146105ff578063715018a61461061f5780637f00c7a6146106345780638da5cb5b1461065457806395d89b411461067257600080fd5b80633af32abf116102345780634b1439aa116101ed57806355f804b3116101c757806355f804b31461057a5780635c975abb1461059a578063605be546146105b45780636352211e146105ca57600080fd5b80634b1439aa146105255780634f6ccce71461053b578063518302271461055b57600080fd5b80633af32abf146104705780633c952764146104905780633ccfd60b146104b057806342842e0e146104b8578063438b6300146104d857806344a0d68a1461050557600080fd5b806313faede61161028657806313faede6146103b457806318160ddd146103d857806318cae269146103ed578063239c70ae1461041a57806323b872dd146104305780632f745c591461045057600080fd5b806301ffc9a7146102ce57806302329a291461030357806306fdde0314610325578063081812fc14610347578063081c8c441461037f578063095ea7b314610394575b600080fd5b3480156102da57600080fd5b506102ee6102e93660046124af565b6108c5565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b5061032361031e366004612494565b6108f0565b005b34801561033157600080fd5b5061033a61090b565b6040516102fa91906126bc565b34801561035357600080fd5b50610367610362366004612532565b61099d565b6040516001600160a01b0390911681526020016102fa565b34801561038b57600080fd5b5061033a6109c4565b3480156103a057600080fd5b506103236103af3660046123f5565b610a52565b3480156103c057600080fd5b506103ca60115481565b6040519081526020016102fa565b3480156103e457600080fd5b506008546103ca565b3480156103f957600080fd5b506103ca6104083660046122c5565b60196020526000908152604090205481565b34801561042657600080fd5b506103ca60145481565b34801561043c57600080fd5b5061032361044b366004612313565b610b6d565b34801561045c57600080fd5b506103ca61046b3660046123f5565b610b9e565b34801561047c57600080fd5b506102ee61048b3660046122c5565b610c34565b34801561049c57600080fd5b506103236104ab366004612494565b610c9e565b610323610cc2565b3480156104c457600080fd5b506103236104d3366004612313565b610d3e565b3480156104e457600080fd5b506104f86104f33660046122c5565b610d59565b6040516102fa9190612678565b34801561051157600080fd5b50610323610520366004612532565b610dfb565b34801561053157600080fd5b506103ca60165481565b34801561054757600080fd5b506103ca610556366004612532565b610e08565b34801561056757600080fd5b506017546102ee90610100900460ff1681565b34801561058657600080fd5b506103236105953660046124e9565b610e9b565b3480156105a657600080fd5b506017546102ee9060ff1681565b3480156105c057600080fd5b506103ca60125481565b3480156105d657600080fd5b506103676105e5366004612532565b610eba565b3480156105f657600080fd5b5061033a610f1a565b34801561060b57600080fd5b506103ca61061a3660046122c5565b610f27565b34801561062b57600080fd5b50610323610fad565b34801561064057600080fd5b5061032361064f366004612532565b610fc1565b34801561066057600080fd5b50600a546001600160a01b0316610367565b34801561067e57600080fd5b5061033a610fce565b34801561069357600080fd5b506017546102ee9062010000900460ff1681565b6103236106b5366004612532565b610fdd565b3480156106c657600080fd5b506103236106d53660046123cb565b6112d1565b3480156106e657600080fd5b506103236112dc565b3480156106fb57600080fd5b506103ca60105481565b34801561071157600080fd5b5061032361072036600461234f565b6112f5565b34801561073157600080fd5b50610367610740366004612532565b61132d565b34801561075157600080fd5b506103ca60155481565b34801561076757600080fd5b506011546103ca565b34801561077c57600080fd5b506017546102ee906301000000900460ff1681565b34801561079d57600080fd5b5061033a611357565b3480156107b257600080fd5b5061033a6107c1366004612532565b611364565b3480156107d257600080fd5b506103236107e1366004612532565b6114e3565b3480156107f257600080fd5b506103ca60135481565b34801561080857600080fd5b506103236108173660046124e9565b6114f0565b34801561082857600080fd5b506102ee6108373660046122e0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561087157600080fd5b5061032361088036600461241f565b61150b565b34801561089157600080fd5b506103236108a03660046124e9565b61152b565b3480156108b157600080fd5b506103236108c03660046122c5565b611546565b60006001600160e01b0319821663780e9d6360e01b14806108ea57506108ea826115bc565b92915050565b6108f861160c565b6017805460ff1916911515919091179055565b60606000805461091a906127fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610946906127fd565b80156109935780601f1061096857610100808354040283529160200191610993565b820191906000526020600020905b81548152906001019060200180831161097657829003601f168201915b5050505050905090565b60006109a882611666565b506000908152600460205260409020546001600160a01b031690565b600f80546109d1906127fd565b80601f01602080910402602001604051908101604052809291908181526020018280546109fd906127fd565b8015610a4a5780601f10610a1f57610100808354040283529160200191610a4a565b820191906000526020600020905b815481529060010190602001808311610a2d57829003601f168201915b505050505081565b6000610a5d82610eba565b9050806001600160a01b0316836001600160a01b03161415610ad05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610aec5750610aec8133610837565b610b5e5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610ac7565b610b6883836116c5565b505050565b610b773382611733565b610b935760405162461bcd60e51b8152600401610ac790612721565b610b688383836117b2565b6000610ba983610f27565b8210610c0b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ac7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601854811015610c9557826001600160a01b031660188281548110610c5f57610c5f6128a9565b6000918252602090912001546001600160a01b03161415610c835750600192915050565b80610c8d81612838565b915050610c38565b50600092915050565b610ca661160c565b60178054911515620100000262ff000019909216919091179055565b610cca61160c565b6000610cde600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d28576040519150601f19603f3d011682016040523d82523d6000602084013e610d2d565b606091505b5050905080610d3b57600080fd5b50565b610b68838383604051806020016040528060008152506112f5565b60606000610d6683610f27565b905060008167ffffffffffffffff811115610d8357610d836128bf565b604051908082528060200260200182016040528015610dac578160200160208202803683370190505b50905060005b82811015610df357610dc48582610b9e565b828281518110610dd657610dd66128a9565b602090810291909101015280610deb81612838565b915050610db2565b509392505050565b610e0361160c565b601155565b6000610e1360085490565b8210610e765760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610ac7565b60088281548110610e8957610e896128a9565b90600052602060002001549050919050565b610ea361160c565b8051610eb690600d90602084019061211e565b5050565b6000818152600260205260408120546001600160a01b0316806108ea5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610ac7565b600d80546109d1906127fd565b60006001600160a01b038216610f915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610ac7565b506001600160a01b031660009081526003602052604090205490565b610fb561160c565b610fbf6000611959565b565b610fc961160c565b601455565b60606001805461091a906127fd565b6000610fe860085490565b60175490915060ff161561104a5760405162461bcd60e51b8152602060048201526024808201527f506c6561736520776169742e2054686520636f6e74726163742069732070617560448201526339b2b21760e11b6064820152608401610ac7565b6000821161109a5760405162461bcd60e51b815260206004820152601f60248201527f4d696e7420616d6f756e74206d757374206265206174206c6561737420312e006044820152606401610ac7565b6014548211156110de5760405162461bcd60e51b815260206004820152600f60248201526e2634b6b4ba1032bc31b2b2b232b21760891b6044820152606401610ac7565b6013546110eb838361276f565b11156111255760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610ac7565b600a546001600160a01b031633146112815760175462010000900460ff1615156001141561121e5761115633610c34565b6111a25760405162461bcd60e51b815260206004820152601860248201527f55736572206973206e6f742077686974656c69737465642e00000000000000006044820152606401610ac7565b336000908152601960205260409020546015546111bf848361276f565b111561121c5760405162461bcd60e51b815260206004820152602660248201527f546f6f206d756368204372617a7946726f6767657273206f6e20796f7572207760448201526530b63632ba1760d11b6064820152608401610ac7565b505b81611228826119ab565b611232919061279b565b3410156112815760405162461bcd60e51b815260206004820152601c60248201527f457721204e6f2066756e6473206f6e20796f75722077616c6c65742e000000006044820152606401610ac7565b60015b828111610b68573360009081526019602052604081208054916112a683612838565b909155506112bf9050336112ba838561276f565b611a1f565b806112c981612838565b915050611284565b610eb6338383611a39565b6112e461160c565b6017805461ff001916610100179055565b6112ff3383611733565b61131b5760405162461bcd60e51b8152600401610ac790612721565b61132784848484611b08565b50505050565b6018818154811061133d57600080fd5b6000918252602090912001546001600160a01b0316905081565b600e80546109d1906127fd565b6000818152600260205260409020546060906001600160a01b03166113e35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ac7565b601754610100900460ff1661148457600f80546113ff906127fd565b80601f016020809104026020016040519081016040528092919081815260200182805461142b906127fd565b80156114785780601f1061144d57610100808354040283529160200191611478565b820191906000526020600020905b81548152906001019060200180831161145b57829003601f168201915b50505050509050919050565b600061148e611b3b565b905060008151116114ae57604051806020016040528060008152506114dc565b806114b884611b4a565b600e6040516020016114cc93929190612577565b6040516020818303038152906040525b9392505050565b6114eb61160c565b601555565b6114f861160c565b8051610eb690600e90602084019061211e565b61151361160c565b61151f601860006121a2565b610b68601883836121c0565b61153361160c565b8051610eb690600f90602084019061211e565b61154e61160c565b6001600160a01b0381166115b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ac7565b610d3b81611959565b60006001600160e01b031982166380ac58cd60e01b14806115ed57506001600160e01b03198216635b5e139f60e01b145b806108ea57506301ffc9a760e01b6001600160e01b03198316146108ea565b600a546001600160a01b03163314610fbf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ac7565b6000818152600260205260409020546001600160a01b0316610d3b5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610ac7565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116fa82610eba565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061173f83610eba565b9050806001600160a01b0316846001600160a01b0316148061178657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806117aa5750836001600160a01b031661179f8461099d565b6001600160a01b0316145b949350505050565b826001600160a01b03166117c582610eba565b6001600160a01b0316146118295760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610ac7565b6001600160a01b03821661188b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610ac7565b611896838383611c48565b6118a16000826116c5565b6001600160a01b03831660009081526003602052604081208054600192906118ca9084906127ba565b90915550506001600160a01b03821660009081526003602052604081208054600192906118f890849061276f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60175460009062010000900460ff161515600114156119cc57505060105490565b60175462010000900460ff161580156119e6575060165482105b156119f357505060115490565b60175462010000900460ff16158015611a0d575060165482115b15611a1a57505060125490565b919050565b610eb6828260405180602001604052806000815250611d00565b816001600160a01b0316836001600160a01b03161415611a9b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ac7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b138484846117b2565b611b1f84848484611d33565b6113275760405162461bcd60e51b8152600401610ac7906126cf565b6060600d805461091a906127fd565b606081611b6e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b985780611b8281612838565b9150611b919050600a83612787565b9150611b72565b60008167ffffffffffffffff811115611bb357611bb36128bf565b6040519080825280601f01601f191660200182016040528015611bdd576020820181803683370190505b5090505b84156117aa57611bf26001836127ba565b9150611bff600a86612853565b611c0a90603061276f565b60f81b818381518110611c1f57611c1f6128a9565b60200101906001600160f81b031916908160001a905350611c41600a86612787565b9450611be1565b6001600160a01b038316611ca357611c9e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611cc6565b816001600160a01b0316836001600160a01b031614611cc657611cc68382611e40565b6001600160a01b038216611cdd57610b6881611edd565b826001600160a01b0316826001600160a01b031614610b6857610b688282611f8c565b611d0a8383611fd0565b611d176000848484611d33565b610b685760405162461bcd60e51b8152600401610ac7906126cf565b60006001600160a01b0384163b15611e3557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d7790339089908890889060040161263b565b602060405180830381600087803b158015611d9157600080fd5b505af1925050508015611dc1575060408051601f3d908101601f19168201909252611dbe918101906124cc565b60015b611e1b573d808015611def576040519150601f19603f3d011682016040523d82523d6000602084013e611df4565b606091505b508051611e135760405162461bcd60e51b8152600401610ac7906126cf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117aa565b506001949350505050565b60006001611e4d84610f27565b611e5791906127ba565b600083815260076020526040902054909150808214611eaa576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611eef906001906127ba565b60008381526009602052604081205460088054939450909284908110611f1757611f176128a9565b906000526020600020015490508060088381548110611f3857611f386128a9565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f7057611f70612893565b6001900381819060005260206000200160009055905550505050565b6000611f9783610f27565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120265760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ac7565b6000818152600260205260409020546001600160a01b03161561208b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ac7565b61209760008383611c48565b6001600160a01b03821660009081526003602052604081208054600192906120c090849061276f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461212a906127fd565b90600052602060002090601f01602090048101928261214c5760008555612192565b82601f1061216557805160ff1916838001178555612192565b82800160010185558215612192579182015b82811115612192578251825591602001919060010190612177565b5061219e929150612213565b5090565b5080546000825590600052602060002090810190610d3b9190612213565b828054828255906000526020600020908101928215612192579160200282015b828111156121925781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906121e0565b5b8082111561219e5760008155600101612214565b600067ffffffffffffffff80841115612243576122436128bf565b604051601f8501601f19908116603f0116810190828211818310171561226b5761226b6128bf565b8160405280935085815286868601111561228457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a1a57600080fd5b80358015158114611a1a57600080fd5b6000602082840312156122d757600080fd5b6114dc8261229e565b600080604083850312156122f357600080fd5b6122fc8361229e565b915061230a6020840161229e565b90509250929050565b60008060006060848603121561232857600080fd5b6123318461229e565b925061233f6020850161229e565b9150604084013590509250925092565b6000806000806080858703121561236557600080fd5b61236e8561229e565b935061237c6020860161229e565b925060408501359150606085013567ffffffffffffffff81111561239f57600080fd5b8501601f810187136123b057600080fd5b6123bf87823560208401612228565b91505092959194509250565b600080604083850312156123de57600080fd5b6123e78361229e565b915061230a602084016122b5565b6000806040838503121561240857600080fd5b6124118361229e565b946020939093013593505050565b6000806020838503121561243257600080fd5b823567ffffffffffffffff8082111561244a57600080fd5b818501915085601f83011261245e57600080fd5b81358181111561246d57600080fd5b8660208260051b850101111561248257600080fd5b60209290920196919550909350505050565b6000602082840312156124a657600080fd5b6114dc826122b5565b6000602082840312156124c157600080fd5b81356114dc816128d5565b6000602082840312156124de57600080fd5b81516114dc816128d5565b6000602082840312156124fb57600080fd5b813567ffffffffffffffff81111561251257600080fd5b8201601f8101841361252357600080fd5b6117aa84823560208401612228565b60006020828403121561254457600080fd5b5035919050565b600081518084526125638160208601602086016127d1565b601f01601f19169290920160200192915050565b60008451602061258a8285838a016127d1565b85519184019161259d8184848a016127d1565b8554920191600090600181811c90808316806125ba57607f831692505b8583108114156125d857634e487b7160e01b85526022600452602485fd5b8080156125ec57600181146125fd5761262a565b60ff1985168852838801955061262a565b60008b81526020902060005b858110156126225781548a820152908401908801612609565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061266e9083018461254b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126b057835183529284019291840191600101612694565b50909695505050505050565b6020815260006114dc602083018461254b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b6000821982111561278257612782612867565b500190565b6000826127965761279661287d565b500490565b60008160001904831182151516156127b5576127b5612867565b500290565b6000828210156127cc576127cc612867565b500390565b60005b838110156127ec5781810151838201526020016127d4565b838111156113275750506000910152565b600181811c9082168061281157607f821691505b6020821081141561283257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561284c5761284c612867565b5060010190565b6000826128625761286261287d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d3b57600080fdfea2646970667358221220cede08daf7bff6b6774851b43d1a1fdd2523e31c9d9bab20725be535e510a19464736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000d4372617a7946726f676765727300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000243460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e746f45477058555152584751663573756a3269685a74773437684e3439346d526250726e374a72655862322f00000000000000000000000000000000000000000000000000000000000000000000000000000000004a697066733a2f2f516d6144484b436a794d31614156723550745345765a365432566f66376b665931374b44415a4c6f6d74567977412f68696464656e5f6d657461646174612e6a736f6e00000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102c95760003560e01c80636c0360eb11610175578063ba4e5c49116100dc578063d0eb26b011610095578063e985e9c51161006f578063e985e9c51461081c578063edec5f2714610865578063f2c4ce1e14610885578063f2fde38b146108a557600080fd5b8063d0eb26b0146107c6578063d5abeb01146107e6578063da3ef23f146107fc57600080fd5b8063ba4e5c4914610725578063ba7d2c7614610745578063bd3e19d41461075b578063be745f7714610770578063c668286214610791578063c87b56dd146107a657600080fd5b80639c70b5121161012e5780639c70b51214610687578063a0712d68146106a7578063a22cb465146106ba578063a475b5dd146106da578063b6374e35146106ef578063b88d4fde1461070557600080fd5b80636c0360eb146105ea57806370a08231146105ff578063715018a61461061f5780637f00c7a6146106345780638da5cb5b1461065457806395d89b411461067257600080fd5b80633af32abf116102345780634b1439aa116101ed57806355f804b3116101c757806355f804b31461057a5780635c975abb1461059a578063605be546146105b45780636352211e146105ca57600080fd5b80634b1439aa146105255780634f6ccce71461053b578063518302271461055b57600080fd5b80633af32abf146104705780633c952764146104905780633ccfd60b146104b057806342842e0e146104b8578063438b6300146104d857806344a0d68a1461050557600080fd5b806313faede61161028657806313faede6146103b457806318160ddd146103d857806318cae269146103ed578063239c70ae1461041a57806323b872dd146104305780632f745c591461045057600080fd5b806301ffc9a7146102ce57806302329a291461030357806306fdde0314610325578063081812fc14610347578063081c8c441461037f578063095ea7b314610394575b600080fd5b3480156102da57600080fd5b506102ee6102e93660046124af565b6108c5565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b5061032361031e366004612494565b6108f0565b005b34801561033157600080fd5b5061033a61090b565b6040516102fa91906126bc565b34801561035357600080fd5b50610367610362366004612532565b61099d565b6040516001600160a01b0390911681526020016102fa565b34801561038b57600080fd5b5061033a6109c4565b3480156103a057600080fd5b506103236103af3660046123f5565b610a52565b3480156103c057600080fd5b506103ca60115481565b6040519081526020016102fa565b3480156103e457600080fd5b506008546103ca565b3480156103f957600080fd5b506103ca6104083660046122c5565b60196020526000908152604090205481565b34801561042657600080fd5b506103ca60145481565b34801561043c57600080fd5b5061032361044b366004612313565b610b6d565b34801561045c57600080fd5b506103ca61046b3660046123f5565b610b9e565b34801561047c57600080fd5b506102ee61048b3660046122c5565b610c34565b34801561049c57600080fd5b506103236104ab366004612494565b610c9e565b610323610cc2565b3480156104c457600080fd5b506103236104d3366004612313565b610d3e565b3480156104e457600080fd5b506104f86104f33660046122c5565b610d59565b6040516102fa9190612678565b34801561051157600080fd5b50610323610520366004612532565b610dfb565b34801561053157600080fd5b506103ca60165481565b34801561054757600080fd5b506103ca610556366004612532565b610e08565b34801561056757600080fd5b506017546102ee90610100900460ff1681565b34801561058657600080fd5b506103236105953660046124e9565b610e9b565b3480156105a657600080fd5b506017546102ee9060ff1681565b3480156105c057600080fd5b506103ca60125481565b3480156105d657600080fd5b506103676105e5366004612532565b610eba565b3480156105f657600080fd5b5061033a610f1a565b34801561060b57600080fd5b506103ca61061a3660046122c5565b610f27565b34801561062b57600080fd5b50610323610fad565b34801561064057600080fd5b5061032361064f366004612532565b610fc1565b34801561066057600080fd5b50600a546001600160a01b0316610367565b34801561067e57600080fd5b5061033a610fce565b34801561069357600080fd5b506017546102ee9062010000900460ff1681565b6103236106b5366004612532565b610fdd565b3480156106c657600080fd5b506103236106d53660046123cb565b6112d1565b3480156106e657600080fd5b506103236112dc565b3480156106fb57600080fd5b506103ca60105481565b34801561071157600080fd5b5061032361072036600461234f565b6112f5565b34801561073157600080fd5b50610367610740366004612532565b61132d565b34801561075157600080fd5b506103ca60155481565b34801561076757600080fd5b506011546103ca565b34801561077c57600080fd5b506017546102ee906301000000900460ff1681565b34801561079d57600080fd5b5061033a611357565b3480156107b257600080fd5b5061033a6107c1366004612532565b611364565b3480156107d257600080fd5b506103236107e1366004612532565b6114e3565b3480156107f257600080fd5b506103ca60135481565b34801561080857600080fd5b506103236108173660046124e9565b6114f0565b34801561082857600080fd5b506102ee6108373660046122e0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561087157600080fd5b5061032361088036600461241f565b61150b565b34801561089157600080fd5b506103236108a03660046124e9565b61152b565b3480156108b157600080fd5b506103236108c03660046122c5565b611546565b60006001600160e01b0319821663780e9d6360e01b14806108ea57506108ea826115bc565b92915050565b6108f861160c565b6017805460ff1916911515919091179055565b60606000805461091a906127fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610946906127fd565b80156109935780601f1061096857610100808354040283529160200191610993565b820191906000526020600020905b81548152906001019060200180831161097657829003601f168201915b5050505050905090565b60006109a882611666565b506000908152600460205260409020546001600160a01b031690565b600f80546109d1906127fd565b80601f01602080910402602001604051908101604052809291908181526020018280546109fd906127fd565b8015610a4a5780601f10610a1f57610100808354040283529160200191610a4a565b820191906000526020600020905b815481529060010190602001808311610a2d57829003601f168201915b505050505081565b6000610a5d82610eba565b9050806001600160a01b0316836001600160a01b03161415610ad05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610aec5750610aec8133610837565b610b5e5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610ac7565b610b6883836116c5565b505050565b610b773382611733565b610b935760405162461bcd60e51b8152600401610ac790612721565b610b688383836117b2565b6000610ba983610f27565b8210610c0b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ac7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601854811015610c9557826001600160a01b031660188281548110610c5f57610c5f6128a9565b6000918252602090912001546001600160a01b03161415610c835750600192915050565b80610c8d81612838565b915050610c38565b50600092915050565b610ca661160c565b60178054911515620100000262ff000019909216919091179055565b610cca61160c565b6000610cde600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d28576040519150601f19603f3d011682016040523d82523d6000602084013e610d2d565b606091505b5050905080610d3b57600080fd5b50565b610b68838383604051806020016040528060008152506112f5565b60606000610d6683610f27565b905060008167ffffffffffffffff811115610d8357610d836128bf565b604051908082528060200260200182016040528015610dac578160200160208202803683370190505b50905060005b82811015610df357610dc48582610b9e565b828281518110610dd657610dd66128a9565b602090810291909101015280610deb81612838565b915050610db2565b509392505050565b610e0361160c565b601155565b6000610e1360085490565b8210610e765760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610ac7565b60088281548110610e8957610e896128a9565b90600052602060002001549050919050565b610ea361160c565b8051610eb690600d90602084019061211e565b5050565b6000818152600260205260408120546001600160a01b0316806108ea5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610ac7565b600d80546109d1906127fd565b60006001600160a01b038216610f915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610ac7565b506001600160a01b031660009081526003602052604090205490565b610fb561160c565b610fbf6000611959565b565b610fc961160c565b601455565b60606001805461091a906127fd565b6000610fe860085490565b60175490915060ff161561104a5760405162461bcd60e51b8152602060048201526024808201527f506c6561736520776169742e2054686520636f6e74726163742069732070617560448201526339b2b21760e11b6064820152608401610ac7565b6000821161109a5760405162461bcd60e51b815260206004820152601f60248201527f4d696e7420616d6f756e74206d757374206265206174206c6561737420312e006044820152606401610ac7565b6014548211156110de5760405162461bcd60e51b815260206004820152600f60248201526e2634b6b4ba1032bc31b2b2b232b21760891b6044820152606401610ac7565b6013546110eb838361276f565b11156111255760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610ac7565b600a546001600160a01b031633146112815760175462010000900460ff1615156001141561121e5761115633610c34565b6111a25760405162461bcd60e51b815260206004820152601860248201527f55736572206973206e6f742077686974656c69737465642e00000000000000006044820152606401610ac7565b336000908152601960205260409020546015546111bf848361276f565b111561121c5760405162461bcd60e51b815260206004820152602660248201527f546f6f206d756368204372617a7946726f6767657273206f6e20796f7572207760448201526530b63632ba1760d11b6064820152608401610ac7565b505b81611228826119ab565b611232919061279b565b3410156112815760405162461bcd60e51b815260206004820152601c60248201527f457721204e6f2066756e6473206f6e20796f75722077616c6c65742e000000006044820152606401610ac7565b60015b828111610b68573360009081526019602052604081208054916112a683612838565b909155506112bf9050336112ba838561276f565b611a1f565b806112c981612838565b915050611284565b610eb6338383611a39565b6112e461160c565b6017805461ff001916610100179055565b6112ff3383611733565b61131b5760405162461bcd60e51b8152600401610ac790612721565b61132784848484611b08565b50505050565b6018818154811061133d57600080fd5b6000918252602090912001546001600160a01b0316905081565b600e80546109d1906127fd565b6000818152600260205260409020546060906001600160a01b03166113e35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ac7565b601754610100900460ff1661148457600f80546113ff906127fd565b80601f016020809104026020016040519081016040528092919081815260200182805461142b906127fd565b80156114785780601f1061144d57610100808354040283529160200191611478565b820191906000526020600020905b81548152906001019060200180831161145b57829003601f168201915b50505050509050919050565b600061148e611b3b565b905060008151116114ae57604051806020016040528060008152506114dc565b806114b884611b4a565b600e6040516020016114cc93929190612577565b6040516020818303038152906040525b9392505050565b6114eb61160c565b601555565b6114f861160c565b8051610eb690600e90602084019061211e565b61151361160c565b61151f601860006121a2565b610b68601883836121c0565b61153361160c565b8051610eb690600f90602084019061211e565b61154e61160c565b6001600160a01b0381166115b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ac7565b610d3b81611959565b60006001600160e01b031982166380ac58cd60e01b14806115ed57506001600160e01b03198216635b5e139f60e01b145b806108ea57506301ffc9a760e01b6001600160e01b03198316146108ea565b600a546001600160a01b03163314610fbf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ac7565b6000818152600260205260409020546001600160a01b0316610d3b5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610ac7565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116fa82610eba565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061173f83610eba565b9050806001600160a01b0316846001600160a01b0316148061178657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806117aa5750836001600160a01b031661179f8461099d565b6001600160a01b0316145b949350505050565b826001600160a01b03166117c582610eba565b6001600160a01b0316146118295760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610ac7565b6001600160a01b03821661188b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610ac7565b611896838383611c48565b6118a16000826116c5565b6001600160a01b03831660009081526003602052604081208054600192906118ca9084906127ba565b90915550506001600160a01b03821660009081526003602052604081208054600192906118f890849061276f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60175460009062010000900460ff161515600114156119cc57505060105490565b60175462010000900460ff161580156119e6575060165482105b156119f357505060115490565b60175462010000900460ff16158015611a0d575060165482115b15611a1a57505060125490565b919050565b610eb6828260405180602001604052806000815250611d00565b816001600160a01b0316836001600160a01b03161415611a9b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ac7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b138484846117b2565b611b1f84848484611d33565b6113275760405162461bcd60e51b8152600401610ac7906126cf565b6060600d805461091a906127fd565b606081611b6e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b985780611b8281612838565b9150611b919050600a83612787565b9150611b72565b60008167ffffffffffffffff811115611bb357611bb36128bf565b6040519080825280601f01601f191660200182016040528015611bdd576020820181803683370190505b5090505b84156117aa57611bf26001836127ba565b9150611bff600a86612853565b611c0a90603061276f565b60f81b818381518110611c1f57611c1f6128a9565b60200101906001600160f81b031916908160001a905350611c41600a86612787565b9450611be1565b6001600160a01b038316611ca357611c9e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611cc6565b816001600160a01b0316836001600160a01b031614611cc657611cc68382611e40565b6001600160a01b038216611cdd57610b6881611edd565b826001600160a01b0316826001600160a01b031614610b6857610b688282611f8c565b611d0a8383611fd0565b611d176000848484611d33565b610b685760405162461bcd60e51b8152600401610ac7906126cf565b60006001600160a01b0384163b15611e3557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d7790339089908890889060040161263b565b602060405180830381600087803b158015611d9157600080fd5b505af1925050508015611dc1575060408051601f3d908101601f19168201909252611dbe918101906124cc565b60015b611e1b573d808015611def576040519150601f19603f3d011682016040523d82523d6000602084013e611df4565b606091505b508051611e135760405162461bcd60e51b8152600401610ac7906126cf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117aa565b506001949350505050565b60006001611e4d84610f27565b611e5791906127ba565b600083815260076020526040902054909150808214611eaa576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611eef906001906127ba565b60008381526009602052604081205460088054939450909284908110611f1757611f176128a9565b906000526020600020015490508060088381548110611f3857611f386128a9565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f7057611f70612893565b6001900381819060005260206000200160009055905550505050565b6000611f9783610f27565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120265760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ac7565b6000818152600260205260409020546001600160a01b03161561208b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ac7565b61209760008383611c48565b6001600160a01b03821660009081526003602052604081208054600192906120c090849061276f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461212a906127fd565b90600052602060002090601f01602090048101928261214c5760008555612192565b82601f1061216557805160ff1916838001178555612192565b82800160010185558215612192579182015b82811115612192578251825591602001919060010190612177565b5061219e929150612213565b5090565b5080546000825590600052602060002090810190610d3b9190612213565b828054828255906000526020600020908101928215612192579160200282015b828111156121925781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906121e0565b5b8082111561219e5760008155600101612214565b600067ffffffffffffffff80841115612243576122436128bf565b604051601f8501601f19908116603f0116810190828211818310171561226b5761226b6128bf565b8160405280935085815286868601111561228457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a1a57600080fd5b80358015158114611a1a57600080fd5b6000602082840312156122d757600080fd5b6114dc8261229e565b600080604083850312156122f357600080fd5b6122fc8361229e565b915061230a6020840161229e565b90509250929050565b60008060006060848603121561232857600080fd5b6123318461229e565b925061233f6020850161229e565b9150604084013590509250925092565b6000806000806080858703121561236557600080fd5b61236e8561229e565b935061237c6020860161229e565b925060408501359150606085013567ffffffffffffffff81111561239f57600080fd5b8501601f810187136123b057600080fd5b6123bf87823560208401612228565b91505092959194509250565b600080604083850312156123de57600080fd5b6123e78361229e565b915061230a602084016122b5565b6000806040838503121561240857600080fd5b6124118361229e565b946020939093013593505050565b6000806020838503121561243257600080fd5b823567ffffffffffffffff8082111561244a57600080fd5b818501915085601f83011261245e57600080fd5b81358181111561246d57600080fd5b8660208260051b850101111561248257600080fd5b60209290920196919550909350505050565b6000602082840312156124a657600080fd5b6114dc826122b5565b6000602082840312156124c157600080fd5b81356114dc816128d5565b6000602082840312156124de57600080fd5b81516114dc816128d5565b6000602082840312156124fb57600080fd5b813567ffffffffffffffff81111561251257600080fd5b8201601f8101841361252357600080fd5b6117aa84823560208401612228565b60006020828403121561254457600080fd5b5035919050565b600081518084526125638160208601602086016127d1565b601f01601f19169290920160200192915050565b60008451602061258a8285838a016127d1565b85519184019161259d8184848a016127d1565b8554920191600090600181811c90808316806125ba57607f831692505b8583108114156125d857634e487b7160e01b85526022600452602485fd5b8080156125ec57600181146125fd5761262a565b60ff1985168852838801955061262a565b60008b81526020902060005b858110156126225781548a820152908401908801612609565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061266e9083018461254b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126b057835183529284019291840191600101612694565b50909695505050505050565b6020815260006114dc602083018461254b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b6000821982111561278257612782612867565b500190565b6000826127965761279661287d565b500490565b60008160001904831182151516156127b5576127b5612867565b500290565b6000828210156127cc576127cc612867565b500390565b60005b838110156127ec5781810151838201526020016127d4565b838111156113275750506000910152565b600181811c9082168061281157607f821691505b6020821081141561283257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561284c5761284c612867565b5060010190565b6000826128625761286261287d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d3b57600080fdfea2646970667358221220cede08daf7bff6b6774851b43d1a1fdd2523e31c9d9bab20725be535e510a19464736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000d4372617a7946726f676765727300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000243460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e746f45477058555152584751663573756a3269685a74773437684e3439346d526250726e374a72655862322f00000000000000000000000000000000000000000000000000000000000000000000000000000000004a697066733a2f2f516d6144484b436a794d31614156723550745345765a365432566f66376b665931374b44415a4c6f6d74567977412f68696464656e5f6d657461646174612e6a736f6e00000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): CrazyFroggers
Arg [1] : _symbol (string): CF
Arg [2] : _initBaseURI (string): ipfs://QmNtoEGpXUQRXGQf5suj2ihZtw47hN494mRbPrn7JreXb2/
Arg [3] : _initNotRevealedUri (string): ipfs://QmaDHKCjyM1aAVr5PtSEvZ6T2Vof7kfY17KDAZLomtVywA/hidden_metadata.json

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 4372617a7946726f676765727300000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4346000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d4e746f45477058555152584751663573756a3269685a74
Arg [10] : 773437684e3439346d526250726e374a72655862322f00000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000004a
Arg [12] : 697066733a2f2f516d6144484b436a794d31614156723550745345765a365432
Arg [13] : 566f66376b665931374b44415a4c6f6d74567977412f68696464656e5f6d6574
Arg [14] : 61646174612e6a736f6e00000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

52692:4982:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45596:224;;;;;;;;;;-1:-1:-1;45596:224:0;;;;;:::i;:::-;;:::i;:::-;;;8427:14:1;;8420:22;8402:41;;8390:2;8375:18;45596:224:0;;;;;;;;57192:73;;;;;;;;;;-1:-1:-1;57192:73:0;;;;;:::i;:::-;;:::i;:::-;;32330:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33843:171::-;;;;;;;;;;-1:-1:-1;33843:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7088:32:1;;;7070:51;;7058:2;7043:18;33843:171:0;6924:203:1;52946:28:0;;;;;;;;;;;;;:::i;33360:417::-;;;;;;;;;;-1:-1:-1;33360:417:0;;;;;:::i;:::-;;:::i;53038:30::-;;;;;;;;;;;;;;;;;;;17709:25:1;;;17697:2;17682:18;53038:30:0;17563:177:1;46236:113:0;;;;;;;;;;-1:-1:-1;46324:10:0;:17;46236:113;;53469:55;;;;;;;;;;-1:-1:-1;53469:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;53150:34;;;;;;;;;;;;;;;;34543:336;;;;;;;;;;-1:-1:-1;34543:336:0;;;;;:::i;:::-;;:::i;45904:256::-;;;;;;;;;;-1:-1:-1;45904:256:0;;;;;:::i;:::-;;:::i;55238:242::-;;;;;;;;;;-1:-1:-1;55238:242:0;;;;;:::i;:::-;;:::i;57273:95::-;;;;;;;;;;-1:-1:-1;57273:95:0;;;;;:::i;:::-;;:::i;57526:145::-;;;:::i;34950:185::-;;;;;;;;;;-1:-1:-1;34950:185:0;;;;;:::i;:::-;;:::i;55564:350::-;;;;;;;;;;-1:-1:-1;55564:350:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;56624:80::-;;;;;;;;;;-1:-1:-1;56624:80:0;;;;;:::i;:::-;;:::i;53233:32::-;;;;;;;;;;;;;;;;46426:233;;;;;;;;;;-1:-1:-1;46426:233:0;;;;;:::i;:::-;;:::i;53316:28::-;;;;;;;;;;-1:-1:-1;53316:28:0;;;;;;;;;;;56832:98;;;;;;;;;;-1:-1:-1;56832:98:0;;;;;:::i;:::-;;:::i;53286:25::-;;;;;;;;;;-1:-1:-1;53286:25:0;;;;;;;;53073:35;;;;;;;;;;;;;;;;32041:222;;;;;;;;;;-1:-1:-1;32041:222:0;;;;;:::i;:::-;;:::i;52878:21::-;;;;;;;;;;;;;:::i;31772:207::-;;;;;;;;;;-1:-1:-1;31772:207:0;;;;;:::i;:::-;;:::i;10859:103::-;;;;;;;;;;;;;:::i;56710:116::-;;;;;;;;;;-1:-1:-1;56710:116:0;;;;;:::i;:::-;;:::i;10211:87::-;;;;;;;;;;-1:-1:-1;10284:6:0;;-1:-1:-1;;;;;10284:6:0;10211:87;;32499:104;;;;;;;;;;;;;:::i;53349:34::-;;;;;;;;;;-1:-1:-1;53349:34:0;;;;;;;;;;;54274:956;;;;;;:::i;:::-;;:::i;34086:155::-;;;;;;;;;;-1:-1:-1;34086:155:0;;;;;:::i;:::-;;:::i;56439:65::-;;;;;;;;;;;;;:::i;53000:33::-;;;;;;;;;;;;;;;;35206:323;;;;;;;;;;-1:-1:-1;35206:323:0;;;;;:::i;:::-;;:::i;53427:37::-;;;;;;;;;;-1:-1:-1;53427:37:0;;;;;:::i;:::-;;:::i;53189:39::-;;;;;;;;;;;;;;;;55486:72;;;;;;;;;;-1:-1:-1;55548:4:0;;55486:72;;53388:30;;;;;;;;;;-1:-1:-1;53388:30:0;;;;;;;;;;;52904:37;;;;;;;;;;;;;:::i;55920:497::-;;;;;;;;;;-1:-1:-1;55920:497:0;;;;;:::i;:::-;;:::i;56512:104::-;;;;;;;;;;-1:-1:-1;56512:104:0;;;;;:::i;:::-;;:::i;53113:32::-;;;;;;;;;;;;;;;;56936:122;;;;;;;;;;-1:-1:-1;56936:122:0;;;;;:::i;:::-;;:::i;34312:164::-;;;;;;;;;;-1:-1:-1;34312:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34433:25:0;;;34409:4;34433:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34312:164;57376:144;;;;;;;;;;-1:-1:-1;57376:144:0;;;;;:::i;:::-;;:::i;57066:120::-;;;;;;;;;;-1:-1:-1;57066:120:0;;;;;:::i;:::-;;:::i;11117:201::-;;;;;;;;;;-1:-1:-1;11117:201:0;;;;;:::i;:::-;;:::i;45596:224::-;45698:4;-1:-1:-1;;;;;;45722:50:0;;-1:-1:-1;;;45722:50:0;;:90;;;45776:36;45800:11;45776:23;:36::i;:::-;45715:97;45596:224;-1:-1:-1;;45596:224:0:o;57192:73::-;10097:13;:11;:13::i;:::-;57244:6:::1;:15:::0;;-1:-1:-1;;57244:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;57192:73::o;32330:100::-;32384:13;32417:5;32410:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32330:100;:::o;33843:171::-;33919:7;33939:23;33954:7;33939:14;:23::i;:::-;-1:-1:-1;33982:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33982:24:0;;33843:171::o;52946:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33360:417::-;33441:13;33457:23;33472:7;33457:14;:23::i;:::-;33441:39;;33505:5;-1:-1:-1;;;;;33499:11:0;:2;-1:-1:-1;;;;;33499:11:0;;;33491:57;;;;-1:-1:-1;;;33491:57:0;;15481:2:1;33491:57:0;;;15463:21:1;15520:2;15500:18;;;15493:30;15559:34;15539:18;;;15532:62;-1:-1:-1;;;15610:18:1;;;15603:31;15651:19;;33491:57:0;;;;;;;;;8842:10;-1:-1:-1;;;;;33583:21:0;;;;:62;;-1:-1:-1;33608:37:0;33625:5;8842:10;34312:164;:::i;33608:37::-;33561:174;;;;-1:-1:-1;;;33561:174:0;;13152:2:1;33561:174:0;;;13134:21:1;13191:2;13171:18;;;13164:30;13230:34;13210:18;;;13203:62;13301:32;13281:18;;;13274:60;13351:19;;33561:174:0;12950:426:1;33561:174:0;33748:21;33757:2;33761:7;33748:8;:21::i;:::-;33430:347;33360:417;;:::o;34543:336::-;34738:41;8842:10;34771:7;34738:18;:41::i;:::-;34730:100;;;;-1:-1:-1;;;34730:100:0;;;;;;;:::i;:::-;34843:28;34853:4;34859:2;34863:7;34843:9;:28::i;45904:256::-;46001:7;46037:23;46054:5;46037:16;:23::i;:::-;46029:5;:31;46021:87;;;;-1:-1:-1;;;46021:87:0;;8880:2:1;46021:87:0;;;8862:21:1;8919:2;8899:18;;;8892:30;8958:34;8938:18;;;8931:62;-1:-1:-1;;;9009:18:1;;;9002:41;9060:19;;46021:87:0;8678:407:1;46021:87:0;-1:-1:-1;;;;;;46126:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;45904:256::o;55238:242::-;55297:4;;55310:146;55334:20;:27;55330:31;;55310:146;;;55408:5;-1:-1:-1;;;;;55381:32:0;:20;55402:1;55381:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;55381:23:0;:32;55377:72;;;-1:-1:-1;55435:4:0;;55238:242;-1:-1:-1;;55238:242:0:o;55377:72::-;55363:3;;;;:::i;:::-;;;;55310:146;;;-1:-1:-1;55469:5:0;;55238:242;-1:-1:-1;;55238:242:0:o;57273:95::-;10097:13;:11;:13::i;:::-;57338:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;57338:24:0;;::::1;::::0;;;::::1;::::0;;57273:95::o;57526:145::-;10097:13;:11;:13::i;:::-;57579:7:::1;57600;10284:6:::0;;-1:-1:-1;;;;;10284:6:0;;10211:87;57600:7:::1;-1:-1:-1::0;;;;;57592:21:0::1;57621;57592:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57578:69;;;57662:2;57654:11;;;::::0;::::1;;57571:100;57526:145::o:0;34950:185::-;35088:39;35105:4;35111:2;35115:7;35088:39;;;;;;;;;;;;:16;:39::i;55564:350::-;55639:16;55669:23;55695:17;55705:6;55695:9;:17::i;:::-;55669:43;;55719:25;55761:15;55747:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55747:30:0;;55719:58;;55789:9;55784:103;55804:15;55800:1;:19;55784:103;;;55849:30;55869:6;55877:1;55849:19;:30::i;:::-;55835:8;55844:1;55835:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;55821:3;;;;:::i;:::-;;;;55784:103;;;-1:-1:-1;55900:8:0;55564:350;-1:-1:-1;;;55564:350:0:o;56624:80::-;10097:13;:11;:13::i;:::-;56683:4:::1;:15:::0;56624:80::o;46426:233::-;46501:7;46537:30;46324:10;:17;;46236:113;46537:30;46529:5;:38;46521:95;;;;-1:-1:-1;;;46521:95:0;;16600:2:1;46521:95:0;;;16582:21:1;16639:2;16619:18;;;16612:30;16678:34;16658:18;;;16651:62;-1:-1:-1;;;16729:18:1;;;16722:42;16781:19;;46521:95:0;16398:408:1;46521:95:0;46634:10;46645:5;46634:17;;;;;;;;:::i;:::-;;;;;;;;;46627:24;;46426:233;;;:::o;56832:98::-;10097:13;:11;:13::i;:::-;56903:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;56832:98:::0;:::o;32041:222::-;32113:7;32149:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32149:16:0;32184:19;32176:56;;;;-1:-1:-1;;;32176:56:0;;14721:2:1;32176:56:0;;;14703:21:1;14760:2;14740:18;;;14733:30;-1:-1:-1;;;14779:18:1;;;14772:54;14843:18;;32176:56:0;14519:348:1;52878:21:0;;;;;;;:::i;31772:207::-;31844:7;-1:-1:-1;;;;;31872:19:0;;31864:73;;;;-1:-1:-1;;;31864:73:0;;12742:2:1;31864:73:0;;;12724:21:1;12781:2;12761:18;;;12754:30;12820:34;12800:18;;;12793:62;-1:-1:-1;;;12871:18:1;;;12864:39;12920:19;;31864:73:0;12540:405:1;31864:73:0;-1:-1:-1;;;;;;31955:16:0;;;;;:9;:16;;;;;;;31772:207::o;10859:103::-;10097:13;:11;:13::i;:::-;10924:30:::1;10951:1;10924:18;:30::i;:::-;10859:103::o:0;56710:116::-;10097:13;:11;:13::i;:::-;56787::::1;:33:::0;56710:116::o;32499:104::-;32555:13;32588:7;32581:14;;;;;:::i;54274:956::-;54331:14;54348:13;46324:10;:17;;46236:113;54348:13;54377:6;;54331:30;;-1:-1:-1;54377:6:0;;54376:7;54368:56;;;;-1:-1:-1;;;54368:56:0;;10881:2:1;54368:56:0;;;10863:21:1;10920:2;10900:18;;;10893:30;10959:34;10939:18;;;10932:62;-1:-1:-1;;;11010:18:1;;;11003:34;11054:19;;54368:56:0;10679:400:1;54368:56:0;54453:1;54439:11;:15;54431:59;;;;-1:-1:-1;;;54431:59:0;;16240:2:1;54431:59:0;;;16222:21:1;16279:2;16259:18;;;16252:30;16318:33;16298:18;;;16291:61;16369:18;;54431:59:0;16038:355:1;54431:59:0;54520:13;;54505:11;:28;;54497:56;;;;-1:-1:-1;;;54497:56:0;;12398:2:1;54497:56:0;;;12380:21:1;12437:2;12417:18;;;12410:30;-1:-1:-1;;;12456:18:1;;;12449:45;12511:18;;54497:56:0;12196:339:1;54497:56:0;54592:9;;54568:20;54577:11;54568:6;:20;:::i;:::-;:33;;54560:55;;;;-1:-1:-1;;;54560:55:0;;17428:2:1;54560:55:0;;;17410:21:1;17467:1;17447:18;;;17440:29;-1:-1:-1;;;17485:18:1;;;17478:39;17534:18;;54560:55:0;17226:332:1;54560:55:0;10284:6;;-1:-1:-1;;;;;10284:6:0;54628:10;:21;54624:451;;54665:15;;;;;;;:23;;54684:4;54665:23;54662:309;;;54713:25;54727:10;54713:13;:25::i;:::-;54705:62;;;;-1:-1:-1;;;54705:62:0;;11286:2:1;54705:62:0;;;11268:21:1;11325:2;11305:18;;;11298:30;11364:26;11344:18;;;11337:54;11408:18;;54705:62:0;11084:348:1;54705:62:0;54830:10;54782:24;54809:32;;;:20;:32;;;;;;54898:18;;54864:30;54883:11;54809:32;54864:30;:::i;:::-;:52;;54856:103;;;;-1:-1:-1;;;54856:103:0;;15074:2:1;54856:103:0;;;15056:21:1;15113:2;15093:18;;;15086:30;15152:34;15132:18;;;15125:62;-1:-1:-1;;;15203:18:1;;;15196:36;15249:19;;54856:103:0;14872:402:1;54856:103:0;54690:281;54662:309;55023:11;55002:18;55013:6;55002:10;:18::i;:::-;:32;;;;:::i;:::-;54989:9;:45;;54981:86;;;;-1:-1:-1;;;54981:86:0;;15883:2:1;54981:86:0;;;15865:21:1;15922:2;15902:18;;;15895:30;15961;15941:18;;;15934:58;16009:18;;54981:86:0;15681:352:1;54981:86:0;55104:1;55087:138;55112:11;55107:1;:16;55087:138;;55162:10;55141:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;55184:33:0;;-1:-1:-1;55194:10:0;55206;55215:1;55206:6;:10;:::i;:::-;55184:9;:33::i;:::-;55125:3;;;;:::i;:::-;;;;55087:138;;34086:155;34181:52;8842:10;34214:8;34224;34181:18;:52::i;56439:65::-;10097:13;:11;:13::i;:::-;56483:8:::1;:15:::0;;-1:-1:-1;;56483:15:0::1;;;::::0;;56439:65::o;35206:323::-;35380:41;8842:10;35413:7;35380:18;:41::i;:::-;35372:100;;;;-1:-1:-1;;;35372:100:0;;;;;;;:::i;:::-;35483:38;35497:4;35503:2;35507:7;35516:4;35483:13;:38::i;:::-;35206:323;;;;:::o;53427:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53427:37:0;;-1:-1:-1;53427:37:0;:::o;52904:::-;;;;;;;:::i;55920:497::-;37101:4;37125:16;;;:7;:16;;;;;;56018:13;;-1:-1:-1;;;;;37125:16:0;56043:97;;;;-1:-1:-1;;;56043:97:0;;14305:2:1;56043:97:0;;;14287:21:1;14344:2;14324:18;;;14317:30;14383:34;14363:18;;;14356:62;-1:-1:-1;;;14434:18:1;;;14427:45;14489:19;;56043:97:0;14103:411:1;56043:97:0;56156:8;;;;;;;56153:62;;56193:14;56186:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55920:497;;;:::o;56153:62::-;56223:28;56254:10;:8;:10::i;:::-;56223:41;;56309:1;56284:14;56278:28;:32;:133;;;;;;;;;;;;;;;;;56346:14;56362:18;:7;:16;:18::i;:::-;56382:13;56329:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56278:133;56271:140;55920:497;-1:-1:-1;;;55920:497:0:o;56512:104::-;10097:13;:11;:13::i;:::-;56583:18:::1;:27:::0;56512:104::o;56936:122::-;10097:13;:11;:13::i;:::-;57019:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;57376:144::-:0;10097:13;:11;:13::i;:::-;57451:27:::1;57458:20;;57451:27;:::i;:::-;57485:29;:20;57508:6:::0;;57485:29:::1;:::i;57066:120::-:0;10097:13;:11;:13::i;:::-;57148:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;11117:201::-:0;10097:13;:11;:13::i;:::-;-1:-1:-1;;;;;11206:22:0;::::1;11198:73;;;::::0;-1:-1:-1;;;11198:73:0;;9711:2:1;11198:73:0::1;::::0;::::1;9693:21:1::0;9750:2;9730:18;;;9723:30;9789:34;9769:18;;;9762:62;-1:-1:-1;;;9840:18:1;;;9833:36;9886:19;;11198:73:0::1;9509:402:1::0;11198:73:0::1;11282:28;11301:8;11282:18;:28::i;31403:305::-:0;31505:4;-1:-1:-1;;;;;;31542:40:0;;-1:-1:-1;;;31542:40:0;;:105;;-1:-1:-1;;;;;;;31599:48:0;;-1:-1:-1;;;31599:48:0;31542:105;:158;;;-1:-1:-1;;;;;;;;;;23174:40:0;;;31664:36;23065:157;10376:132;10284:6;;-1:-1:-1;;;;;10284:6:0;8842:10;10440:23;10432:68;;;;-1:-1:-1;;;10432:68:0;;13944:2:1;10432:68:0;;;13926:21:1;;;13963:18;;;13956:30;14022:34;14002:18;;;13995:62;14074:18;;10432:68:0;13742:356:1;41818:135:0;37101:4;37125:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37125:16:0;41892:53;;;;-1:-1:-1;;;41892:53:0;;14721:2:1;41892:53:0;;;14703:21:1;14760:2;14740:18;;;14733:30;-1:-1:-1;;;14779:18:1;;;14772:54;14843:18;;41892:53:0;14519:348:1;41097:174:0;41172:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41172:29:0;-1:-1:-1;;;;;41172:29:0;;;;;;;;:24;;41226:23;41172:24;41226:14;:23::i;:::-;-1:-1:-1;;;;;41217:46:0;;;;;;;;;;;41097:174;;:::o;37330:264::-;37423:4;37440:13;37456:23;37471:7;37456:14;:23::i;:::-;37440:39;;37509:5;-1:-1:-1;;;;;37498:16:0;:7;-1:-1:-1;;;;;37498:16:0;;:52;;;-1:-1:-1;;;;;;34433:25:0;;;34409:4;34433:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37518:32;37498:87;;;;37578:7;-1:-1:-1;;;;;37554:31:0;:20;37566:7;37554:11;:20::i;:::-;-1:-1:-1;;;;;37554:31:0;;37498:87;37490:96;37330:264;-1:-1:-1;;;;37330:264:0:o;40353:625::-;40512:4;-1:-1:-1;;;;;40485:31:0;:23;40500:7;40485:14;:23::i;:::-;-1:-1:-1;;;;;40485:31:0;;40477:81;;;;-1:-1:-1;;;40477:81:0;;10118:2:1;40477:81:0;;;10100:21:1;10157:2;10137:18;;;10130:30;10196:34;10176:18;;;10169:62;-1:-1:-1;;;10247:18:1;;;10240:35;10292:19;;40477:81:0;9916:401:1;40477:81:0;-1:-1:-1;;;;;40577:16:0;;40569:65;;;;-1:-1:-1;;;40569:65:0;;11639:2:1;40569:65:0;;;11621:21:1;11678:2;11658:18;;;11651:30;11717:34;11697:18;;;11690:62;-1:-1:-1;;;11768:18:1;;;11761:34;11812:19;;40569:65:0;11437:400:1;40569:65:0;40647:39;40668:4;40674:2;40678:7;40647:20;:39::i;:::-;40751:29;40768:1;40772:7;40751:8;:29::i;:::-;-1:-1:-1;;;;;40793:15:0;;;;;;:9;:15;;;;;:20;;40812:1;;40793:15;:20;;40812:1;;40793:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40824:13:0;;;;;;:9;:13;;;;;:18;;40841:1;;40824:13;:18;;40841:1;;40824:18;:::i;:::-;;;;-1:-1:-1;;40853:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40853:21:0;-1:-1:-1;;;;;40853:21:0;;;;;;;;;40892:27;;40853:16;;40892:27;;;;;;;33430:347;33360:417;;:::o;11478:191::-;11571:6;;;-1:-1:-1;;;;;11588:17:0;;;-1:-1:-1;;;;;;11588:17:0;;;;;;;11621:40;;11571:6;;;11588:17;11571:6;;11621:40;;11552:16;;11621:40;11541:128;11478:191;:::o;53911:344::-;53997:15;;53971:13;;53997:15;;;;;:23;;54016:4;53997:23;53994:63;;;-1:-1:-1;;54039:7:0;;;53911:344::o;53994:63::-;54068:15;;;;;;;:24;;;:48;;;54106:10;;54096:7;:20;54068:48;54065:85;;;-1:-1:-1;;54135:4:0;;;53911:344::o;54065:85::-;54161:15;;;;;;;:24;;;:48;;;54199:10;;54189:7;:20;54161:48;54158:90;;;-1:-1:-1;;54228:9:0;;;53911:344::o;54158:90::-;53911:344;;;:::o;37936:110::-;38012:26;38022:2;38026:7;38012:26;;;;;;;;;;;;:9;:26::i;41414:315::-;41569:8;-1:-1:-1;;;;;41560:17:0;:5;-1:-1:-1;;;;;41560:17:0;;;41552:55;;;;-1:-1:-1;;;41552:55:0;;12044:2:1;41552:55:0;;;12026:21:1;12083:2;12063:18;;;12056:30;12122:27;12102:18;;;12095:55;12167:18;;41552:55:0;11842:349:1;41552:55:0;-1:-1:-1;;;;;41618:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;41618:46:0;;;;;;;;;;41680:41;;8402::1;;;41680::0;;8375:18:1;41680:41:0;;;;;;;41414:315;;;:::o;36410:313::-;36566:28;36576:4;36582:2;36586:7;36566:9;:28::i;:::-;36613:47;36636:4;36642:2;36646:7;36655:4;36613:22;:47::i;:::-;36605:110;;;;-1:-1:-1;;;36605:110:0;;;;;;;:::i;53803:102::-;53863:13;53892:7;53885:14;;;;;:::i;6016:723::-;6072:13;6293:10;6289:53;;-1:-1:-1;;6320:10:0;;;;;;;;;;;;-1:-1:-1;;;6320:10:0;;;;;6016:723::o;6289:53::-;6367:5;6352:12;6408:78;6415:9;;6408:78;;6441:8;;;;:::i;:::-;;-1:-1:-1;6464:10:0;;-1:-1:-1;6472:2:0;6464:10;;:::i;:::-;;;6408:78;;;6496:19;6528:6;6518:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6518:17:0;;6496:39;;6546:154;6553:10;;6546:154;;6580:11;6590:1;6580:11;;:::i;:::-;;-1:-1:-1;6649:10:0;6657:2;6649:5;:10;:::i;:::-;6636:24;;:2;:24;:::i;:::-;6623:39;;6606:6;6613;6606:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6606:56:0;;;;;;;;-1:-1:-1;6677:11:0;6686:2;6677:11;;:::i;:::-;;;6546:154;;47272:589;-1:-1:-1;;;;;47478:18:0;;47474:187;;47513:40;47545:7;48688:10;:17;;48661:24;;;;:15;:24;;;;;:44;;;48716:24;;;;;;;;;;;;48584:164;47513:40;47474:187;;;47583:2;-1:-1:-1;;;;;47575:10:0;:4;-1:-1:-1;;;;;47575:10:0;;47571:90;;47602:47;47635:4;47641:7;47602:32;:47::i;:::-;-1:-1:-1;;;;;47675:16:0;;47671:183;;47708:45;47745:7;47708:36;:45::i;47671:183::-;47781:4;-1:-1:-1;;;;;47775:10:0;:2;-1:-1:-1;;;;;47775:10:0;;47771:83;;47802:40;47830:2;47834:7;47802:27;:40::i;38273:319::-;38402:18;38408:2;38412:7;38402:5;:18::i;:::-;38453:53;38484:1;38488:2;38492:7;38501:4;38453:22;:53::i;:::-;38431:153;;;;-1:-1:-1;;;38431:153:0;;;;;;;:::i;42517:853::-;42671:4;-1:-1:-1;;;;;42692:13:0;;13204:19;:23;42688:675;;42728:71;;-1:-1:-1;;;42728:71:0;;-1:-1:-1;;;;;42728:36:0;;;;;:71;;8842:10;;42779:4;;42785:7;;42794:4;;42728:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42728:71:0;;;;;;;;-1:-1:-1;;42728:71:0;;;;;;;;;;;;:::i;:::-;;;42724:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42969:13:0;;42965:328;;43012:60;;-1:-1:-1;;;43012:60:0;;;;;;;:::i;42965:328::-;43243:6;43237:13;43228:6;43224:2;43220:15;43213:38;42724:584;-1:-1:-1;;;;;;42850:51:0;-1:-1:-1;;;42850:51:0;;-1:-1:-1;42843:58:0;;42688:675;-1:-1:-1;43347:4:0;42517:853;;;;;;:::o;49375:988::-;49641:22;49691:1;49666:22;49683:4;49666:16;:22::i;:::-;:26;;;;:::i;:::-;49703:18;49724:26;;;:17;:26;;;;;;49641:51;;-1:-1:-1;49857:28:0;;;49853:328;;-1:-1:-1;;;;;49924:18:0;;49902:19;49924:18;;;:12;:18;;;;;;;;:34;;;;;;;;;49975:30;;;;;;:44;;;50092:30;;:17;:30;;;;;:43;;;49853:328;-1:-1:-1;50277:26:0;;;;:17;:26;;;;;;;;50270:33;;;-1:-1:-1;;;;;50321:18:0;;;;;:12;:18;;;;;:34;;;;;;;50314:41;49375:988::o;50658:1079::-;50936:10;:17;50911:22;;50936:21;;50956:1;;50936:21;:::i;:::-;50968:18;50989:24;;;:15;:24;;;;;;51362:10;:26;;50911:46;;-1:-1:-1;50989:24:0;;50911:46;;51362:26;;;;;;:::i;:::-;;;;;;;;;51340:48;;51426:11;51401:10;51412;51401:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;51506:28;;;:15;:28;;;;;;;:41;;;51678:24;;;;;51671:31;51713:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;50729:1008;;;50658:1079;:::o;48162:221::-;48247:14;48264:20;48281:2;48264:16;:20::i;:::-;-1:-1:-1;;;;;48295:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;48340:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;48162:221:0:o;38928:439::-;-1:-1:-1;;;;;39008:16:0;;39000:61;;;;-1:-1:-1;;;39000:61:0;;13583:2:1;39000:61:0;;;13565:21:1;;;13602:18;;;13595:30;13661:34;13641:18;;;13634:62;13713:18;;39000:61:0;13381:356:1;39000:61:0;37101:4;37125:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37125:16:0;:30;39072:58;;;;-1:-1:-1;;;39072:58:0;;10524:2:1;39072:58:0;;;10506:21:1;10563:2;10543:18;;;10536:30;10602;10582:18;;;10575:58;10650:18;;39072:58:0;10322:352:1;39072:58:0;39143:45;39172:1;39176:2;39180:7;39143:20;:45::i;:::-;-1:-1:-1;;;;;39201:13:0;;;;;;:9;:13;;;;;:18;;39218:1;;39201:13;:18;;39218:1;;39201:18;:::i;:::-;;;;-1:-1:-1;;39230:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39230:21:0;-1:-1:-1;;;;;39230:21:0;;;;;;;;39269:33;;39230:16;;;39269:33;;39230:16;;39269:33;56903:21:::1;56832:98:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:245::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:30;3985:5;3961:30;:::i;4026:249::-;4095:6;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:450::-;4349:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;4491:18;4483:6;4480:30;4477:50;;;4523:1;4520;4513:12;4477:50;4546:22;;4599:4;4591:13;;4587:27;-1:-1:-1;4577:55:1;;4628:1;4625;4618:12;4577:55;4651:73;4716:7;4711:2;4698:16;4693:2;4689;4685:11;4651:73;:::i;4735:180::-;4794:6;4847:2;4835:9;4826:7;4822:23;4818:32;4815:52;;;4863:1;4860;4853:12;4815:52;-1:-1:-1;4886:23:1;;4735:180;-1:-1:-1;4735:180:1:o;4920:257::-;4961:3;4999:5;4993:12;5026:6;5021:3;5014:19;5042:63;5098:6;5091:4;5086:3;5082:14;5075:4;5068:5;5064:16;5042:63;:::i;:::-;5159:2;5138:15;-1:-1:-1;;5134:29:1;5125:39;;;;5166:4;5121:50;;4920:257;-1:-1:-1;;4920:257:1:o;5182:1527::-;5406:3;5444:6;5438:13;5470:4;5483:51;5527:6;5522:3;5517:2;5509:6;5505:15;5483:51;:::i;:::-;5597:13;;5556:16;;;;5619:55;5597:13;5556:16;5641:15;;;5619:55;:::i;:::-;5763:13;;5696:20;;;5736:1;;5823;5845:18;;;;5898;;;;5925:93;;6003:4;5993:8;5989:19;5977:31;;5925:93;6066:2;6056:8;6053:16;6033:18;6030:40;6027:167;;;-1:-1:-1;;;6093:33:1;;6149:4;6146:1;6139:15;6179:4;6100:3;6167:17;6027:167;6210:18;6237:110;;;;6361:1;6356:328;;;;6203:481;;6237:110;-1:-1:-1;;6272:24:1;;6258:39;;6317:20;;;;-1:-1:-1;6237:110:1;;6356:328;17818:1;17811:14;;;17855:4;17842:18;;6451:1;6465:169;6479:8;6476:1;6473:15;6465:169;;;6561:14;;6546:13;;;6539:37;6604:16;;;;6496:10;;6465:169;;;6469:3;;6665:8;6658:5;6654:20;6647:27;;6203:481;-1:-1:-1;6700:3:1;;5182:1527;-1:-1:-1;;;;;;;;;;;5182:1527:1:o;7132:488::-;-1:-1:-1;;;;;7401:15:1;;;7383:34;;7453:15;;7448:2;7433:18;;7426:43;7500:2;7485:18;;7478:34;;;7548:3;7543:2;7528:18;;7521:31;;;7326:4;;7569:45;;7594:19;;7586:6;7569:45;:::i;:::-;7561:53;7132:488;-1:-1:-1;;;;;;7132:488:1:o;7625:632::-;7796:2;7848:21;;;7918:13;;7821:18;;;7940:22;;;7767:4;;7796:2;8019:15;;;;7993:2;7978:18;;;7767:4;8062:169;8076:6;8073:1;8070:13;8062:169;;;8137:13;;8125:26;;8206:15;;;;8171:12;;;;8098:1;8091:9;8062:169;;;-1:-1:-1;8248:3:1;;7625:632;-1:-1:-1;;;;;;7625:632:1:o;8454:219::-;8603:2;8592:9;8585:21;8566:4;8623:44;8663:2;8652:9;8648:18;8640:6;8623:44;:::i;9090:414::-;9292:2;9274:21;;;9331:2;9311:18;;;9304:30;9370:34;9365:2;9350:18;;9343:62;-1:-1:-1;;;9436:2:1;9421:18;;9414:48;9494:3;9479:19;;9090:414::o;16811:410::-;17013:2;16995:21;;;17052:2;17032:18;;;17025:30;17091:34;17086:2;17071:18;;17064:62;-1:-1:-1;;;17157:2:1;17142:18;;17135:44;17211:3;17196:19;;16811:410::o;17871:128::-;17911:3;17942:1;17938:6;17935:1;17932:13;17929:39;;;17948:18;;:::i;:::-;-1:-1:-1;17984:9:1;;17871:128::o;18004:120::-;18044:1;18070;18060:35;;18075:18;;:::i;:::-;-1:-1:-1;18109:9:1;;18004:120::o;18129:168::-;18169:7;18235:1;18231;18227:6;18223:14;18220:1;18217:21;18212:1;18205:9;18198:17;18194:45;18191:71;;;18242:18;;:::i;:::-;-1:-1:-1;18282:9:1;;18129:168::o;18302:125::-;18342:4;18370:1;18367;18364:8;18361:34;;;18375:18;;:::i;:::-;-1:-1:-1;18412:9:1;;18302:125::o;18432:258::-;18504:1;18514:113;18528:6;18525:1;18522:13;18514:113;;;18604:11;;;18598:18;18585:11;;;18578:39;18550:2;18543:10;18514:113;;;18645:6;18642:1;18639:13;18636:48;;;-1:-1:-1;;18680:1:1;18662:16;;18655:27;18432:258::o;18695:380::-;18774:1;18770:12;;;;18817;;;18838:61;;18892:4;18884:6;18880:17;18870:27;;18838:61;18945:2;18937:6;18934:14;18914:18;18911:38;18908:161;;;18991:10;18986:3;18982:20;18979:1;18972:31;19026:4;19023:1;19016:15;19054:4;19051:1;19044:15;18908:161;;18695:380;;;:::o;19080:135::-;19119:3;-1:-1:-1;;19140:17:1;;19137:43;;;19160:18;;:::i;:::-;-1:-1:-1;19207:1:1;19196:13;;19080:135::o;19220:112::-;19252:1;19278;19268:35;;19283:18;;:::i;:::-;-1:-1:-1;19317:9:1;;19220:112::o;19337:127::-;19398:10;19393:3;19389:20;19386:1;19379:31;19429:4;19426:1;19419:15;19453:4;19450:1;19443:15;19469:127;19530:10;19525:3;19521:20;19518:1;19511:31;19561:4;19558:1;19551:15;19585:4;19582:1;19575:15;19601:127;19662:10;19657:3;19653:20;19650:1;19643:31;19693:4;19690:1;19683:15;19717:4;19714:1;19707:15;19733:127;19794:10;19789:3;19785:20;19782:1;19775:31;19825:4;19822:1;19815:15;19849:4;19846:1;19839:15;19865:127;19926:10;19921:3;19917:20;19914:1;19907:31;19957:4;19954:1;19947:15;19981:4;19978:1;19971:15;19997:131;-1:-1:-1;;;;;;20071:32:1;;20061:43;;20051:71;;20118:1;20115;20108:12

Swarm Source

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