ETH Price: $3,342.00 (-0.74%)
Gas: 4 Gwei

Token

Fridgits (FR)
 

Overview

Max Total Supply

1,714 FR

Holders

272

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
dailey.eth
Balance
3 FR
0xf90f8725237125ecefe5696cd2b54d9d6934d467
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Fridgits

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(updatedIndex);
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

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

    /**
     * @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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: contracts/Fridgits.sol


pragma solidity ^0.8.4;





contract Fridgits is ERC721A, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;
    uint256 public cost = 0.05 ether;
    uint256 public maxSupply = 10000;
    uint256 public maxMintAmount = 100;
    uint256 public nftPerAddressLimit = 100;
    bool public paused = false;
    bool public revealed = false;
    bool public onlyWhitelisted = true;
    address[] public whitelistedAddresses;

    mapping(address => uint256) public addressMintedBalance;
    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedUri
    ) ERC721A(_name, _symbol) {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
    }

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

    // public
    function mint(uint256 _mintAmount) public payable 
    {
        require(!paused, "the contract is paused");
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

        if (msg.sender != owner()) {
            if(onlyWhitelisted == true) {
                require(isWhitelisted(msg.sender), "user is not whitelisted");
                uint256 ownerMintedCount = addressMintedBalance[msg.sender];
                require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
            }
            require(msg.value >= cost * _mintAmount, "insufficient funds");
        }
        
        _safeMint(msg.sender, _mintAmount);
    }

    function isWhitelisted(address _user) public view returns (bool) 
    {
        for (uint i = 0; i < whitelistedAddresses.length; i++) {
            if (whitelistedAddresses[i] == _user) {
                return true;
            }
        }
        return false;
    }

    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"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"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"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600991906200020a565b5066b1a2bc2ec50000600b55612710600c556064600d819055600e55600f805462ffffff1916620100001790553480156200006257600080fd5b5060405162002abb38038062002abb833981016040819052620000859162000367565b8351849084906200009e9060019060208501906200020a565b508051620000b49060029060208401906200020a565b505050620000d1620000cb620000f160201b60201c565b620000f5565b620000dc8262000147565b620000e781620001af565b5050505062000473565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620001965760405162461bcd60e51b8152602060048201819052602482015260008051602062002a9b83398151915260448201526064015b60405180910390fd5b8051620001ab9060089060208401906200020a565b5050565b6007546001600160a01b03163314620001fa5760405162461bcd60e51b8152602060048201819052602482015260008051602062002a9b83398151915260448201526064016200018d565b8051620001ab90600a9060208401905b828054620002189062000420565b90600052602060002090601f0160209004810192826200023c576000855562000287565b82601f106200025757805160ff191683800117855562000287565b8280016001018555821562000287579182015b82811115620002875782518255916020019190600101906200026a565b506200029592915062000299565b5090565b5b808211156200029557600081556001016200029a565b600082601f830112620002c257600080fd5b81516001600160401b0380821115620002df57620002df6200045d565b604051601f8301601f19908116603f011681019082821181831017156200030a576200030a6200045d565b816040528381526020925086838588010111156200032757600080fd5b600091505b838210156200034b57858201830151818301840152908201906200032c565b838211156200035d5760008385830101525b9695505050505050565b600080600080608085870312156200037e57600080fd5b84516001600160401b03808211156200039657600080fd5b620003a488838901620002b0565b95506020870151915080821115620003bb57600080fd5b620003c988838901620002b0565b94506040870151915080821115620003e057600080fd5b620003ee88838901620002b0565b935060608701519150808211156200040557600080fd5b506200041487828801620002b0565b91505092959194509250565b600181811c908216806200043557607f821691505b602082108114156200045757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61261880620004836000396000f3fe6080604052600436106102725760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610731578063da3ef23f14610747578063e985e9c514610767578063edec5f27146107b0578063f2c4ce1e146107d0578063f2fde38b146107f057600080fd5b8063b88d4fde14610686578063ba4e5c49146106a6578063ba7d2c76146106c6578063c6682862146106dc578063c87b56dd146106f1578063d0eb26b01461071157600080fd5b80638da5cb5b116101135780638da5cb5b146105eb57806395d89b41146106095780639c70b5121461061e578063a0712d681461063e578063a22cb46514610651578063a475b5dd1461067157600080fd5b80636352211e146105615780636c0360eb1461058157806370a0823114610596578063715018a6146105b65780637f00c7a6146105cb57600080fd5b80632f745c59116101e8578063438b6300116101ac578063438b63001461049b57806344a0d68a146104c85780634f6ccce7146104e8578063518302271461050857806355f804b3146105275780635c975abb1461054757600080fd5b80632f745c59146104135780633af32abf146104335780633c952764146104535780633ccfd60b1461047357806342842e0e1461047b57600080fd5b8063095ea7b31161023a578063095ea7b31461033d57806313faede61461035d57806318160ddd1461038157806318cae269146103b0578063239c70ae146103dd57806323b872dd146103f357600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063081c8c4414610328575b600080fd5b34801561028357600080fd5b50610297610292366004612228565b610810565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c736600461220d565b61087d565b005b3480156102da57600080fd5b506102e36108c3565b6040516102a39190612434565b3480156102fc57600080fd5b5061031061030b3660046122aa565b610955565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102e3610999565b34801561034957600080fd5b506102cc61035836600461216f565b610a27565b34801561036957600080fd5b50610373600b5481565b6040519081526020016102a3565b34801561038d57600080fd5b506103736000546001600160801b03600160801b82048116918116919091031690565b3480156103bc57600080fd5b506103736103cb366004612040565b60116020526000908152604090205481565b3480156103e957600080fd5b50610373600d5481565b3480156103ff57600080fd5b506102cc61040e36600461208e565b610ab5565b34801561041f57600080fd5b5061037361042e36600461216f565b610ac0565b34801561043f57600080fd5b5061029761044e366004612040565b610bbc565b34801561045f57600080fd5b506102cc61046e36600461220d565b610c26565b6102cc610c6c565b34801561048757600080fd5b506102cc61049636600461208e565b610d0a565b3480156104a757600080fd5b506104bb6104b6366004612040565b610d25565b6040516102a391906123f0565b3480156104d457600080fd5b506102cc6104e33660046122aa565b610dc6565b3480156104f457600080fd5b506103736105033660046122aa565b610df5565b34801561051457600080fd5b50600f5461029790610100900460ff1681565b34801561053357600080fd5b506102cc610542366004612262565b610e9f565b34801561055357600080fd5b50600f546102979060ff1681565b34801561056d57600080fd5b5061031061057c3660046122aa565b610ee0565b34801561058d57600080fd5b506102e3610ef2565b3480156105a257600080fd5b506103736105b1366004612040565b610eff565b3480156105c257600080fd5b506102cc610f4d565b3480156105d757600080fd5b506102cc6105e63660046122aa565b610f83565b3480156105f757600080fd5b506007546001600160a01b0316610310565b34801561061557600080fd5b506102e3610fb2565b34801561062a57600080fd5b50600f546102979062010000900460ff1681565b6102cc61064c3660046122aa565b610fc1565b34801561065d57600080fd5b506102cc61066c366004612145565b61127b565b34801561067d57600080fd5b506102cc611311565b34801561069257600080fd5b506102cc6106a13660046120ca565b61134c565b3480156106b257600080fd5b506103106106c13660046122aa565b611386565b3480156106d257600080fd5b50610373600e5481565b3480156106e857600080fd5b506102e36113b0565b3480156106fd57600080fd5b506102e361070c3660046122aa565b6113bd565b34801561071d57600080fd5b506102cc61072c3660046122aa565b61152c565b34801561073d57600080fd5b50610373600c5481565b34801561075357600080fd5b506102cc610762366004612262565b61155b565b34801561077357600080fd5b5061029761078236600461205b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107bc57600080fd5b506102cc6107cb366004612199565b611598565b3480156107dc57600080fd5b506102cc6107eb366004612262565b6115da565b3480156107fc57600080fd5b506102cc61080b366004612040565b611617565b60006001600160e01b031982166380ac58cd60e01b148061084157506001600160e01b03198216635b5e139f60e01b145b8061085c57506001600160e01b0319821663780e9d6360e01b145b8061087757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146108b05760405162461bcd60e51b81526004016108a790612447565b60405180910390fd5b600f805460ff1916911515919091179055565b6060600180546108d29061250a565b80601f01602080910402602001604051908101604052809291908181526020018280546108fe9061250a565b801561094b5780601f106109205761010080835404028352916020019161094b565b820191906000526020600020905b81548152906001019060200180831161092e57829003601f168201915b5050505050905090565b6000610960826116af565b61097d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600a80546109a69061250a565b80601f01602080910402602001604051908101604052809291908181526020018280546109d29061250a565b8015610a1f5780601f106109f457610100808354040283529160200191610a1f565b820191906000526020600020905b815481529060010190602001808311610a0257829003601f168201915b505050505081565b6000610a3282610ee0565b9050806001600160a01b0316836001600160a01b03161415610a675760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a875750610a858133610782565b155b15610aa5576040516367d9dca160e11b815260040160405180910390fd5b610ab08383836116e3565b505050565b610ab083838361173f565b6000610acb83610eff565b8210610aea576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610bb657600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610b625750610bae565b80516001600160a01b031615610b7757805192505b876001600160a01b0316836001600160a01b03161415610bac5786841415610ba55750935061087792505050565b6001909301925b505b600101610afb565b50600080fd5b6000805b601054811015610c1d57826001600160a01b031660108281548110610be757610be76125a0565b6000918252602090912001546001600160a01b03161415610c0b5750600192915050565b80610c1581612545565b915050610bc0565b50600092915050565b6007546001600160a01b03163314610c505760405162461bcd60e51b81526004016108a790612447565b600f8054911515620100000262ff000019909216919091179055565b6007546001600160a01b03163314610c965760405162461bcd60e51b81526004016108a790612447565b6000610caa6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cf4576040519150601f19603f3d011682016040523d82523d6000602084013e610cf9565b606091505b5050905080610d0757600080fd5b50565b610ab08383836040518060200160405280600081525061134c565b60606000610d3283610eff565b90506000816001600160401b03811115610d4e57610d4e6125b6565b604051908082528060200260200182016040528015610d77578160200160208202803683370190505b50905060005b82811015610dbe57610d8f8582610ac0565b828281518110610da157610da16125a0565b602090810291909101015280610db681612545565b915050610d7d565b509392505050565b6007546001600160a01b03163314610df05760405162461bcd60e51b81526004016108a790612447565b600b55565b600080546001600160801b031681805b82811015610e8557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610e7c5785831415610e755750949350505050565b6001909201915b50600101610e05565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610ec95760405162461bcd60e51b81526004016108a790612447565b8051610edc906008906020840190611e95565b5050565b6000610eeb8261195c565b5192915050565b600880546109a69061250a565b60006001600160a01b038216610f28576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b03163314610f775760405162461bcd60e51b81526004016108a790612447565b610f816000611a7e565b565b6007546001600160a01b03163314610fad5760405162461bcd60e51b81526004016108a790612447565b600d55565b6060600280546108d29061250a565b600f5460ff161561100d5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016108a7565b60006110316000546001600160801b03600160801b82048116918116919091031690565b9050600082116110835760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016108a7565b600d548211156110e15760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016108a7565b600c546110ee838361247c565b11156111355760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108a7565b6007546001600160a01b0316331461127157600f5462010000900460ff1615156001141561121f5761116633610bbc565b6111b25760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c697374656400000000000000000060448201526064016108a7565b33600090815260116020526040902054600e546111cf848361247c565b111561121d5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016108a7565b505b81600b5461122d91906124a8565b3410156112715760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108a7565b610edc3383611ad0565b6001600160a01b0382163314156112a55760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b0316331461133b5760405162461bcd60e51b81526004016108a790612447565b600f805461ff001916610100179055565b61135784848461173f565b61136384848484611aea565b611380576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6010818154811061139657600080fd5b6000918252602090912001546001600160a01b0316905081565b600980546109a69061250a565b60606113c8826116af565b61142c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a7565b600f54610100900460ff166114cd57600a80546114489061250a565b80601f01602080910402602001604051908101604052809291908181526020018280546114749061250a565b80156114c15780601f10611496576101008083540402835291602001916114c1565b820191906000526020600020905b8154815290600101906020018083116114a457829003601f168201915b50505050509050919050565b60006114d7611bf9565b905060008151116114f75760405180602001604052806000815250611525565b8061150184611c08565b6009604051602001611515939291906122ef565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146115565760405162461bcd60e51b81526004016108a790612447565b600e55565b6007546001600160a01b031633146115855760405162461bcd60e51b81526004016108a790612447565b8051610edc906009906020840190611e95565b6007546001600160a01b031633146115c25760405162461bcd60e51b81526004016108a790612447565b6115ce60106000611f19565b610ab060108383611f37565b6007546001600160a01b031633146116045760405162461bcd60e51b81526004016108a790612447565b8051610edc90600a906020840190611e95565b6007546001600160a01b031633146116415760405162461bcd60e51b81526004016108a790612447565b6001600160a01b0381166116a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a7565b610d0781611a7e565b600080546001600160801b031682108015610877575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061174a8261195c565b80519091506000906001600160a01b0316336001600160a01b03161480611778575081516117789033610782565b8061179357503361178884610955565b6001600160a01b0316145b9050806117b357604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117e85760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661180f57604051633a954ecd60e21b815260040160405180910390fd5b61181f60008484600001516116e3565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611912576000546001600160801b031681101561191257825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611a6557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611a635780516001600160a01b0316156119fa579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611a5e579392505050565b6119fa565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610edc828260405180602001604052806000815250611d05565b60006001600160a01b0384163b15611bed57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b2e9033908990889088906004016123b3565b602060405180830381600087803b158015611b4857600080fd5b505af1925050508015611b78575060408051601f3d908101601f19168201909252611b7591810190612245565b60015b611bd3573d808015611ba6576040519150601f19603f3d011682016040523d82523d6000602084013e611bab565b606091505b508051611bcb576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bf1565b5060015b949350505050565b6060600880546108d29061250a565b606081611c2c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c565780611c4081612545565b9150611c4f9050600a83612494565b9150611c30565b6000816001600160401b03811115611c7057611c706125b6565b6040519080825280601f01601f191660200182016040528015611c9a576020820181803683370190505b5090505b8415611bf157611caf6001836124c7565b9150611cbc600a86612560565b611cc790603061247c565b60f81b818381518110611cdc57611cdc6125a0565b60200101906001600160f81b031916908160001a905350611cfe600a86612494565b9450611c9e565b610ab083838360016000546001600160801b03166001600160a01b038516611d3f57604051622e076360e81b815260040160405180910390fd5b83611d5d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611e6f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611e455750611e436000888488611aea565b155b15611e63576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611dee565b50600080546001600160801b0319166001600160801b0392909216919091179055611955565b828054611ea19061250a565b90600052602060002090601f016020900481019282611ec35760008555611f09565b82601f10611edc57805160ff1916838001178555611f09565b82800160010185558215611f09579182015b82811115611f09578251825591602001919060010190611eee565b50611f15929150611f8a565b5090565b5080546000825590600052602060002090810190610d079190611f8a565b828054828255906000526020600020908101928215611f09579160200282015b82811115611f095781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611f57565b5b80821115611f155760008155600101611f8b565b60006001600160401b0380841115611fb957611fb96125b6565b604051601f8501601f19908116603f01168101908282118183101715611fe157611fe16125b6565b81604052809350858152868686011115611ffa57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461202b57600080fd5b919050565b8035801515811461202b57600080fd5b60006020828403121561205257600080fd5b61152582612014565b6000806040838503121561206e57600080fd5b61207783612014565b915061208560208401612014565b90509250929050565b6000806000606084860312156120a357600080fd5b6120ac84612014565b92506120ba60208501612014565b9150604084013590509250925092565b600080600080608085870312156120e057600080fd5b6120e985612014565b93506120f760208601612014565b92506040850135915060608501356001600160401b0381111561211957600080fd5b8501601f8101871361212a57600080fd5b61213987823560208401611f9f565b91505092959194509250565b6000806040838503121561215857600080fd5b61216183612014565b915061208560208401612030565b6000806040838503121561218257600080fd5b61218b83612014565b946020939093013593505050565b600080602083850312156121ac57600080fd5b82356001600160401b03808211156121c357600080fd5b818501915085601f8301126121d757600080fd5b8135818111156121e657600080fd5b8660208260051b85010111156121fb57600080fd5b60209290920196919550909350505050565b60006020828403121561221f57600080fd5b61152582612030565b60006020828403121561223a57600080fd5b8135611525816125cc565b60006020828403121561225757600080fd5b8151611525816125cc565b60006020828403121561227457600080fd5b81356001600160401b0381111561228a57600080fd5b8201601f8101841361229b57600080fd5b611bf184823560208401611f9f565b6000602082840312156122bc57600080fd5b5035919050565b600081518084526122db8160208601602086016124de565b601f01601f19169290920160200192915050565b6000845160206123028285838a016124de565b8551918401916123158184848a016124de565b8554920191600090600181811c908083168061233257607f831692505b85831081141561235057634e487b7160e01b85526022600452602485fd5b8080156123645760018114612375576123a2565b60ff198516885283880195506123a2565b60008b81526020902060005b8581101561239a5781548a820152908401908801612381565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123e6908301846122c3565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156124285783518352928401929184019160010161240c565b50909695505050505050565b60208152600061152560208301846122c3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561248f5761248f612574565b500190565b6000826124a3576124a361258a565b500490565b60008160001904831182151516156124c2576124c2612574565b500290565b6000828210156124d9576124d9612574565b500390565b60005b838110156124f95781810151838201526020016124e1565b838111156113805750506000910152565b600181811c9082168061251e57607f821691505b6020821081141561253f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561255957612559612574565b5060010190565b60008261256f5761256f61258a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d0757600080fdfea26469706673582212204ce3c80292b1d2c0f518b760e06a8e46e92f8c5eb4d9450f122a9749f7204d1f64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000084672696467697473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000246520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d527357756e5067393763515171734a5475446173594a716b71707a6b35674e584a6b535135587835346d78312f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d527357756e5067393763515171734a5475446173594a716b71707a6b35674e584a6b535135587835346d78312f00000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610731578063da3ef23f14610747578063e985e9c514610767578063edec5f27146107b0578063f2c4ce1e146107d0578063f2fde38b146107f057600080fd5b8063b88d4fde14610686578063ba4e5c49146106a6578063ba7d2c76146106c6578063c6682862146106dc578063c87b56dd146106f1578063d0eb26b01461071157600080fd5b80638da5cb5b116101135780638da5cb5b146105eb57806395d89b41146106095780639c70b5121461061e578063a0712d681461063e578063a22cb46514610651578063a475b5dd1461067157600080fd5b80636352211e146105615780636c0360eb1461058157806370a0823114610596578063715018a6146105b65780637f00c7a6146105cb57600080fd5b80632f745c59116101e8578063438b6300116101ac578063438b63001461049b57806344a0d68a146104c85780634f6ccce7146104e8578063518302271461050857806355f804b3146105275780635c975abb1461054757600080fd5b80632f745c59146104135780633af32abf146104335780633c952764146104535780633ccfd60b1461047357806342842e0e1461047b57600080fd5b8063095ea7b31161023a578063095ea7b31461033d57806313faede61461035d57806318160ddd1461038157806318cae269146103b0578063239c70ae146103dd57806323b872dd146103f357600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063081c8c4414610328575b600080fd5b34801561028357600080fd5b50610297610292366004612228565b610810565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c736600461220d565b61087d565b005b3480156102da57600080fd5b506102e36108c3565b6040516102a39190612434565b3480156102fc57600080fd5b5061031061030b3660046122aa565b610955565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102e3610999565b34801561034957600080fd5b506102cc61035836600461216f565b610a27565b34801561036957600080fd5b50610373600b5481565b6040519081526020016102a3565b34801561038d57600080fd5b506103736000546001600160801b03600160801b82048116918116919091031690565b3480156103bc57600080fd5b506103736103cb366004612040565b60116020526000908152604090205481565b3480156103e957600080fd5b50610373600d5481565b3480156103ff57600080fd5b506102cc61040e36600461208e565b610ab5565b34801561041f57600080fd5b5061037361042e36600461216f565b610ac0565b34801561043f57600080fd5b5061029761044e366004612040565b610bbc565b34801561045f57600080fd5b506102cc61046e36600461220d565b610c26565b6102cc610c6c565b34801561048757600080fd5b506102cc61049636600461208e565b610d0a565b3480156104a757600080fd5b506104bb6104b6366004612040565b610d25565b6040516102a391906123f0565b3480156104d457600080fd5b506102cc6104e33660046122aa565b610dc6565b3480156104f457600080fd5b506103736105033660046122aa565b610df5565b34801561051457600080fd5b50600f5461029790610100900460ff1681565b34801561053357600080fd5b506102cc610542366004612262565b610e9f565b34801561055357600080fd5b50600f546102979060ff1681565b34801561056d57600080fd5b5061031061057c3660046122aa565b610ee0565b34801561058d57600080fd5b506102e3610ef2565b3480156105a257600080fd5b506103736105b1366004612040565b610eff565b3480156105c257600080fd5b506102cc610f4d565b3480156105d757600080fd5b506102cc6105e63660046122aa565b610f83565b3480156105f757600080fd5b506007546001600160a01b0316610310565b34801561061557600080fd5b506102e3610fb2565b34801561062a57600080fd5b50600f546102979062010000900460ff1681565b6102cc61064c3660046122aa565b610fc1565b34801561065d57600080fd5b506102cc61066c366004612145565b61127b565b34801561067d57600080fd5b506102cc611311565b34801561069257600080fd5b506102cc6106a13660046120ca565b61134c565b3480156106b257600080fd5b506103106106c13660046122aa565b611386565b3480156106d257600080fd5b50610373600e5481565b3480156106e857600080fd5b506102e36113b0565b3480156106fd57600080fd5b506102e361070c3660046122aa565b6113bd565b34801561071d57600080fd5b506102cc61072c3660046122aa565b61152c565b34801561073d57600080fd5b50610373600c5481565b34801561075357600080fd5b506102cc610762366004612262565b61155b565b34801561077357600080fd5b5061029761078236600461205b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107bc57600080fd5b506102cc6107cb366004612199565b611598565b3480156107dc57600080fd5b506102cc6107eb366004612262565b6115da565b3480156107fc57600080fd5b506102cc61080b366004612040565b611617565b60006001600160e01b031982166380ac58cd60e01b148061084157506001600160e01b03198216635b5e139f60e01b145b8061085c57506001600160e01b0319821663780e9d6360e01b145b8061087757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146108b05760405162461bcd60e51b81526004016108a790612447565b60405180910390fd5b600f805460ff1916911515919091179055565b6060600180546108d29061250a565b80601f01602080910402602001604051908101604052809291908181526020018280546108fe9061250a565b801561094b5780601f106109205761010080835404028352916020019161094b565b820191906000526020600020905b81548152906001019060200180831161092e57829003601f168201915b5050505050905090565b6000610960826116af565b61097d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600a80546109a69061250a565b80601f01602080910402602001604051908101604052809291908181526020018280546109d29061250a565b8015610a1f5780601f106109f457610100808354040283529160200191610a1f565b820191906000526020600020905b815481529060010190602001808311610a0257829003601f168201915b505050505081565b6000610a3282610ee0565b9050806001600160a01b0316836001600160a01b03161415610a675760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a875750610a858133610782565b155b15610aa5576040516367d9dca160e11b815260040160405180910390fd5b610ab08383836116e3565b505050565b610ab083838361173f565b6000610acb83610eff565b8210610aea576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610bb657600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610b625750610bae565b80516001600160a01b031615610b7757805192505b876001600160a01b0316836001600160a01b03161415610bac5786841415610ba55750935061087792505050565b6001909301925b505b600101610afb565b50600080fd5b6000805b601054811015610c1d57826001600160a01b031660108281548110610be757610be76125a0565b6000918252602090912001546001600160a01b03161415610c0b5750600192915050565b80610c1581612545565b915050610bc0565b50600092915050565b6007546001600160a01b03163314610c505760405162461bcd60e51b81526004016108a790612447565b600f8054911515620100000262ff000019909216919091179055565b6007546001600160a01b03163314610c965760405162461bcd60e51b81526004016108a790612447565b6000610caa6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cf4576040519150601f19603f3d011682016040523d82523d6000602084013e610cf9565b606091505b5050905080610d0757600080fd5b50565b610ab08383836040518060200160405280600081525061134c565b60606000610d3283610eff565b90506000816001600160401b03811115610d4e57610d4e6125b6565b604051908082528060200260200182016040528015610d77578160200160208202803683370190505b50905060005b82811015610dbe57610d8f8582610ac0565b828281518110610da157610da16125a0565b602090810291909101015280610db681612545565b915050610d7d565b509392505050565b6007546001600160a01b03163314610df05760405162461bcd60e51b81526004016108a790612447565b600b55565b600080546001600160801b031681805b82811015610e8557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610e7c5785831415610e755750949350505050565b6001909201915b50600101610e05565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610ec95760405162461bcd60e51b81526004016108a790612447565b8051610edc906008906020840190611e95565b5050565b6000610eeb8261195c565b5192915050565b600880546109a69061250a565b60006001600160a01b038216610f28576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b03163314610f775760405162461bcd60e51b81526004016108a790612447565b610f816000611a7e565b565b6007546001600160a01b03163314610fad5760405162461bcd60e51b81526004016108a790612447565b600d55565b6060600280546108d29061250a565b600f5460ff161561100d5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016108a7565b60006110316000546001600160801b03600160801b82048116918116919091031690565b9050600082116110835760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016108a7565b600d548211156110e15760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016108a7565b600c546110ee838361247c565b11156111355760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108a7565b6007546001600160a01b0316331461127157600f5462010000900460ff1615156001141561121f5761116633610bbc565b6111b25760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c697374656400000000000000000060448201526064016108a7565b33600090815260116020526040902054600e546111cf848361247c565b111561121d5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016108a7565b505b81600b5461122d91906124a8565b3410156112715760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108a7565b610edc3383611ad0565b6001600160a01b0382163314156112a55760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b0316331461133b5760405162461bcd60e51b81526004016108a790612447565b600f805461ff001916610100179055565b61135784848461173f565b61136384848484611aea565b611380576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6010818154811061139657600080fd5b6000918252602090912001546001600160a01b0316905081565b600980546109a69061250a565b60606113c8826116af565b61142c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a7565b600f54610100900460ff166114cd57600a80546114489061250a565b80601f01602080910402602001604051908101604052809291908181526020018280546114749061250a565b80156114c15780601f10611496576101008083540402835291602001916114c1565b820191906000526020600020905b8154815290600101906020018083116114a457829003601f168201915b50505050509050919050565b60006114d7611bf9565b905060008151116114f75760405180602001604052806000815250611525565b8061150184611c08565b6009604051602001611515939291906122ef565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146115565760405162461bcd60e51b81526004016108a790612447565b600e55565b6007546001600160a01b031633146115855760405162461bcd60e51b81526004016108a790612447565b8051610edc906009906020840190611e95565b6007546001600160a01b031633146115c25760405162461bcd60e51b81526004016108a790612447565b6115ce60106000611f19565b610ab060108383611f37565b6007546001600160a01b031633146116045760405162461bcd60e51b81526004016108a790612447565b8051610edc90600a906020840190611e95565b6007546001600160a01b031633146116415760405162461bcd60e51b81526004016108a790612447565b6001600160a01b0381166116a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a7565b610d0781611a7e565b600080546001600160801b031682108015610877575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061174a8261195c565b80519091506000906001600160a01b0316336001600160a01b03161480611778575081516117789033610782565b8061179357503361178884610955565b6001600160a01b0316145b9050806117b357604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117e85760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661180f57604051633a954ecd60e21b815260040160405180910390fd5b61181f60008484600001516116e3565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611912576000546001600160801b031681101561191257825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611a6557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611a635780516001600160a01b0316156119fa579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611a5e579392505050565b6119fa565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610edc828260405180602001604052806000815250611d05565b60006001600160a01b0384163b15611bed57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b2e9033908990889088906004016123b3565b602060405180830381600087803b158015611b4857600080fd5b505af1925050508015611b78575060408051601f3d908101601f19168201909252611b7591810190612245565b60015b611bd3573d808015611ba6576040519150601f19603f3d011682016040523d82523d6000602084013e611bab565b606091505b508051611bcb576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bf1565b5060015b949350505050565b6060600880546108d29061250a565b606081611c2c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c565780611c4081612545565b9150611c4f9050600a83612494565b9150611c30565b6000816001600160401b03811115611c7057611c706125b6565b6040519080825280601f01601f191660200182016040528015611c9a576020820181803683370190505b5090505b8415611bf157611caf6001836124c7565b9150611cbc600a86612560565b611cc790603061247c565b60f81b818381518110611cdc57611cdc6125a0565b60200101906001600160f81b031916908160001a905350611cfe600a86612494565b9450611c9e565b610ab083838360016000546001600160801b03166001600160a01b038516611d3f57604051622e076360e81b815260040160405180910390fd5b83611d5d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611e6f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611e455750611e436000888488611aea565b155b15611e63576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611dee565b50600080546001600160801b0319166001600160801b0392909216919091179055611955565b828054611ea19061250a565b90600052602060002090601f016020900481019282611ec35760008555611f09565b82601f10611edc57805160ff1916838001178555611f09565b82800160010185558215611f09579182015b82811115611f09578251825591602001919060010190611eee565b50611f15929150611f8a565b5090565b5080546000825590600052602060002090810190610d079190611f8a565b828054828255906000526020600020908101928215611f09579160200282015b82811115611f095781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611f57565b5b80821115611f155760008155600101611f8b565b60006001600160401b0380841115611fb957611fb96125b6565b604051601f8501601f19908116603f01168101908282118183101715611fe157611fe16125b6565b81604052809350858152868686011115611ffa57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461202b57600080fd5b919050565b8035801515811461202b57600080fd5b60006020828403121561205257600080fd5b61152582612014565b6000806040838503121561206e57600080fd5b61207783612014565b915061208560208401612014565b90509250929050565b6000806000606084860312156120a357600080fd5b6120ac84612014565b92506120ba60208501612014565b9150604084013590509250925092565b600080600080608085870312156120e057600080fd5b6120e985612014565b93506120f760208601612014565b92506040850135915060608501356001600160401b0381111561211957600080fd5b8501601f8101871361212a57600080fd5b61213987823560208401611f9f565b91505092959194509250565b6000806040838503121561215857600080fd5b61216183612014565b915061208560208401612030565b6000806040838503121561218257600080fd5b61218b83612014565b946020939093013593505050565b600080602083850312156121ac57600080fd5b82356001600160401b03808211156121c357600080fd5b818501915085601f8301126121d757600080fd5b8135818111156121e657600080fd5b8660208260051b85010111156121fb57600080fd5b60209290920196919550909350505050565b60006020828403121561221f57600080fd5b61152582612030565b60006020828403121561223a57600080fd5b8135611525816125cc565b60006020828403121561225757600080fd5b8151611525816125cc565b60006020828403121561227457600080fd5b81356001600160401b0381111561228a57600080fd5b8201601f8101841361229b57600080fd5b611bf184823560208401611f9f565b6000602082840312156122bc57600080fd5b5035919050565b600081518084526122db8160208601602086016124de565b601f01601f19169290920160200192915050565b6000845160206123028285838a016124de565b8551918401916123158184848a016124de565b8554920191600090600181811c908083168061233257607f831692505b85831081141561235057634e487b7160e01b85526022600452602485fd5b8080156123645760018114612375576123a2565b60ff198516885283880195506123a2565b60008b81526020902060005b8581101561239a5781548a820152908401908801612381565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123e6908301846122c3565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156124285783518352928401929184019160010161240c565b50909695505050505050565b60208152600061152560208301846122c3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561248f5761248f612574565b500190565b6000826124a3576124a361258a565b500490565b60008160001904831182151516156124c2576124c2612574565b500290565b6000828210156124d9576124d9612574565b500390565b60005b838110156124f95781810151838201526020016124e1565b838111156113805750506000910152565b600181811c9082168061251e57607f821691505b6020821081141561253f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561255957612559612574565b5060010190565b60008261256f5761256f61258a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d0757600080fdfea26469706673582212204ce3c80292b1d2c0f518b760e06a8e46e92f8c5eb4d9450f122a9749f7204d1f64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000084672696467697473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000246520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d527357756e5067393763515171734a5475446173594a716b71707a6b35674e584a6b535135587835346d78312f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d527357756e5067393763515171734a5475446173594a716b71707a6b35674e584a6b535135587835346d78312f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Fridgits
Arg [1] : _symbol (string): FR
Arg [2] : _initBaseURI (string): ipfs://QmRsWunPg97cQQqsJTuDasYJqkqpzk5gNXJkSQ5Xx54mx1/
Arg [3] : _initNotRevealedUri (string): ipfs://QmRsWunPg97cQQqsJTuDasYJqkqpzk5gNXJkSQ5Xx54mx1/

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 4672696467697473000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4652000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d527357756e5067393763515171734a5475446173594a71
Arg [10] : 6b71707a6b35674e584a6b535135587835346d78312f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [12] : 697066733a2f2f516d527357756e5067393763515171734a5475446173594a71
Arg [13] : 6b71707a6b35674e584a6b535135587835346d78312f00000000000000000000


Deployed Bytecode Sourcemap

49135:4525:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32601:372;;;;;;;;;;-1:-1:-1;32601:372:0;;;;;:::i;:::-;;:::i;:::-;;;8427:14:1;;8420:22;8402:41;;8390:2;8375:18;32601:372:0;;;;;;;;53136:79;;;;;;;;;;-1:-1:-1;53136:79:0;;;;;:::i;:::-;;:::i;:::-;;35211:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36714:204::-;;;;;;;;;;-1:-1:-1;36714:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7088:32:1;;;7070:51;;7058:2;7043:18;36714:204:0;6924:203:1;49286:28:0;;;;;;;;;;;;;:::i;36277:371::-;;;;;;;;;;-1:-1:-1;36277:371:0;;;;;:::i;:::-;;:::i;49321:32::-;;;;;;;;;;;;;;;;;;;12527:25:1;;;12515:2;12500:18;49321:32:0;12381:177:1;29838:280:0;;;;;;;;;;;;29891:7;30083:12;-1:-1:-1;;;;;;;;30083:12:0;;;;30067:13;;;:28;;;;30060:35;;29838:280;49641:55;;;;;;;;;;-1:-1:-1;49641:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;49399:34;;;;;;;;;;;;;;;;37571:170;;;;;;;;;;-1:-1:-1;37571:170:0;;;;;:::i;:::-;;:::i;31424:1105::-;;;;;;;;;;-1:-1:-1;31424:1105:0;;;;;:::i;:::-;;:::i;51053:277::-;;;;;;;;;;-1:-1:-1;51053:277:0;;;;;:::i;:::-;;:::i;53227:101::-;;;;;;;;;;-1:-1:-1;53227:101:0;;;;;:::i;:::-;;:::i;53502:155::-;;;:::i;37812:185::-;;;;;;;;;;-1:-1:-1;37812:185:0;;;;;:::i;:::-;;:::i;51338:386::-;;;;;;;;;;-1:-1:-1;51338:386:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;52526:86::-;;;;;;;;;;-1:-1:-1;52526:86:0;;;;;:::i;:::-;;:::i;30411:713::-;;;;;;;;;;-1:-1:-1;30411:713:0;;;;;:::i;:::-;;:::i;49519:28::-;;;;;;;;;;-1:-1:-1;49519:28:0;;;;;;;;;;;52750:104;;;;;;;;;;-1:-1:-1;52750:104:0;;;;;:::i;:::-;;:::i;49486:26::-;;;;;;;;;;-1:-1:-1;49486:26:0;;;;;;;;35020:124;;;;;;;;;;-1:-1:-1;35020:124:0;;;;;:::i;:::-;;:::i;49214:21::-;;;;;;;;;;;;;:::i;33037:206::-;;;;;;;;;;-1:-1:-1;33037:206:0;;;;;:::i;:::-;;:::i;7522:103::-;;;;;;;;;;;;;:::i;52620:122::-;;;;;;;;;;-1:-1:-1;52620:122:0;;;;;:::i;:::-;;:::i;6871:87::-;;;;;;;;;;-1:-1:-1;6944:6:0;;-1:-1:-1;;;;;6944:6:0;6871:87;;35380:104;;;;;;;;;;;;;:::i;49554:34::-;;;;;;;;;;-1:-1:-1;49554:34:0;;;;;;;;;;;50143:902;;;;;;:::i;:::-;;:::i;36990:279::-;;;;;;;;;;-1:-1:-1;36990:279:0;;;;;:::i;:::-;;:::i;52323:69::-;;;;;;;;;;;;;:::i;38068:342::-;;;;;;;;;;-1:-1:-1;38068:342:0;;;;;:::i;:::-;;:::i;49595:37::-;;;;;;;;;;-1:-1:-1;49595:37:0;;;;;:::i;:::-;;:::i;49440:39::-;;;;;;;;;;;;;;;;49242:37;;;;;;;;;;;;;:::i;51732:565::-;;;;;;;;;;-1:-1:-1;51732:565:0;;;;;:::i;:::-;;:::i;52404:110::-;;;;;;;;;;-1:-1:-1;52404:110:0;;;;;:::i;:::-;;:::i;49360:32::-;;;;;;;;;;;;;;;;52862:128;;;;;;;;;;-1:-1:-1;52862:128:0;;;;;:::i;:::-;;:::i;37340:164::-;;;;;;;;;;-1:-1:-1;37340:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37461:25:0;;;37437:4;37461:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37340:164;53340:154;;;;;;;;;;-1:-1:-1;53340:154:0;;;;;:::i;:::-;;:::i;53002:126::-;;;;;;;;;;-1:-1:-1;53002:126:0;;;;;:::i;:::-;;:::i;7780:201::-;;;;;;;;;;-1:-1:-1;7780:201:0;;;;;:::i;:::-;;:::i;32601:372::-;32703:4;-1:-1:-1;;;;;;32740:40:0;;-1:-1:-1;;;32740:40:0;;:105;;-1:-1:-1;;;;;;;32797:48:0;;-1:-1:-1;;;32797:48:0;32740:105;:172;;;-1:-1:-1;;;;;;;32862:50:0;;-1:-1:-1;;;32862:50:0;32740:172;:225;;;-1:-1:-1;;;;;;;;;;19764:40:0;;;32929:36;32720:245;32601:372;-1:-1:-1;;32601:372:0:o;53136:79::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;;;;;;;;;53192:6:::1;:15:::0;;-1:-1:-1;;53192:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53136:79::o;35211:100::-;35265:13;35298:5;35291:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35211:100;:::o;36714:204::-;36782:7;36807:16;36815:7;36807;:16::i;:::-;36802:64;;36832:34;;-1:-1:-1;;;36832:34:0;;;;;;;;;;;36802:64;-1:-1:-1;36886:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36886:24:0;;36714:204::o;49286:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36277:371::-;36350:13;36366:24;36382:7;36366:15;:24::i;:::-;36350:40;;36411:5;-1:-1:-1;;;;;36405:11:0;:2;-1:-1:-1;;;;;36405:11:0;;36401:48;;;36425:24;;-1:-1:-1;;;36425:24:0;;;;;;;;;;;36401:48;5675:10;-1:-1:-1;;;;;36466:21:0;;;;;;:63;;-1:-1:-1;36492:37:0;36509:5;5675:10;37340:164;:::i;36492:37::-;36491:38;36466:63;36462:138;;;36553:35;;-1:-1:-1;;;36553:35:0;;;;;;;;;;;36462:138;36612:28;36621:2;36625:7;36634:5;36612:8;:28::i;:::-;36339:309;36277:371;;:::o;37571:170::-;37705:28;37715:4;37721:2;37725:7;37705:9;:28::i;31424:1105::-;31513:7;31546:16;31556:5;31546:9;:16::i;:::-;31537:5;:25;31533:61;;31571:23;;-1:-1:-1;;;31571:23:0;;;;;;;;;;;31533:61;31605:22;31630:13;;-1:-1:-1;;;;;31630:13:0;;31605:22;;31880:557;31900:14;31896:1;:18;31880:557;;;31940:31;31974:14;;;:11;:14;;;;;;;;;31940:48;;;;;;;;;-1:-1:-1;;;;;31940:48:0;;;;-1:-1:-1;;;31940:48:0;;-1:-1:-1;;;;;31940:48:0;;;;;;;;-1:-1:-1;;;31940:48:0;;;;;;;;;;;;;;;;32007:73;;32052:8;;;32007:73;32102:14;;-1:-1:-1;;;;;32102:28:0;;32098:111;;32175:14;;;-1:-1:-1;32098:111:0;32252:5;-1:-1:-1;;;;;32231:26:0;:17;-1:-1:-1;;;;;32231:26:0;;32227:195;;;32301:5;32286:11;:20;32282:85;;;-1:-1:-1;32342:1:0;-1:-1:-1;32335:8:0;;-1:-1:-1;;;32335:8:0;32282:85;32389:13;;;;;32227:195;31921:516;31880:557;31916:3;;31880:557;;;;32513:8;;;51053:277;51112:4;;51135:165;51156:20;:27;51152:31;;51135:165;;;51236:5;-1:-1:-1;;;;;51209:32:0;:20;51230:1;51209:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;51209:23:0;:32;51205:84;;;-1:-1:-1;51269:4:0;;51053:277;-1:-1:-1;;51053:277:0:o;51205:84::-;51185:3;;;;:::i;:::-;;;;51135:165;;;-1:-1:-1;51317:5:0;;51053:277;-1:-1:-1;;51053:277:0:o;53227:101::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;53296:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;53296:24:0;;::::1;::::0;;;::::1;::::0;;53227:101::o;53502:155::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;53559:7:::1;53580;6944:6:::0;;-1:-1:-1;;;;;6944:6:0;;6871:87;53580:7:::1;-1:-1:-1::0;;;;;53572:21:0::1;53601;53572:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53558:69;;;53646:2;53638:11;;;::::0;::::1;;53547:110;53502:155::o:0;37812:185::-;37950:39;37967:4;37973:2;37977:7;37950:39;;;;;;;;;;;;:16;:39::i;51338:386::-;51425:16;51459:23;51485:17;51495:6;51485:9;:17::i;:::-;51459:43;;51513:25;51555:15;-1:-1:-1;;;;;51541:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51541:30:0;;51513:58;;51587:9;51582:109;51602:15;51598:1;:19;51582:109;;;51649:30;51669:6;51677:1;51649:19;:30::i;:::-;51635:8;51644:1;51635:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;51619:3;;;;:::i;:::-;;;;51582:109;;;-1:-1:-1;51708:8:0;51338:386;-1:-1:-1;;;51338:386:0:o;52526:86::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;52589:4:::1;:15:::0;52526:86::o;30411:713::-;30478:7;30523:13;;-1:-1:-1;;;;;30523:13:0;30478:7;;30737:328;30757:14;30753:1;:18;30737:328;;;30797:31;30831:14;;;:11;:14;;;;;;;;;30797:48;;;;;;;;;-1:-1:-1;;;;;30797:48:0;;;;-1:-1:-1;;;30797:48:0;;-1:-1:-1;;;;;30797:48:0;;;;;;;;-1:-1:-1;;;30797:48:0;;;;;;;;;;;;;;30864:186;;30929:5;30914:11;:20;30910:85;;;-1:-1:-1;30970:1:0;30411:713;-1:-1:-1;;;;30411:713:0:o;30910:85::-;31017:13;;;;;30864:186;-1:-1:-1;30773:3:0;;30737:328;;;;31093:23;;-1:-1:-1;;;31093:23:0;;;;;;;;;;;52750:104;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;52825:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52750:104:::0;:::o;35020:124::-;35084:7;35111:20;35123:7;35111:11;:20::i;:::-;:25;;35020:124;-1:-1:-1;;35020:124:0:o;49214:21::-;;;;;;;:::i;33037:206::-;33101:7;-1:-1:-1;;;;;33125:19:0;;33121:60;;33153:28;;-1:-1:-1;;;33153:28:0;;;;;;;;;;;33121:60;-1:-1:-1;;;;;;33207:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;33207:27:0;;33037:206::o;7522:103::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;7587:30:::1;7614:1;7587:18;:30::i;:::-;7522:103::o:0;52620:122::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;52701:13:::1;:33:::0;52620:122::o;35380:104::-;35436:13;35469:7;35462:14;;;;;:::i;50143:902::-;50219:6;;;;50218:7;50210:42;;;;-1:-1:-1;;;50210:42:0;;10761:2:1;50210:42:0;;;10743:21:1;10800:2;10780:18;;;10773:30;-1:-1:-1;;;10819:18:1;;;10812:52;10881:18;;50210:42:0;10559:346:1;50210:42:0;50263:14;50280:13;29891:7;30083:12;-1:-1:-1;;;;;;;;30083:12:0;;;;30067:13;;;:28;;;;30060:35;;29838:280;50280:13;50263:30;;50326:1;50312:11;:15;50304:55;;;;-1:-1:-1;;;50304:55:0;;12227:2:1;50304:55:0;;;12209:21:1;12266:2;12246:18;;;12239:30;12305:29;12285:18;;;12278:57;12352:18;;50304:55:0;12025:351:1;50304:55:0;50393:13;;50378:11;:28;;50370:77;;;;-1:-1:-1;;;50370:77:0;;9995:2:1;50370:77:0;;;9977:21:1;10034:2;10014:18;;;10007:30;10073:34;10053:18;;;10046:62;-1:-1:-1;;;10124:18:1;;;10117:34;10168:19;;50370:77:0;9793:400:1;50370:77:0;50490:9;;50466:20;50475:11;50466:6;:20;:::i;:::-;:33;;50458:68;;;;-1:-1:-1;;;50458:68:0;;9644:2:1;50458:68:0;;;9626:21:1;9683:2;9663:18;;;9656:30;-1:-1:-1;;;9702:18:1;;;9695:52;9764:18;;50458:68:0;9442:346:1;50458:68:0;6944:6;;-1:-1:-1;;;;;6944:6:0;50543:10;:21;50539:444;;50584:15;;;;;;;:23;;50603:4;50584:23;50581:314;;;50636:25;50650:10;50636:13;:25::i;:::-;50628:61;;;;-1:-1:-1;;;50628:61:0;;11875:2:1;50628:61:0;;;11857:21:1;11914:2;11894:18;;;11887:30;11953:25;11933:18;;;11926:53;11996:18;;50628:61:0;11673:347:1;50628:61:0;50756:10;50708:24;50735:32;;;:20;:32;;;;;;50828:18;;50794:30;50813:11;50735:32;50794:30;:::i;:::-;:52;;50786:93;;;;-1:-1:-1;;;50786:93:0;;9287:2:1;50786:93:0;;;9269:21:1;9326:2;9306:18;;;9299:30;9365;9345:18;;;9338:58;9413:18;;50786:93:0;9085:352:1;50786:93:0;50609:286;50581:314;50937:11;50930:4;;:18;;;;:::i;:::-;50917:9;:31;;50909:62;;;;-1:-1:-1;;;50909:62:0;;11528:2:1;50909:62:0;;;11510:21:1;11567:2;11547:18;;;11540:30;-1:-1:-1;;;11586:18:1;;;11579:48;11644:18;;50909:62:0;11326:342:1;50909:62:0;51003:34;51013:10;51025:11;51003:9;:34::i;36990:279::-;-1:-1:-1;;;;;37081:24:0;;5675:10;37081:24;37077:54;;;37114:17;;-1:-1:-1;;;37114:17:0;;;;;;;;;;;37077:54;5675:10;37144:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37144:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37144:53:0;;;;;;;;;;37213:48;;8402:41:1;;;37144:42:0;;5675:10;37213:48;;8375:18:1;37213:48:0;;;;;;;36990:279;;:::o;52323:69::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;52369:8:::1;:15:::0;;-1:-1:-1;;52369:15:0::1;;;::::0;;52323:69::o;38068:342::-;38235:28;38245:4;38251:2;38255:7;38235:9;:28::i;:::-;38279:48;38302:4;38308:2;38312:7;38321:5;38279:22;:48::i;:::-;38274:129;;38351:40;;-1:-1:-1;;;38351:40:0;;;;;;;;;;;38274:129;38068:342;;;;:::o;49595:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49595:37:0;;-1:-1:-1;49595:37:0;:::o;49242:::-;;;;;;;:::i;51732:565::-;51850:13;51899:16;51907:7;51899;:16::i;:::-;51881:105;;;;-1:-1:-1;;;51881:105:0;;11112:2:1;51881:105:0;;;11094:21:1;11151:2;11131:18;;;11124:30;11190:34;11170:18;;;11163:62;-1:-1:-1;;;11241:18:1;;;11234:45;11296:19;;51881:105:0;10910:411:1;51881:105:0;52010:8;;;;;;;52007:70;;52051:14;52044:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51732:565;;;:::o;52007:70::-;52089:28;52120:10;:8;:10::i;:::-;52089:41;;52179:1;52154:14;52148:28;:32;:141;;;;;;;;;;;;;;;;;52220:14;52236:18;:7;:16;:18::i;:::-;52256:13;52203:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52148:141;52141:148;51732:565;-1:-1:-1;;;51732:565:0:o;52404:110::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;52479:18:::1;:27:::0;52404:110::o;52862:128::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;52949:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;53340:154::-:0;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;53419:27:::1;53426:20;;53419:27;:::i;:::-;53457:29;:20;53480:6:::0;;53457:29:::1;:::i;53002:126::-:0;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;53088:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;7780:201::-:0;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7869:22:0;::::1;7861:73;;;::::0;-1:-1:-1;;;7861:73:0;;8880:2:1;7861:73:0::1;::::0;::::1;8862:21:1::0;8919:2;8899:18;;;8892:30;8958:34;8938:18;;;8931:62;-1:-1:-1;;;9009:18:1;;;9002:36;9055:19;;7861:73:0::1;8678:402:1::0;7861:73:0::1;7945:28;7964:8;7945:18;:28::i;38665:144::-:0;38722:4;38756:13;;-1:-1:-1;;;;;38756:13:0;38746:23;;:55;;;;-1:-1:-1;;38774:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;38774:27:0;;;;38773:28;;38665:144::o;45881:196::-;45996:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45996:29:0;-1:-1:-1;;;;;45996:29:0;;;;;;;;;46041:28;;45996:24;;46041:28;;;;;;;45881:196;;;:::o;41382:2112::-;41497:35;41535:20;41547:7;41535:11;:20::i;:::-;41610:18;;41497:58;;-1:-1:-1;41568:22:0;;-1:-1:-1;;;;;41594:34:0;5675:10;-1:-1:-1;;;;;41594:34:0;;:101;;;-1:-1:-1;41662:18:0;;41645:50;;5675:10;37340:164;:::i;41645:50::-;41594:154;;;-1:-1:-1;5675:10:0;41712:20;41724:7;41712:11;:20::i;:::-;-1:-1:-1;;;;;41712:36:0;;41594:154;41568:181;;41767:17;41762:66;;41793:35;;-1:-1:-1;;;41793:35:0;;;;;;;;;;;41762:66;41865:4;-1:-1:-1;;;;;41843:26:0;:13;:18;;;-1:-1:-1;;;;;41843:26:0;;41839:67;;41878:28;;-1:-1:-1;;;41878:28:0;;;;;;;;;;;41839:67;-1:-1:-1;;;;;41921:16:0;;41917:52;;41946:23;;-1:-1:-1;;;41946:23:0;;;;;;;;;;;41917:52;42090:49;42107:1;42111:7;42120:13;:18;;;42090:8;:49::i;:::-;-1:-1:-1;;;;;42435:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;42435:31:0;;;-1:-1:-1;;;;;42435:31:0;;;-1:-1:-1;;42435:31:0;;;;;;;42481:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42481:29:0;;;;;;;;;;;42527:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;42572:61:0;;;;-1:-1:-1;;;42617:15:0;42572:61;;;;;;;;;;;42907:11;;;42937:24;;;;;:29;42907:11;;42937:29;42933:445;;43162:13;;-1:-1:-1;;;;;43162:13:0;43148:27;;43144:219;;;43232:18;;;43200:24;;;:11;:24;;;;;;;;:50;;43315:28;;;;-1:-1:-1;;;;;43273:70:0;-1:-1:-1;;;43273:70:0;-1:-1:-1;;;;;;43273:70:0;;;-1:-1:-1;;;;;43200:50:0;;;43273:70;;;;;;;43144:219;42410:979;43425:7;43421:2;-1:-1:-1;;;;;43406:27:0;43415:4;-1:-1:-1;;;;;43406:27:0;;;;;;;;;;;43444:42;41486:2008;;41382:2112;;;:::o;33875:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;34041:13:0;;33985:7;;-1:-1:-1;;;;;34041:13:0;34034:20;;34030:861;;;34075:31;34109:17;;;:11;:17;;;;;;;;;34075:51;;;;;;;;;-1:-1:-1;;;;;34075:51:0;;;;-1:-1:-1;;;34075:51:0;;-1:-1:-1;;;;;34075:51:0;;;;;;;;-1:-1:-1;;;34075:51:0;;;;;;;;;;;;;;34145:731;;34195:14;;-1:-1:-1;;;;;34195:28:0;;34191:101;;34259:9;33875:1083;-1:-1:-1;;;33875:1083:0:o;34191:101::-;-1:-1:-1;;;34636:6:0;34681:17;;;;:11;:17;;;;;;;;;34669:29;;;;;;;;;-1:-1:-1;;;;;34669:29:0;;;;;-1:-1:-1;;;34669:29:0;;-1:-1:-1;;;;;34669:29:0;;;;;;;;-1:-1:-1;;;34669:29:0;;;;;;;;;;;;;34729:28;34725:109;;34797:9;33875:1083;-1:-1:-1;;;33875:1083:0:o;34725:109::-;34596:261;;;34056:835;34030:861;34919:31;;-1:-1:-1;;;34919:31:0;;;;;;;;;;;8141:191;8234:6;;;-1:-1:-1;;;;;8251:17:0;;;-1:-1:-1;;;;;;8251:17:0;;;;;;;8284:40;;8234:6;;;8251:17;8234:6;;8284:40;;8215:16;;8284:40;8204:128;8141:191;:::o;38817:104::-;38886:27;38896:2;38900:8;38886:27;;;;;;;;;;;;:9;:27::i;46642:790::-;46797:4;-1:-1:-1;;;;;46818:13:0;;9867:19;:23;46814:611;;46854:72;;-1:-1:-1;;;46854:72:0;;-1:-1:-1;;;;;46854:36:0;;;;;:72;;5675:10;;46905:4;;46911:7;;46920:5;;46854:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46854:72:0;;;;;;;;-1:-1:-1;;46854:72:0;;;;;;;;;;;;:::i;:::-;;;46850:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47100:13:0;;47096:259;;47150:40;;-1:-1:-1;;;47150:40:0;;;;;;;;;;;47096:259;47305:6;47299:13;47290:6;47286:2;47282:15;47275:38;46850:520;-1:-1:-1;;;;;;46977:55:0;-1:-1:-1;;;46977:55:0;;-1:-1:-1;46970:62:0;;46814:611;-1:-1:-1;47409:4:0;46814:611;46642:790;;;;;;:::o;50006:114::-;50066:13;50105:7;50098:14;;;;;:::i;3157:723::-;3213:13;3434:10;3430:53;;-1:-1:-1;;3461:10:0;;;;;;;;;;;;-1:-1:-1;;;3461:10:0;;;;;3157:723::o;3430:53::-;3508:5;3493:12;3549:78;3556:9;;3549:78;;3582:8;;;;:::i;:::-;;-1:-1:-1;3605:10:0;;-1:-1:-1;3613:2:0;3605:10;;:::i;:::-;;;3549:78;;;3637:19;3669:6;-1:-1:-1;;;;;3659:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3659:17:0;;3637:39;;3687:154;3694:10;;3687:154;;3721:11;3731:1;3721:11;;:::i;:::-;;-1:-1:-1;3790:10:0;3798:2;3790:5;:10;:::i;:::-;3777:24;;:2;:24;:::i;:::-;3764:39;;3747:6;3754;3747:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3747:56:0;;;;;;;;-1:-1:-1;3818:11:0;3827:2;3818:11;;:::i;:::-;;;3687:154;;39284:163;39407:32;39413:2;39417:8;39427:5;39434:4;39845:20;39868:13;-1:-1:-1;;;;;39868:13:0;-1:-1:-1;;;;;39896:16:0;;39892:48;;39921:19;;-1:-1:-1;;;39921:19:0;;;;;;;;;;;39892:48;39955:13;39951:44;;39977:18;;-1:-1:-1;;;39977:18:0;;;;;;;;;;;39951:44;-1:-1:-1;;;;;40347:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;40406:49:0;;-1:-1:-1;;;;;40347:44:0;;;;;;;40406:49;;;;-1:-1:-1;;40347:44:0;;;;;;40406:49;;;;;;;;;;;;;;;;40472:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;40522:66:0;;;;-1:-1:-1;;;40572:15:0;40522:66;;;;;;;;;;;40472:25;;40657:328;40677:8;40673:1;:12;40657:328;;;40716:38;;40741:12;;-1:-1:-1;;;;;40716:38:0;;;40733:1;;40716:38;;40733:1;;40716:38;40777:4;:68;;;;;40786:59;40817:1;40821:2;40825:12;40839:5;40786:22;:59::i;:::-;40785:60;40777:68;40773:164;;;40877:40;;-1:-1:-1;;;40877:40:0;;;;;;;;;;;40773:164;40955:14;;;;;40687:3;40657:328;;;-1:-1:-1;41001:13:0;:37;;-1:-1:-1;;;;;;41001:37:0;-1:-1:-1;;;;;41001:37:0;;;;;;;;;;41060:60;38068:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;-1:-1:-1;;;;;2201:6:1;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;-1:-1:-1;;;;;3244:2:1;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;-1:-1:-1;;;;;4483:6:1;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;12636:1;12629:14;;;12673:4;12660: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;10198:356::-;10400:2;10382:21;;;10419:18;;;10412:30;10478:34;10473:2;10458:18;;10451:62;10545:2;10530:18;;10198:356::o;12689:128::-;12729:3;12760:1;12756:6;12753:1;12750:13;12747:39;;;12766:18;;:::i;:::-;-1:-1:-1;12802:9:1;;12689:128::o;12822:120::-;12862:1;12888;12878:35;;12893:18;;:::i;:::-;-1:-1:-1;12927:9:1;;12822:120::o;12947:168::-;12987:7;13053:1;13049;13045:6;13041:14;13038:1;13035:21;13030:1;13023:9;13016:17;13012:45;13009:71;;;13060:18;;:::i;:::-;-1:-1:-1;13100:9:1;;12947:168::o;13120:125::-;13160:4;13188:1;13185;13182:8;13179:34;;;13193:18;;:::i;:::-;-1:-1:-1;13230:9:1;;13120:125::o;13250:258::-;13322:1;13332:113;13346:6;13343:1;13340:13;13332:113;;;13422:11;;;13416:18;13403:11;;;13396:39;13368:2;13361:10;13332:113;;;13463:6;13460:1;13457:13;13454:48;;;-1:-1:-1;;13498:1:1;13480:16;;13473:27;13250:258::o;13513:380::-;13592:1;13588:12;;;;13635;;;13656:61;;13710:4;13702:6;13698:17;13688:27;;13656:61;13763:2;13755:6;13752:14;13732:18;13729:38;13726:161;;;13809:10;13804:3;13800:20;13797:1;13790:31;13844:4;13841:1;13834:15;13872:4;13869:1;13862:15;13726:161;;13513:380;;;:::o;13898:135::-;13937:3;-1:-1:-1;;13958:17:1;;13955:43;;;13978:18;;:::i;:::-;-1:-1:-1;14025:1:1;14014:13;;13898:135::o;14038:112::-;14070:1;14096;14086:35;;14101:18;;:::i;:::-;-1:-1:-1;14135:9:1;;14038:112::o;14155:127::-;14216:10;14211:3;14207:20;14204:1;14197:31;14247:4;14244:1;14237:15;14271:4;14268:1;14261:15;14287:127;14348:10;14343:3;14339:20;14336:1;14329:31;14379:4;14376:1;14369:15;14403:4;14400:1;14393:15;14419:127;14480:10;14475:3;14471:20;14468:1;14461:31;14511:4;14508:1;14501:15;14535:4;14532:1;14525:15;14551:127;14612:10;14607:3;14603:20;14600:1;14593:31;14643:4;14640:1;14633:15;14667:4;14664:1;14657:15;14683:131;-1:-1:-1;;;;;;14757:32:1;;14747:43;;14737:71;;14804:1;14801;14794:12

Swarm Source

ipfs://4ce3c80292b1d2c0f518b760e06a8e46e92f8c5eb4d9450f122a9749f7204d1f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.