ETH Price: $2,518.77 (+3.42%)
Gas: 0.65 Gwei

Token

Hyper Shrine (HYPERSHRINE)
 

Overview

Max Total Supply

241 HYPERSHRINE

Holders

159

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 HYPERSHRINE
0x8AfD11E8A0A2d789C27dE162231439dD8B9fF2f2
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:
TransformArtNFT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-19
*/

// SPDX-License-Identifier: MIT
// 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);
}



address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

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



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

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





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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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





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

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




// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)



/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}


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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

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





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



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


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





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


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



/**
 * @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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}





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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _ownerOf(tokenId) != address(0);
    }

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

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

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

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

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

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}



/**
 *
 *  888888888888888888
 *  888888888888888888
 *  888888      888888
 *  888888      888888
 *  888888888888888888888888
 *  888888888888888888888888
 *  888888      888888
 *  888888      888888
 *
 *  888888888                                                           888888888
 *     888    oo    oooooo 88oooo oooooo   oooo oooooo oo    88oooooo   888   888 oo      88
 *     888    88PPP oooo88 88  88 88oooo oo88oo 88  88 88PPP 88 88 88   888888888 88PPP PP88PP
 *     888    88    88oo88 88  88 oooo88   88   88oo88 88    88 88 88   888   888 88      88
 *
 * @title TransformArt NFT Base
 * @author YUMEMI inc. - akibe & Iizumi Kazuma
 */


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)





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





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


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

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

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

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

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

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

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

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

    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.2) (token/ERC721/extensions/ERC721Pausable.sol)





// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)





/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 *
 * IMPORTANT: This contract does not include public pause and unpause functions. In
 * addition to inheriting this contract, you must define both functions, invoking the
 * {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate
 * access control, e.g. using {AccessControl} or {Ownable}. Not doing so will
 * make the contract unpausable.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}


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




// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)





/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}


// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)



/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


// OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol)




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



/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}





/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(account),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)





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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)



/**
 * @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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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










interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

    /// @dev The constructor that is called when the contract is being deployed.
    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}




/**
 *
 *  888888888888888888
 *  888888888888888888
 *  888888      888888
 *  888888      888888
 *  888888888888888888888888
 *  888888888888888888888888
 *  888888      888888
 *  888888      888888
 *
 *  888888888                                                           888888888
 *     888    oo    oooooo 88oooo oooooo   oooo oooooo oo    88oooooo   888   888 oo      88
 *     888    88PPP oooo88 88  88 88oooo oo88oo 88  88 88PPP 88 88 88   888888888 88PPP PP88PP
 *     888    88    88oo88 88  88 oooo88   88   88oo88 88    88 88 88   888   888 88      88
 *
 * @title TransformArt NFT Base
 * @author YUMEMI inc. - akibe & iizumi
 */







/**
 * @title ERC-721 Non-Fungible Token Standard, optional reviewable extension
 */
interface IERC721Reviewable is IERC721 {
    /**
     * @dev Emitted when post review from `reviewer`
     */
    event ReviewContract(address indexed reviewer, uint256 indexed reviewId);
    event ReviewToken(
        address indexed reviewer,
        uint256 indexed reviewId,
        uint256 indexed tokenId
    );

    /**
     * @dev Returns the total amount of reviews for token.
     */
    function totalReviewsOfToken(
        uint256 tokenId
    ) external view returns (uint256);

    /**
     * @dev Returns the total amount of reviews for contract.
     */
    function totalReviewsOfContract() external view returns (uint256);

    /**
     * @dev post review for token
     */
    function postReviewOfToken(
        uint256 tokenId,
        string memory reviewURI
    ) external returns (uint256);

    /**
     * @dev get review id by index of token reviews
     */
    function reviewOfTokenByIndex(
        uint256 tokenId,
        uint256 index
    ) external view returns (uint256);

    /**
     * @dev post review for contract
     */
    function postReviewOfContract(
        string memory reviewURI
    ) external returns (uint256);

    /**
     * @dev get review id by index of contract reviews
     */
    function reviewOfContractByIndex(
        uint256 index
    ) external view returns (uint256);

    /**
     * @dev Get reviewURI from reviewId
     */
    function reviewURI(uint256 reviewId) external view returns (string memory);
}


abstract contract ERC721Reviewable is ERC721, IERC721Reviewable {
    // The next token ID to be minted.
    uint256 private _reviewIndex;

    // array of review ids for each token
    mapping(uint256 => uint256[]) private _reviewsOfToken;

    // array of review ids for collection
    uint256[] private _reviewsOfCollection;

    // array of review ids by token id
    mapping(uint256 => string) private _reviewURIs;

    constructor() {
        _reviewIndex = _startReviewId();
    }

    // =============================================================
    //                   COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the total amount of reviews for token.
     */
    function totalReviewsOfToken(
        uint256 tokenId
    ) public view virtual override returns (uint256) {
        _requireMinted(tokenId);
        return _reviewsOfToken[tokenId].length;
    }

    /**
     * @dev Returns the total amount of reviews for contract.
     */
    function totalReviewsOfContract()
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _reviewsOfCollection.length;
    }

    /**
     * @dev Returns the starting review ID.
     * To change the starting review ID, please override this function.
     */
    function _startReviewId() internal pure virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next review ID to be reviewed.
     */
    function _nextReviewId() internal view virtual returns (uint256) {
        return _reviewIndex;
    }

    // =============================================================
    //                   DATA OPERATIONS
    // =============================================================

    /**
     * @dev post review for token
     */
    function postReviewOfToken(
        uint256 tokenId,
        string memory uri
    ) public virtual override returns (uint256) {
        _requireMinted(tokenId);
        require(bytes(uri).length > 0, "ERC721Reviewable: require URL");

        uint256 index = _reviewIndex;
        _reviewsOfToken[tokenId].push(index);
        _setReviewURI(index, uri);
        _reviewIndex += 1;

        emit ReviewToken(_msgSender(), index, tokenId);

        return index;
    }

    /**
     * @dev get review for token
     */
    function reviewOfTokenByIndex(
        uint256 tokenId,
        uint256 index
    ) public view virtual override returns (uint256) {
        _requireMinted(tokenId);
        require(
            _reviewsOfToken[tokenId].length > index,
            "ERC721Reviewable: token review index out of bounds"
        );
        return _reviewsOfToken[tokenId][index];
    }

    /**
     * @dev post review for contract
     */
    function postReviewOfContract(
        string calldata uri
    ) public virtual override returns (uint256) {
        require(bytes(uri).length > 0, "ERC721Reviewable: require URL");

        uint256 index = _reviewIndex;
        _reviewsOfCollection.push(index);
        _setReviewURI(index, uri);
        _reviewIndex += 1;

        emit ReviewContract(_msgSender(), index);

        return index;
    }

    /**
     * @dev get review for contract
     */
    function reviewOfContractByIndex(
        uint256 index
    ) public view virtual override returns (uint256) {
        require(
            _reviewsOfCollection.length > index,
            "ERC721Reviewable: contract review index out of bounds"
        );
        return _reviewsOfCollection[index];
    }

    /**
     * @dev Get reviewURI from reviewId
     */
    function reviewURI(
        uint256 reviewId
    ) public view virtual override returns (string memory) {
        // Review URI
        string memory uri = _reviewURIs[reviewId];
        require(bytes(uri).length > 0, "Not Exist ReviewURI");

        // Base Review URI
        string memory base = _baseReviewURI();
        if (bytes(base).length == 0) {
            return uri;
        }

        // If both are set, concatenate the baseURI and tokenURI
        return string(abi.encodePacked(base, uri));
    }

    /**
     * @dev Get baseReviewURI. Empty by default, can be overridden in child contracts.
     */
    function _baseReviewURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev sets `_reviewURI` as the reviewURI of `reviewId`.
     */
    function _setReviewURI(
        uint256 reviewId,
        string memory uri
    ) internal virtual {
        _reviewURIs[reviewId] = uri;
    }

    // =============================================================
    //                   INTERFACE
    // =============================================================

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


contract TransformArtNFT is
    ERC721Enumerable,
    ERC721Pausable,
    ERC2981,
    Ownable,
    AccessControl,
    ReentrancyGuard,
    DefaultOperatorFilterer,
    ERC721Reviewable
{
    using Strings for uint256;

    // ==========-==========-==========-==========-==========-==========
    // Variables
    // ==========-==========-==========-==========-==========-==========
    uint96 public royaltyFee = 1000;

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant REVIEWER_ROLE = keccak256("REVIEWER_ROLE");

    // ==========-==========-==========-==========-==========-==========
    // ERC721 Interface
    // ==========-==========-==========-==========-==========-==========

    constructor(string memory name, string memory symbol) ERC721(name, symbol) {
        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _grantRole(MINTER_ROLE, msg.sender);
        _grantRole(REVIEWER_ROLE, msg.sender);
        _setDefaultRoyalty(msg.sender, royaltyFee);
        setWithdrawAddress(msg.sender);
    }

    function supportsInterface(
        bytes4 interfaceId
    )
        public
        view
        override(
            ERC721,
            ERC2981,
            ERC721Enumerable,
            AccessControl,
            ERC721Reviewable
        )
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    // ========== Token
    function exists(uint256 tokenId) external view returns (bool) {
        return _exists(tokenId);
    }

    function tokensOfOwner(
        address user
    ) external view returns (uint256[] memory) {
        uint256 numNFTs = balanceOf(user);
        uint256[] memory ids = new uint256[](numNFTs);
        for (uint256 i; i < numNFTs; i++) {
            ids[i] = tokenOfOwnerByIndex(user, i);
        }
        return ids;
    }

    // ========== Metadata
    string private _baseTokenURI;
    string private _baseSuffix;

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

    function setBaseURI(string memory newBaseURI) public onlyOwner {
        _baseTokenURI = newBaseURI;
    }

    function setBaseSuffix(string memory newBaseSuffix) public onlyOwner {
        _baseSuffix = newBaseSuffix;
    }

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

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

    // ========== Royalty
    function setDefaultRoyalty(
        address receiver,
        uint96 value
    ) external onlyOwner {
        _setDefaultRoyalty(receiver, value);
    }

    // ========== Pausable
    function pause() external onlyOwner whenNotPaused {
        _pause();
    }

    function unpause() external onlyOwner whenPaused {
        _unpause();
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);
    }

    // ========== Withdraw
    address public withdrawAddress;

    event Withdrawn(address indexed payee, uint256 weiAmount);
    event TransferWithdrawAddress(address oldAddress, address newAddress);

    function setWithdrawAddress(address newAddress) public onlyOwner {
        address oldAddress = withdrawAddress;
        withdrawAddress = newAddress;
        emit TransferWithdrawAddress(oldAddress, newAddress);
    }

    function withdraw() external payable onlyOwner {
        require(withdrawAddress != address(0), "Withdraw address is 0 address");

        uint256 balance = address(this).balance;
        require(0 < balance, "Withdraw 0 Balance");

        (bool success, ) = payable(withdrawAddress).call{value: balance}("");
        require(success, "Withdraw failed");

        emit Withdrawn(withdrawAddress, balance);
    }

    // ========== OperatorFilterer
    function setApprovalForAll(
        address operator,
        bool approved
    ) public override(ERC721, IERC721) onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(
        address operator,
        uint256 tokenId
    ) public override(ERC721, IERC721) onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override(ERC721, IERC721) onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override(ERC721, IERC721) onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public override(ERC721, IERC721) onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    // ========== Reviewable
    string private _baseReviewedURI;

    function _startReviewId() internal pure override returns (uint256) {
        return 1;
    }

    function postReviewOfToken(
        uint256 tokenId,
        string memory uri
    ) public override onlyRole(REVIEWER_ROLE) returns (uint256) {
        return super.postReviewOfToken(tokenId, uri);
    }

    function postReviewOfContract(
        string calldata uri
    ) public override onlyRole(REVIEWER_ROLE) returns (uint256) {
        return super.postReviewOfContract(uri);
    }

    function _baseReviewURI() internal view override returns (string memory) {
        return _baseReviewedURI;
    }

    function setBaseReviewURI(string memory newBaseURI) public onlyOwner {
        _baseReviewedURI = newBaseURI;
    }

    function setReviewURI(
        uint256 reviewId,
        string memory uri
    ) public onlyOwner {
        super._setReviewURI(reviewId, uri);
    }

    // ==========-==========-==========-==========-==========-==========
    // Multi Sales
    // ==========-==========-==========-==========-==========-==========

    event ChangeSale(uint8 oldId, uint8 newId);

    struct Sale {
        uint8 id;
        uint256 startTime;
        uint256 endTime;
        uint256 mintCost;
        uint216 maxSupply;
        bytes32 merkleRoot;
    }

    Sale internal _currentSale;
    mapping(address => mapping(uint8 => uint256)) internal _salesOfOwner;

    function getCurrentSale() external view returns (Sale memory) {
        return _currentSale;
    }

    function setCurrentSale(
        uint8 id,
        uint256 startTime,
        uint256 endTime,
        uint256 mintCost,
        uint216 maxSupply,
        bytes32 merkleRoot
    ) external onlyOwner {
        uint8 oldId = _currentSale.id;
        _currentSale = Sale({
            id: id,
            startTime: startTime,
            endTime: endTime,
            mintCost: mintCost,
            maxSupply: maxSupply,
            merkleRoot: merkleRoot
        });
        emit ChangeSale(oldId, id);
    }

    // ==========-==========-==========-==========-==========-==========
    // Mint
    // ==========-==========-==========-==========-==========-==========

    function ownerMint(
        address to,
        uint256 tokenId
    ) public onlyRole(MINTER_ROLE) {
        _safeMint(to, tokenId);
    }

    function mint(
        uint256 tokenId,
        uint256 maxMintAmount,
        bytes32[] memory merkleProof
    ) public payable whenNotPaused nonReentrant {
        //check
        require(_currentSale.id > 0, "Not for sale");
        require(
            block.timestamp >= _currentSale.startTime,
            "Sale has not started yet"
        );
        require(
            _currentSale.endTime == 0 || block.timestamp < _currentSale.endTime,
            "Sale has ended"
        );
        require(_currentSale.mintCost <= msg.value, "Insufficient funds");
        require(_currentSale.maxSupply > totalSupply(), "Max supply reached");
        require(_currentSale.maxSupply >= tokenId, "TokenId Invalid");

        if (_currentSale.merkleRoot > 0) {
            require(
                checkMerkleProof(msg.sender, maxMintAmount, merkleProof),
                "User is not allowlisted"
            );
            require(
                _salesOfOwner[msg.sender][_currentSale.id] < maxMintAmount,
                "Over max mint amount"
            );
            _salesOfOwner[msg.sender][_currentSale.id] += 1;
        }

        _safeMint(msg.sender, tokenId);
    }

    function checkMint(
        address minter,
        uint256 maxMintAmount,
        bytes32[] memory merkleProof
    ) public view returns (bool) {
        if (_currentSale.id == 0) {
            return false;
        }
        if (
            _currentSale.maxSupply > 0 &&
            _currentSale.maxSupply <= totalSupply()
        ) {
            return false;
        }
        if (_currentSale.merkleRoot == 0) {
            return true;
        }

        return
            checkMerkleProof(minter, maxMintAmount, merkleProof) &&
            _salesOfOwner[minter][_currentSale.id] < maxMintAmount;
    }

    function checkMerkleProof(
        address minter,
        uint256 maxMintAmount,
        bytes32[] memory merkleProof
    ) internal view returns (bool) {
        bytes32 leaf = keccak256(
            bytes.concat(keccak256(abi.encode(minter, maxMintAmount)))
        );
        return MerkleProof.verify(merkleProof, _currentSale.merkleRoot, leaf);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":false,"internalType":"uint8","name":"oldId","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"newId","type":"uint8"}],"name":"ChangeSale","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"reviewer","type":"address"},{"indexed":true,"internalType":"uint256","name":"reviewId","type":"uint256"}],"name":"ReviewContract","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"reviewer","type":"address"},{"indexed":true,"internalType":"uint256","name":"reviewId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ReviewToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldAddress","type":"address"},{"indexed":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"TransferWithdrawAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"payee","type":"address"},{"indexed":false,"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVIEWER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"uint256","name":"maxMintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"checkMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentSale","outputs":[{"components":[{"internalType":"uint8","name":"id","type":"uint8"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"mintCost","type":"uint256"},{"internalType":"uint216","name":"maxSupply","type":"uint216"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"internalType":"struct TransformArtNFT.Sale","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"maxMintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"postReviewOfContract","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"postReviewOfToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"reviewOfContractByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"reviewOfTokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reviewId","type":"uint256"}],"name":"reviewURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyFee","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseReviewURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseSuffix","type":"string"}],"name":"setBaseSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"id","type":"uint8"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"mintCost","type":"uint256"},{"internalType":"uint216","name":"maxSupply","type":"uint216"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setCurrentSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"value","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reviewId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"setReviewURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setWithdrawAddress","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":[{"internalType":"address","name":"user","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReviewsOfContract","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"totalReviewsOfToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052601480546001600160601b0319166103e81790553480156200002557600080fd5b5060405162004bb038038062004bb0833981016040819052620000489162000602565b733cc6cdda760b79bafa08df41ecfa224f810dceb66001838360006200006f8382620006fb565b5060016200007e8282620006fb565b5050600a805460ff1916905550620000963362000278565b6001600f556daaeb6d7670e522a718067333cd4e3b15620001e05780156200012e57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200010f57600080fd5b505af115801562000124573d6000803e3d6000fd5b50505050620001e0565b6001600160a01b038216156200017f5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620000f4565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001c657600080fd5b505af1158015620001db573d6000803e3d6000fd5b505050505b50506001601055620001f4600033620002ca565b620002207f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620002ca565b6200024c7fc10c77be35aff266144ed64c26a1fa104bae2f284ae99ac4a34203454704a18533620002ca565b601454620002659033906001600160601b03166200036f565b620002703362000474565b5050620007c7565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000828152600e602090815260408083206001600160a01b038516845290915290205460ff166200036b576000828152600e602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200032a3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6127106001600160601b0382161115620003e35760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b0382166200043b5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620003da565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600b55565b6200047e620004df565b601780546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527f248ee7a145f594d78d9abc07cd737c34cc9f3ddf34cd335963624cbb7f046738910160405180910390a15050565b600d546001600160a01b031633146200053b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003da565b565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200056557600080fd5b81516001600160401b03808211156200058257620005826200053d565b604051601f8301601f19908116603f01168101908282118183101715620005ad57620005ad6200053d565b81604052838152602092508683858801011115620005ca57600080fd5b600091505b83821015620005ee5785820183015181830184015290820190620005cf565b600093810190920192909252949350505050565b600080604083850312156200061657600080fd5b82516001600160401b03808211156200062e57600080fd5b6200063c8683870162000553565b935060208501519150808211156200065357600080fd5b50620006628582860162000553565b9150509250929050565b600181811c908216806200068157607f821691505b602082108103620006a257634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006f657600081815260208120601f850160051c81016020861015620006d15750805b601f850160051c820191505b81811015620006f257828155600101620006dd565b5050505b505050565b81516001600160401b038111156200071757620007176200053d565b6200072f816200072884546200066c565b84620006a8565b602080601f8311600181146200076757600084156200074e5750858301515b600019600386901b1c1916600185901b178555620006f2565b600085815260208120601f198616915b82811015620007985788860151825594840194600190910190840162000777565b5085821015620007b75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6143d980620007d76000396000f3fe6080604052600436106103605760003560e01c80634f6ccce7116101c657806393f3fe36116100f7578063b8997a9711610095578063d547741f1161006f578063d547741f14610b02578063e6d37b8814610b22578063e985e9c514610b35578063f2fde38b14610b7e57600080fd5b8063b8997a9714610a6c578063c87b56dd14610aae578063d539139314610ace57600080fd5b8063a217fddf116100d1578063a217fddf146109f7578063a22cb46514610a0c578063a5985f8d14610a2c578063b88d4fde14610a4c57600080fd5b806393f3fe36146109ad57806395d89b41146109c257806397c5eca8146109d757600080fd5b80637c523de1116101645780638462151c1161013e5780638462151c146108fc5780638836884b146109295780638da5cb5b1461094957806391d148541461096757600080fd5b80637c523de1146108a7578063840a6cca146108c75780638456cb59146108e757600080fd5b80635c975abb116101a05780635c975abb1461083a5780636352211e1461085257806370a0823114610872578063715018a61461089257600080fd5b80634f6ccce71461071757806355f804b3146107375780635c64bb721461075757600080fd5b80632f2ff15d116102a05780633ccfd60b1161023e57806341f7b8c21161021857806341f7b8c21461069757806342842e0e146106b7578063484b973c146106d75780634f558e79146106f757600080fd5b80633ccfd60b146106585780633f4ba83a1461066057806341f434341461067557600080fd5b806336568abe1161027a57806336568abe146105c457806339eeb5bd146105e45780633ab1a494146106045780633b129a561461062457600080fd5b80632f2ff15d146105645780632f745c5914610584578063356cf312146105a457600080fd5b80631581b6001161030d578063248a9ca3116102e7578063248a9ca3146104b557806327a3cd57146104e55780632a55205a146105055780632c7aa21b1461054457600080fd5b80631581b6001461045657806318160ddd1461047657806323b872dd1461049557600080fd5b806306fdde031161033e57806306fdde03146103dc578063081812fc146103fe578063095ea7b31461043657600080fd5b806301ffc9a714610365578063040dae821461039a57806304634d8d146103bc575b600080fd5b34801561037157600080fd5b506103856103803660046139a6565b610b9e565b60405190151581526020015b60405180910390f35b3480156103a657600080fd5b506103ba6103b5366004613a82565b610baf565b005b3480156103c857600080fd5b506103ba6103d7366004613ad3565b610bc7565b3480156103e857600080fd5b506103f1610bd9565b6040516103919190613b6b565b34801561040a57600080fd5b5061041e610419366004613b7e565b610c6b565b6040516001600160a01b039091168152602001610391565b34801561044257600080fd5b506103ba610451366004613b97565b610c92565b34801561046257600080fd5b5060175461041e906001600160a01b031681565b34801561048257600080fd5b506008545b604051908152602001610391565b3480156104a157600080fd5b506103ba6104b0366004613bc1565b610cab565b3480156104c157600080fd5b506104876104d0366004613b7e565b6000908152600e602052604090206001015490565b3480156104f157600080fd5b50610487610500366004613b7e565b610cd6565b34801561051157600080fd5b50610525610520366004613bfd565b610d7a565b604080516001600160a01b039093168352602083019190915201610391565b34801561055057600080fd5b5061038561055f366004613c9f565b610e35565b34801561057057600080fd5b506103ba61057f366004613cf6565b610eda565b34801561059057600080fd5b5061048761059f366004613b97565b610eff565b3480156105b057600080fd5b506103ba6105bf366004613d22565b610fa7565b3480156105d057600080fd5b506103ba6105df366004613cf6565b61107c565b3480156105f057600080fd5b506104876105ff366004613d92565b611104565b34801561061057600080fd5b506103ba61061f366004613e04565b611142565b34801561063057600080fd5b506104877fc10c77be35aff266144ed64c26a1fa104bae2f284ae99ac4a34203454704a18581565b6103ba6111ab565b34801561066c57600080fd5b506103ba611342565b34801561068157600080fd5b5061041e6daaeb6d7670e522a718067333cd4e81565b3480156106a357600080fd5b506104876106b2366004613b7e565b61135c565b3480156106c357600080fd5b506103ba6106d2366004613bc1565b61137a565b3480156106e357600080fd5b506103ba6106f2366004613b97565b61139f565b34801561070357600080fd5b50610385610712366004613b7e565b6113d3565b34801561072357600080fd5b50610487610732366004613b7e565b6113f2565b34801561074357600080fd5b506103ba610752366004613a82565b611484565b34801561076357600080fd5b506107e26040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a0810191909152506040805160c08101825260195460ff168152601a546020820152601b5491810191909152601c546060820152601d546001600160d81b03166080820152601e5460a082015290565b6040516103919190600060c08201905060ff83511682526020830151602083015260408301516040830152606083015160608301526001600160d81b03608084015116608083015260a083015160a083015292915050565b34801561084657600080fd5b50600a5460ff16610385565b34801561085e57600080fd5b5061041e61086d366004613b7e565b611498565b34801561087e57600080fd5b5061048761088d366004613e04565b6114fd565b34801561089e57600080fd5b506103ba611597565b3480156108b357600080fd5b506103ba6108c2366004613a82565b6115a9565b3480156108d357600080fd5b506104876108e2366004613e1f565b6115bd565b3480156108f357600080fd5b506103ba6115f3565b34801561090857600080fd5b5061091c610917366004613e04565b61160b565b6040516103919190613e66565b34801561093557600080fd5b50610487610944366004613bfd565b6116ad565b34801561095557600080fd5b50600d546001600160a01b031661041e565b34801561097357600080fd5b50610385610982366004613cf6565b6000918252600e602090815260408084206001600160a01b0393909316845291905290205460ff1690565b3480156109b957600080fd5b50601254610487565b3480156109ce57600080fd5b506103f161176e565b3480156109e357600080fd5b506103ba6109f2366004613e1f565b61177d565b348015610a0357600080fd5b50610487600081565b348015610a1857600080fd5b506103ba610a27366004613eb8565b61178f565b348015610a3857600080fd5b506103f1610a47366004613b7e565b6117a3565b348015610a5857600080fd5b506103ba610a67366004613ee4565b6118d9565b348015610a7857600080fd5b50601454610a91906bffffffffffffffffffffffff1681565b6040516bffffffffffffffffffffffff9091168152602001610391565b348015610aba57600080fd5b506103f1610ac9366004613b7e565b611906565b348015610ada57600080fd5b506104877f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b348015610b0e57600080fd5b506103ba610b1d366004613cf6565b6119f1565b6103ba610b30366004613f60565b611a16565b348015610b4157600080fd5b50610385610b50366004613f9a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610b8a57600080fd5b506103ba610b99366004613e04565b611d46565b6000610ba982611dd6565b92915050565b610bb7611e14565b6018610bc3828261404c565b5050565b610bcf611e14565b610bc38282611e6e565b606060008054610be890613fc4565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1490613fc4565b8015610c615780601f10610c3657610100808354040283529160200191610c61565b820191906000526020600020905b815481529060010190602001808311610c4457829003601f168201915b5050505050905090565b6000610c7682611f88565b506000908152600460205260409020546001600160a01b031690565b81610c9c81611fec565b610ca683836120d7565b505050565b826001600160a01b0381163314610cc557610cc533611fec565b610cd0848484612203565b50505050565b6012546000908210610d555760405162461bcd60e51b815260206004820152603560248201527f45524337323152657669657761626c653a20636f6e747261637420726576696560448201527f7720696e646578206f7574206f6620626f756e6473000000000000000000000060648201526084015b60405180910390fd5b60128281548110610d6857610d6861410c565b90600052602060002001549050919050565b6000828152600c602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046bffffffffffffffffffffffff16928201929092528291610df9575060408051808201909152600b546001600160a01b0381168252600160a01b90046bffffffffffffffffffffffff1660208201525b602081015160009061271090610e1d906bffffffffffffffffffffffff1687614138565b610e27919061414f565b915196919550909350505050565b60195460009060ff168103610e4c57506000610ed3565b601d546001600160d81b031615801590610e735750600854601d546001600160d81b031611155b15610e8057506000610ed3565b601e54600003610e9257506001610ed3565b610e9d84848461227a565b8015610ed057506001600160a01b0384166000908152601f6020908152604080832060195460ff16845290915290205483115b90505b9392505050565b6000828152600e6020526040902060010154610ef5816122e9565b610ca683836122f3565b6000610f0a836114fd565b8210610f7e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610d4c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610faf611e14565b601980546040805160c08101825260ff8a811680835260208084018c90528385018b9052606084018a90526001600160d81b0389166080850181905260a090940188905260ff1986168217909655601a8b9055601b8a9055601c899055601d80547fffffffffff00000000000000000000000000000000000000000000000000000016909317909255601e86905582519316808452938301527f75e3689da7799229d232f2c15fc530f1a386e47a961aea8ccc86ed74cfb4bd4f910160405180910390a150505050505050565b6001600160a01b03811633146110fa5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610d4c565b610bc38282612395565b60007fc10c77be35aff266144ed64c26a1fa104bae2f284ae99ac4a34203454704a185611130816122e9565b61113a8484612418565b949350505050565b61114a611e14565b601780546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527f248ee7a145f594d78d9abc07cd737c34cc9f3ddf34cd335963624cbb7f046738910160405180910390a15050565b6111b3611e14565b6017546001600160a01b031661120b5760405162461bcd60e51b815260206004820152601d60248201527f57697468647261772061646472657373206973203020616464726573730000006044820152606401610d4c565b47806112595760405162461bcd60e51b815260206004820152601260248201527f576974686472617720302042616c616e636500000000000000000000000000006044820152606401610d4c565b6017546040516000916001600160a01b03169083908381818185875af1925050503d80600081146112a6576040519150601f19603f3d011682016040523d82523d6000602084013e6112ab565b606091505b50509050806112fc5760405162461bcd60e51b815260206004820152600f60248201527f5769746864726177206661696c656400000000000000000000000000000000006044820152606401610d4c565b6017546040518381526001600160a01b03909116907f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d59060200160405180910390a25050565b61134a611e14565b61135261252b565b61135a61257d565b565b600061136782611f88565b5060009081526011602052604090205490565b826001600160a01b03811633146113945761139433611fec565b610cd08484846125cf565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66113c9816122e9565b610ca683836125ea565b6000818152600260205260408120546001600160a01b03161515610ba9565b60006113fd60085490565b82106114715760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610d4c565b60088281548110610d6857610d6861410c565b61148c611e14565b6015610bc3828261404c565b6000818152600260205260408120546001600160a01b031680610ba95760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610d4c565b60006001600160a01b03821661157b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610d4c565b506001600160a01b031660009081526003602052604090205490565b61159f611e14565b61135a6000612604565b6115b1611e14565b6016610bc3828261404c565b60007fc10c77be35aff266144ed64c26a1fa104bae2f284ae99ac4a34203454704a1856115e9816122e9565b61113a8484612656565b6115fb611e14565b61160361272e565b61135a612781565b60606000611618836114fd565b905060008167ffffffffffffffff811115611635576116356139c3565b60405190808252806020026020018201604052801561165e578160200160208202803683370190505b50905060005b828110156116a5576116768582610eff565b8282815181106116885761168861410c565b60209081029190910101528061169d81614171565b915050611664565b509392505050565b60006116b883611f88565b600083815260116020526040902054821061173b5760405162461bcd60e51b815260206004820152603260248201527f45524337323152657669657761626c653a20746f6b656e20726576696577206960448201527f6e646578206f7574206f6620626f756e647300000000000000000000000000006064820152608401610d4c565b600083815260116020526040902080548390811061175b5761175b61410c565b9060005260206000200154905092915050565b606060018054610be890613fc4565b611785611e14565b610bc382826127be565b8161179981611fec565b610ca683836127d6565b6000818152601360205260408120805460609291906117c190613fc4565b80601f01602080910402602001604051908101604052809291908181526020018280546117ed90613fc4565b801561183a5780601f1061180f5761010080835404028352916020019161183a565b820191906000526020600020905b81548152906001019060200180831161181d57829003601f168201915b5050505050905060008151116118925760405162461bcd60e51b815260206004820152601360248201527f4e6f7420457869737420526576696577555249000000000000000000000000006044820152606401610d4c565b600061189c6127e1565b905080516000036118ae575092915050565b80826040516020016118c192919061418a565b60405160208183030381529060405292505050919050565b836001600160a01b03811633146118f3576118f333611fec565b6118ff858585856127f0565b5050505050565b6000818152600260205260409020546060906001600160a01b03166119935760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610d4c565b600061199d612868565b905060008151116119bd5760405180602001604052806000815250610ed3565b806119c784612877565b60166040516020016119db939291906141b9565b6040516020818303038152906040529392505050565b6000828152600e6020526040902060010154611a0c816122e9565b610ca68383612395565b611a1e61272e565b611a26612917565b60195460ff16611a785760405162461bcd60e51b815260206004820152600c60248201527f4e6f7420666f722073616c6500000000000000000000000000000000000000006044820152606401610d4c565b601a54421015611aca5760405162461bcd60e51b815260206004820152601860248201527f53616c6520686173206e6f7420737461727465642079657400000000000000006044820152606401610d4c565b601b541580611ada5750601b5442105b611b265760405162461bcd60e51b815260206004820152600e60248201527f53616c652068617320656e6465640000000000000000000000000000000000006044820152606401610d4c565b601c54341015611b785760405162461bcd60e51b815260206004820152601260248201527f496e73756666696369656e742066756e647300000000000000000000000000006044820152606401610d4c565b600854601d546001600160d81b031611611bd45760405162461bcd60e51b815260206004820152601260248201527f4d617820737570706c79207265616368656400000000000000000000000000006044820152606401610d4c565b601d546001600160d81b0316831115611c2f5760405162461bcd60e51b815260206004820152600f60248201527f546f6b656e496420496e76616c696400000000000000000000000000000000006044820152606401610d4c565b601e5415611d3257611c4233838361227a565b611c8e5760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f7420616c6c6f776c69737465640000000000000000006044820152606401610d4c565b336000908152601f6020908152604080832060195460ff1684529091529020548211611cfc5760405162461bcd60e51b815260206004820152601460248201527f4f766572206d6178206d696e7420616d6f756e740000000000000000000000006044820152606401610d4c565b336000908152601f6020908152604080832060195460ff1684529091528120805460019290611d2c908490614259565b90915550505b611d3c33846125ea565b610ca66001600f55565b611d4e611e14565b6001600160a01b038116611dca5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d4c565b611dd381612604565b50565b60006001600160e01b031982167f65ed8512000000000000000000000000000000000000000000000000000000001480610ba95750610ba982612970565b600d546001600160a01b0316331461135a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d4c565b6127106bffffffffffffffffffffffff82161115611ef45760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610d4c565b6001600160a01b038216611f4a5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610d4c565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff9091166020909201829052600160a01b90910217600b55565b6000818152600260205260409020546001600160a01b0316611dd35760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610d4c565b6daaeb6d7670e522a718067333cd4e3b15611dd3576040517fc61711340000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612072573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612096919061426c565b611dd3576040517fede71dcc0000000000000000000000000000000000000000000000000000000081526001600160a01b0382166004820152602401610d4c565b60006120e282611498565b9050806001600160a01b0316836001600160a01b03160361216b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610d4c565b336001600160a01b038216148061218757506121878133610b50565b6121f95760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610d4c565b610ca683836129ae565b61220d3382612a1c565b61226f5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610d4c565b610ca6838383612a9a565b604080516001600160a01b0385166020820152908101839052600090819060600160408051601f19818403018152828252805160209182012090830152016040516020818303038152906040528051906020012090506122e08360196005015483612ca0565b95945050505050565b611dd38133612cb6565b6000828152600e602090815260408083206001600160a01b038516845290915290205460ff16610bc3576000828152600e602090815260408083206001600160a01b03851684529091529020805460ff191660011790556123513390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152600e602090815260408083206001600160a01b038516845290915290205460ff1615610bc3576000828152600e602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000816124675760405162461bcd60e51b815260206004820152601d60248201527f45524337323152657669657761626c653a20726571756972652055524c0000006044820152606401610d4c565b601054601280546001810182556000919091527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec344401819055604080516020601f86018190048102820181019092528481526124df9183919087908790819084018382808284376000920191909152506127be92505050565b6001601060008282546124f29190614259565b9091555050604051819033907f5aed4076d2663ce14917df27ec4554a6f9aadb37dbc7928cac0a5c7a870f038590600090a39392505050565b600a5460ff1661135a5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610d4c565b61258561252b565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610ca6838383604051806020016040528060008152506118d9565b610bc3828260405180602001604052806000815250612d2b565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061266183611f88565b60008251116126b25760405162461bcd60e51b815260206004820152601d60248201527f45524337323152657669657761626c653a20726571756972652055524c0000006044820152606401610d4c565b6010546000848152601160209081526040822080546001810182559083529120018190556126e081846127be565b6001601060008282546126f39190614259565b90915550506040518490829033907f3d197a5ffdfc9d4318d382d2893e71aa63a0b3d399f96b9d2918954e385d397990600090a49392505050565b600a5460ff161561135a5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610d4c565b61278961272e565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586125b23390565b6000828152601360205260409020610ca6828261404c565b610bc3338383612da9565b606060188054610be890613fc4565b6127fa3383612a1c565b61285c5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610d4c565b610cd084848484612e77565b606060158054610be890613fc4565b6060600061288483612ef5565b600101905060008167ffffffffffffffff8111156128a4576128a46139c3565b6040519080825280601f01601f1916602001820160405280156128ce576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85049450846128d857509392505050565b6002600f54036129695760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610d4c565b6002600f55565b60006001600160e01b031982167f7965db0b000000000000000000000000000000000000000000000000000000001480610ba95750610ba982612fd7565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906129e382611498565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080612a2883611498565b9050806001600160a01b0316846001600160a01b03161480612a6f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061113a5750836001600160a01b0316612a8884610c6b565b6001600160a01b031614949350505050565b826001600160a01b0316612aad82611498565b6001600160a01b031614612b115760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610d4c565b6001600160a01b038216612b8c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d4c565b612b998383836001613015565b826001600160a01b0316612bac82611498565b6001600160a01b031614612c105760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610d4c565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082612cad8584613021565b14949350505050565b6000828152600e602090815260408083206001600160a01b038516845290915290205460ff16610bc357612ce981613066565b612cf4836020613078565b604051602001612d05929190614289565b60408051601f198184030181529082905262461bcd60e51b8252610d4c91600401613b6b565b612d358383613259565b612d4260008484846133f2565b610ca65760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610d4c565b816001600160a01b0316836001600160a01b031603612e0a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610d4c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612e82848484612a9a565b612e8e848484846133f2565b610cd05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610d4c565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612f3e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310612f6a576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612f8857662386f26fc10000830492506010015b6305f5e1008310612fa0576305f5e100830492506008015b6127108310612fb457612710830492506004015b60648310612fc6576064830492506002015b600a8310610ba95760010192915050565b60006001600160e01b031982167f2a55205a000000000000000000000000000000000000000000000000000000001480610ba95750610ba98261353e565b610cd08484848461357c565b600081815b84518110156116a557613052828683815181106130455761304561410c565b6020026020010151613601565b91508061305e81614171565b915050613026565b6060610ba96001600160a01b03831660145b60606000613087836002614138565b613092906002614259565b67ffffffffffffffff8111156130aa576130aa6139c3565b6040519080825280601f01601f1916602001820160405280156130d4576020820181803683370190505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061310b5761310b61410c565b60200101906001600160f81b031916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106131565761315661410c565b60200101906001600160f81b031916908160001a905350600061317a846002614138565b613185906001614259565b90505b600181111561320a577f303132333435363738396162636465660000000000000000000000000000000085600f16601081106131c6576131c661410c565b1a60f81b8282815181106131dc576131dc61410c565b60200101906001600160f81b031916908160001a90535060049490941c936132038161430a565b9050613188565b508315610ed35760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610d4c565b6001600160a01b0382166132af5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610d4c565b6000818152600260205260409020546001600160a01b0316156133145760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d4c565b613322600083836001613015565b6000818152600260205260409020546001600160a01b0316156133875760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d4c565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561353357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613436903390899088908890600401614321565b6020604051808303816000875af1925050508015613471575060408051601f3d908101601f1916820190925261346e9181019061435d565b60015b613519573d80801561349f576040519150601f19603f3d011682016040523d82523d6000602084013e6134a4565b606091505b5080516000036135115760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610d4c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061113a565b506001949350505050565b60006001600160e01b031982167f780e9d63000000000000000000000000000000000000000000000000000000001480610ba95750610ba982613630565b613588848484846136cb565b600a5460ff1615610cd05760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201527f68696c65207061757365640000000000000000000000000000000000000000006064820152608401610d4c565b600081831061361d576000828152602084905260409020610ed3565b6000838152602083905260409020610ed3565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061369357506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610ba957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610ba9565b60018111156137425760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e736563757469766520747260448201527f616e7366657273206e6f7420737570706f7274656400000000000000000000006064820152608401610d4c565b816001600160a01b03851661379e5761379981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6137c1565b836001600160a01b0316856001600160a01b0316146137c1576137c18582613800565b6001600160a01b0384166137dd576137d88161389d565b6118ff565b846001600160a01b0316846001600160a01b0316146118ff576118ff848261394c565b6000600161380d846114fd565b613817919061437a565b60008381526007602052604090205490915080821461386a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906138af9060019061437a565b600083815260096020526040812054600880549394509092849081106138d7576138d761410c565b9060005260206000200154905080600883815481106138f8576138f861410c565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806139305761393061438d565b6001900381819060005260206000200160009055905550505050565b6000613957836114fd565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b031981168114611dd357600080fd5b6000602082840312156139b857600080fd5b8135610ed381613990565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613a0257613a026139c3565b604052919050565b600067ffffffffffffffff831115613a2457613a246139c3565b613a37601f8401601f19166020016139d9565b9050828152838383011115613a4b57600080fd5b828260208301376000602084830101529392505050565b600082601f830112613a7357600080fd5b610ed383833560208501613a0a565b600060208284031215613a9457600080fd5b813567ffffffffffffffff811115613aab57600080fd5b61113a84828501613a62565b80356001600160a01b0381168114613ace57600080fd5b919050565b60008060408385031215613ae657600080fd5b613aef83613ab7565b915060208301356bffffffffffffffffffffffff81168114613b1057600080fd5b809150509250929050565b60005b83811015613b36578181015183820152602001613b1e565b50506000910152565b60008151808452613b57816020860160208601613b1b565b601f01601f19169290920160200192915050565b602081526000610ed36020830184613b3f565b600060208284031215613b9057600080fd5b5035919050565b60008060408385031215613baa57600080fd5b613bb383613ab7565b946020939093013593505050565b600080600060608486031215613bd657600080fd5b613bdf84613ab7565b9250613bed60208501613ab7565b9150604084013590509250925092565b60008060408385031215613c1057600080fd5b50508035926020909101359150565b600082601f830112613c3057600080fd5b8135602067ffffffffffffffff821115613c4c57613c4c6139c3565b8160051b613c5b8282016139d9565b9283528481018201928281019087851115613c7557600080fd5b83870192505b84831015613c9457823582529183019190830190613c7b565b979650505050505050565b600080600060608486031215613cb457600080fd5b613cbd84613ab7565b925060208401359150604084013567ffffffffffffffff811115613ce057600080fd5b613cec86828701613c1f565b9150509250925092565b60008060408385031215613d0957600080fd5b82359150613d1960208401613ab7565b90509250929050565b60008060008060008060c08789031215613d3b57600080fd5b863560ff81168114613d4c57600080fd5b955060208701359450604087013593506060870135925060808701356001600160d81b0381168114613d7d57600080fd5b8092505060a087013590509295509295509295565b60008060208385031215613da557600080fd5b823567ffffffffffffffff80821115613dbd57600080fd5b818501915085601f830112613dd157600080fd5b813581811115613de057600080fd5b866020828501011115613df257600080fd5b60209290920196919550909350505050565b600060208284031215613e1657600080fd5b610ed382613ab7565b60008060408385031215613e3257600080fd5b82359150602083013567ffffffffffffffff811115613e5057600080fd5b613e5c85828601613a62565b9150509250929050565b6020808252825182820181905260009190848201906040850190845b81811015613e9e57835183529284019291840191600101613e82565b50909695505050505050565b8015158114611dd357600080fd5b60008060408385031215613ecb57600080fd5b613ed483613ab7565b91506020830135613b1081613eaa565b60008060008060808587031215613efa57600080fd5b613f0385613ab7565b9350613f1160208601613ab7565b925060408501359150606085013567ffffffffffffffff811115613f3457600080fd5b8501601f81018713613f4557600080fd5b613f5487823560208401613a0a565b91505092959194509250565b600080600060608486031215613f7557600080fd5b8335925060208401359150604084013567ffffffffffffffff811115613ce057600080fd5b60008060408385031215613fad57600080fd5b613fb683613ab7565b9150613d1960208401613ab7565b600181811c90821680613fd857607f821691505b602082108103613ff857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610ca657600081815260208120601f850160051c810160208610156140255750805b601f850160051c820191505b8181101561404457828155600101614031565b505050505050565b815167ffffffffffffffff811115614066576140666139c3565b61407a816140748454613fc4565b84613ffe565b602080601f8311600181146140af57600084156140975750858301515b600019600386901b1c1916600185901b178555614044565b600085815260208120601f198616915b828110156140de578886015182559484019460019091019084016140bf565b50858210156140fc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610ba957610ba9614122565b60008261416c57634e487b7160e01b600052601260045260246000fd5b500490565b60006001820161418357614183614122565b5060010190565b6000835161419c818460208801613b1b565b8351908301906141b0818360208801613b1b565b01949350505050565b6000845160206141cc8285838a01613b1b565b8551918401916141df8184848a01613b1b565b85549201916000906141f081613fc4565b60018281168015614208576001811461421d57614249565b60ff1984168752821515830287019450614249565b896000528560002060005b8481101561424157815489820152908301908701614228565b505082870194505b50929a9950505050505050505050565b80820180821115610ba957610ba9614122565b60006020828403121561427e57600080fd5b8151610ed381613eaa565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516142c1816017850160208801613b1b565b7f206973206d697373696e6720726f6c652000000000000000000000000000000060179184019182015283516142fe816028840160208801613b1b565b01602801949350505050565b60008161431957614319614122565b506000190190565b60006001600160a01b038087168352808616602084015250836040830152608060608301526143536080830184613b3f565b9695505050505050565b60006020828403121561436f57600080fd5b8151610ed381613990565b81810381811115610ba957610ba9614122565b634e487b7160e01b600052603160045260246000fdfea26469706673582212205ee7a57501b3dbddab347d342a6cf431e9ebd93fd06f80cbe8f9f620db62981764736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c487970657220536872696e650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b4859504552534852494e45000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103605760003560e01c80634f6ccce7116101c657806393f3fe36116100f7578063b8997a9711610095578063d547741f1161006f578063d547741f14610b02578063e6d37b8814610b22578063e985e9c514610b35578063f2fde38b14610b7e57600080fd5b8063b8997a9714610a6c578063c87b56dd14610aae578063d539139314610ace57600080fd5b8063a217fddf116100d1578063a217fddf146109f7578063a22cb46514610a0c578063a5985f8d14610a2c578063b88d4fde14610a4c57600080fd5b806393f3fe36146109ad57806395d89b41146109c257806397c5eca8146109d757600080fd5b80637c523de1116101645780638462151c1161013e5780638462151c146108fc5780638836884b146109295780638da5cb5b1461094957806391d148541461096757600080fd5b80637c523de1146108a7578063840a6cca146108c75780638456cb59146108e757600080fd5b80635c975abb116101a05780635c975abb1461083a5780636352211e1461085257806370a0823114610872578063715018a61461089257600080fd5b80634f6ccce71461071757806355f804b3146107375780635c64bb721461075757600080fd5b80632f2ff15d116102a05780633ccfd60b1161023e57806341f7b8c21161021857806341f7b8c21461069757806342842e0e146106b7578063484b973c146106d75780634f558e79146106f757600080fd5b80633ccfd60b146106585780633f4ba83a1461066057806341f434341461067557600080fd5b806336568abe1161027a57806336568abe146105c457806339eeb5bd146105e45780633ab1a494146106045780633b129a561461062457600080fd5b80632f2ff15d146105645780632f745c5914610584578063356cf312146105a457600080fd5b80631581b6001161030d578063248a9ca3116102e7578063248a9ca3146104b557806327a3cd57146104e55780632a55205a146105055780632c7aa21b1461054457600080fd5b80631581b6001461045657806318160ddd1461047657806323b872dd1461049557600080fd5b806306fdde031161033e57806306fdde03146103dc578063081812fc146103fe578063095ea7b31461043657600080fd5b806301ffc9a714610365578063040dae821461039a57806304634d8d146103bc575b600080fd5b34801561037157600080fd5b506103856103803660046139a6565b610b9e565b60405190151581526020015b60405180910390f35b3480156103a657600080fd5b506103ba6103b5366004613a82565b610baf565b005b3480156103c857600080fd5b506103ba6103d7366004613ad3565b610bc7565b3480156103e857600080fd5b506103f1610bd9565b6040516103919190613b6b565b34801561040a57600080fd5b5061041e610419366004613b7e565b610c6b565b6040516001600160a01b039091168152602001610391565b34801561044257600080fd5b506103ba610451366004613b97565b610c92565b34801561046257600080fd5b5060175461041e906001600160a01b031681565b34801561048257600080fd5b506008545b604051908152602001610391565b3480156104a157600080fd5b506103ba6104b0366004613bc1565b610cab565b3480156104c157600080fd5b506104876104d0366004613b7e565b6000908152600e602052604090206001015490565b3480156104f157600080fd5b50610487610500366004613b7e565b610cd6565b34801561051157600080fd5b50610525610520366004613bfd565b610d7a565b604080516001600160a01b039093168352602083019190915201610391565b34801561055057600080fd5b5061038561055f366004613c9f565b610e35565b34801561057057600080fd5b506103ba61057f366004613cf6565b610eda565b34801561059057600080fd5b5061048761059f366004613b97565b610eff565b3480156105b057600080fd5b506103ba6105bf366004613d22565b610fa7565b3480156105d057600080fd5b506103ba6105df366004613cf6565b61107c565b3480156105f057600080fd5b506104876105ff366004613d92565b611104565b34801561061057600080fd5b506103ba61061f366004613e04565b611142565b34801561063057600080fd5b506104877fc10c77be35aff266144ed64c26a1fa104bae2f284ae99ac4a34203454704a18581565b6103ba6111ab565b34801561066c57600080fd5b506103ba611342565b34801561068157600080fd5b5061041e6daaeb6d7670e522a718067333cd4e81565b3480156106a357600080fd5b506104876106b2366004613b7e565b61135c565b3480156106c357600080fd5b506103ba6106d2366004613bc1565b61137a565b3480156106e357600080fd5b506103ba6106f2366004613b97565b61139f565b34801561070357600080fd5b50610385610712366004613b7e565b6113d3565b34801561072357600080fd5b50610487610732366004613b7e565b6113f2565b34801561074357600080fd5b506103ba610752366004613a82565b611484565b34801561076357600080fd5b506107e26040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a0810191909152506040805160c08101825260195460ff168152601a546020820152601b5491810191909152601c546060820152601d546001600160d81b03166080820152601e5460a082015290565b6040516103919190600060c08201905060ff83511682526020830151602083015260408301516040830152606083015160608301526001600160d81b03608084015116608083015260a083015160a083015292915050565b34801561084657600080fd5b50600a5460ff16610385565b34801561085e57600080fd5b5061041e61086d366004613b7e565b611498565b34801561087e57600080fd5b5061048761088d366004613e04565b6114fd565b34801561089e57600080fd5b506103ba611597565b3480156108b357600080fd5b506103ba6108c2366004613a82565b6115a9565b3480156108d357600080fd5b506104876108e2366004613e1f565b6115bd565b3480156108f357600080fd5b506103ba6115f3565b34801561090857600080fd5b5061091c610917366004613e04565b61160b565b6040516103919190613e66565b34801561093557600080fd5b50610487610944366004613bfd565b6116ad565b34801561095557600080fd5b50600d546001600160a01b031661041e565b34801561097357600080fd5b50610385610982366004613cf6565b6000918252600e602090815260408084206001600160a01b0393909316845291905290205460ff1690565b3480156109b957600080fd5b50601254610487565b3480156109ce57600080fd5b506103f161176e565b3480156109e357600080fd5b506103ba6109f2366004613e1f565b61177d565b348015610a0357600080fd5b50610487600081565b348015610a1857600080fd5b506103ba610a27366004613eb8565b61178f565b348015610a3857600080fd5b506103f1610a47366004613b7e565b6117a3565b348015610a5857600080fd5b506103ba610a67366004613ee4565b6118d9565b348015610a7857600080fd5b50601454610a91906bffffffffffffffffffffffff1681565b6040516bffffffffffffffffffffffff9091168152602001610391565b348015610aba57600080fd5b506103f1610ac9366004613b7e565b611906565b348015610ada57600080fd5b506104877f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b348015610b0e57600080fd5b506103ba610b1d366004613cf6565b6119f1565b6103ba610b30366004613f60565b611a16565b348015610b4157600080fd5b50610385610b50366004613f9a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610b8a57600080fd5b506103ba610b99366004613e04565b611d46565b6000610ba982611dd6565b92915050565b610bb7611e14565b6018610bc3828261404c565b5050565b610bcf611e14565b610bc38282611e6e565b606060008054610be890613fc4565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1490613fc4565b8015610c615780601f10610c3657610100808354040283529160200191610c61565b820191906000526020600020905b815481529060010190602001808311610c4457829003601f168201915b5050505050905090565b6000610c7682611f88565b506000908152600460205260409020546001600160a01b031690565b81610c9c81611fec565b610ca683836120d7565b505050565b826001600160a01b0381163314610cc557610cc533611fec565b610cd0848484612203565b50505050565b6012546000908210610d555760405162461bcd60e51b815260206004820152603560248201527f45524337323152657669657761626c653a20636f6e747261637420726576696560448201527f7720696e646578206f7574206f6620626f756e6473000000000000000000000060648201526084015b60405180910390fd5b60128281548110610d6857610d6861410c565b90600052602060002001549050919050565b6000828152600c602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046bffffffffffffffffffffffff16928201929092528291610df9575060408051808201909152600b546001600160a01b0381168252600160a01b90046bffffffffffffffffffffffff1660208201525b602081015160009061271090610e1d906bffffffffffffffffffffffff1687614138565b610e27919061414f565b915196919550909350505050565b60195460009060ff168103610e4c57506000610ed3565b601d546001600160d81b031615801590610e735750600854601d546001600160d81b031611155b15610e8057506000610ed3565b601e54600003610e9257506001610ed3565b610e9d84848461227a565b8015610ed057506001600160a01b0384166000908152601f6020908152604080832060195460ff16845290915290205483115b90505b9392505050565b6000828152600e6020526040902060010154610ef5816122e9565b610ca683836122f3565b6000610f0a836114fd565b8210610f7e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610d4c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610faf611e14565b601980546040805160c08101825260ff8a811680835260208084018c90528385018b9052606084018a90526001600160d81b0389166080850181905260a090940188905260ff1986168217909655601a8b9055601b8a9055601c899055601d80547fffffffffff00000000000000000000000000000000000000000000000000000016909317909255601e86905582519316808452938301527f75e3689da7799229d232f2c15fc530f1a386e47a961aea8ccc86ed74cfb4bd4f910160405180910390a150505050505050565b6001600160a01b03811633146110fa5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610d4c565b610bc38282612395565b60007fc10c77be35aff266144ed64c26a1fa104bae2f284ae99ac4a34203454704a185611130816122e9565b61113a8484612418565b949350505050565b61114a611e14565b601780546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527f248ee7a145f594d78d9abc07cd737c34cc9f3ddf34cd335963624cbb7f046738910160405180910390a15050565b6111b3611e14565b6017546001600160a01b031661120b5760405162461bcd60e51b815260206004820152601d60248201527f57697468647261772061646472657373206973203020616464726573730000006044820152606401610d4c565b47806112595760405162461bcd60e51b815260206004820152601260248201527f576974686472617720302042616c616e636500000000000000000000000000006044820152606401610d4c565b6017546040516000916001600160a01b03169083908381818185875af1925050503d80600081146112a6576040519150601f19603f3d011682016040523d82523d6000602084013e6112ab565b606091505b50509050806112fc5760405162461bcd60e51b815260206004820152600f60248201527f5769746864726177206661696c656400000000000000000000000000000000006044820152606401610d4c565b6017546040518381526001600160a01b03909116907f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d59060200160405180910390a25050565b61134a611e14565b61135261252b565b61135a61257d565b565b600061136782611f88565b5060009081526011602052604090205490565b826001600160a01b03811633146113945761139433611fec565b610cd08484846125cf565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66113c9816122e9565b610ca683836125ea565b6000818152600260205260408120546001600160a01b03161515610ba9565b60006113fd60085490565b82106114715760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610d4c565b60088281548110610d6857610d6861410c565b61148c611e14565b6015610bc3828261404c565b6000818152600260205260408120546001600160a01b031680610ba95760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610d4c565b60006001600160a01b03821661157b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610d4c565b506001600160a01b031660009081526003602052604090205490565b61159f611e14565b61135a6000612604565b6115b1611e14565b6016610bc3828261404c565b60007fc10c77be35aff266144ed64c26a1fa104bae2f284ae99ac4a34203454704a1856115e9816122e9565b61113a8484612656565b6115fb611e14565b61160361272e565b61135a612781565b60606000611618836114fd565b905060008167ffffffffffffffff811115611635576116356139c3565b60405190808252806020026020018201604052801561165e578160200160208202803683370190505b50905060005b828110156116a5576116768582610eff565b8282815181106116885761168861410c565b60209081029190910101528061169d81614171565b915050611664565b509392505050565b60006116b883611f88565b600083815260116020526040902054821061173b5760405162461bcd60e51b815260206004820152603260248201527f45524337323152657669657761626c653a20746f6b656e20726576696577206960448201527f6e646578206f7574206f6620626f756e647300000000000000000000000000006064820152608401610d4c565b600083815260116020526040902080548390811061175b5761175b61410c565b9060005260206000200154905092915050565b606060018054610be890613fc4565b611785611e14565b610bc382826127be565b8161179981611fec565b610ca683836127d6565b6000818152601360205260408120805460609291906117c190613fc4565b80601f01602080910402602001604051908101604052809291908181526020018280546117ed90613fc4565b801561183a5780601f1061180f5761010080835404028352916020019161183a565b820191906000526020600020905b81548152906001019060200180831161181d57829003601f168201915b5050505050905060008151116118925760405162461bcd60e51b815260206004820152601360248201527f4e6f7420457869737420526576696577555249000000000000000000000000006044820152606401610d4c565b600061189c6127e1565b905080516000036118ae575092915050565b80826040516020016118c192919061418a565b60405160208183030381529060405292505050919050565b836001600160a01b03811633146118f3576118f333611fec565b6118ff858585856127f0565b5050505050565b6000818152600260205260409020546060906001600160a01b03166119935760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610d4c565b600061199d612868565b905060008151116119bd5760405180602001604052806000815250610ed3565b806119c784612877565b60166040516020016119db939291906141b9565b6040516020818303038152906040529392505050565b6000828152600e6020526040902060010154611a0c816122e9565b610ca68383612395565b611a1e61272e565b611a26612917565b60195460ff16611a785760405162461bcd60e51b815260206004820152600c60248201527f4e6f7420666f722073616c6500000000000000000000000000000000000000006044820152606401610d4c565b601a54421015611aca5760405162461bcd60e51b815260206004820152601860248201527f53616c6520686173206e6f7420737461727465642079657400000000000000006044820152606401610d4c565b601b541580611ada5750601b5442105b611b265760405162461bcd60e51b815260206004820152600e60248201527f53616c652068617320656e6465640000000000000000000000000000000000006044820152606401610d4c565b601c54341015611b785760405162461bcd60e51b815260206004820152601260248201527f496e73756666696369656e742066756e647300000000000000000000000000006044820152606401610d4c565b600854601d546001600160d81b031611611bd45760405162461bcd60e51b815260206004820152601260248201527f4d617820737570706c79207265616368656400000000000000000000000000006044820152606401610d4c565b601d546001600160d81b0316831115611c2f5760405162461bcd60e51b815260206004820152600f60248201527f546f6b656e496420496e76616c696400000000000000000000000000000000006044820152606401610d4c565b601e5415611d3257611c4233838361227a565b611c8e5760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f7420616c6c6f776c69737465640000000000000000006044820152606401610d4c565b336000908152601f6020908152604080832060195460ff1684529091529020548211611cfc5760405162461bcd60e51b815260206004820152601460248201527f4f766572206d6178206d696e7420616d6f756e740000000000000000000000006044820152606401610d4c565b336000908152601f6020908152604080832060195460ff1684529091528120805460019290611d2c908490614259565b90915550505b611d3c33846125ea565b610ca66001600f55565b611d4e611e14565b6001600160a01b038116611dca5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d4c565b611dd381612604565b50565b60006001600160e01b031982167f65ed8512000000000000000000000000000000000000000000000000000000001480610ba95750610ba982612970565b600d546001600160a01b0316331461135a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d4c565b6127106bffffffffffffffffffffffff82161115611ef45760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610d4c565b6001600160a01b038216611f4a5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610d4c565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff9091166020909201829052600160a01b90910217600b55565b6000818152600260205260409020546001600160a01b0316611dd35760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610d4c565b6daaeb6d7670e522a718067333cd4e3b15611dd3576040517fc61711340000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612072573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612096919061426c565b611dd3576040517fede71dcc0000000000000000000000000000000000000000000000000000000081526001600160a01b0382166004820152602401610d4c565b60006120e282611498565b9050806001600160a01b0316836001600160a01b03160361216b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610d4c565b336001600160a01b038216148061218757506121878133610b50565b6121f95760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610d4c565b610ca683836129ae565b61220d3382612a1c565b61226f5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610d4c565b610ca6838383612a9a565b604080516001600160a01b0385166020820152908101839052600090819060600160408051601f19818403018152828252805160209182012090830152016040516020818303038152906040528051906020012090506122e08360196005015483612ca0565b95945050505050565b611dd38133612cb6565b6000828152600e602090815260408083206001600160a01b038516845290915290205460ff16610bc3576000828152600e602090815260408083206001600160a01b03851684529091529020805460ff191660011790556123513390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152600e602090815260408083206001600160a01b038516845290915290205460ff1615610bc3576000828152600e602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000816124675760405162461bcd60e51b815260206004820152601d60248201527f45524337323152657669657761626c653a20726571756972652055524c0000006044820152606401610d4c565b601054601280546001810182556000919091527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec344401819055604080516020601f86018190048102820181019092528481526124df9183919087908790819084018382808284376000920191909152506127be92505050565b6001601060008282546124f29190614259565b9091555050604051819033907f5aed4076d2663ce14917df27ec4554a6f9aadb37dbc7928cac0a5c7a870f038590600090a39392505050565b600a5460ff1661135a5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610d4c565b61258561252b565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610ca6838383604051806020016040528060008152506118d9565b610bc3828260405180602001604052806000815250612d2b565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061266183611f88565b60008251116126b25760405162461bcd60e51b815260206004820152601d60248201527f45524337323152657669657761626c653a20726571756972652055524c0000006044820152606401610d4c565b6010546000848152601160209081526040822080546001810182559083529120018190556126e081846127be565b6001601060008282546126f39190614259565b90915550506040518490829033907f3d197a5ffdfc9d4318d382d2893e71aa63a0b3d399f96b9d2918954e385d397990600090a49392505050565b600a5460ff161561135a5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610d4c565b61278961272e565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586125b23390565b6000828152601360205260409020610ca6828261404c565b610bc3338383612da9565b606060188054610be890613fc4565b6127fa3383612a1c565b61285c5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610d4c565b610cd084848484612e77565b606060158054610be890613fc4565b6060600061288483612ef5565b600101905060008167ffffffffffffffff8111156128a4576128a46139c3565b6040519080825280601f01601f1916602001820160405280156128ce576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85049450846128d857509392505050565b6002600f54036129695760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610d4c565b6002600f55565b60006001600160e01b031982167f7965db0b000000000000000000000000000000000000000000000000000000001480610ba95750610ba982612fd7565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906129e382611498565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080612a2883611498565b9050806001600160a01b0316846001600160a01b03161480612a6f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061113a5750836001600160a01b0316612a8884610c6b565b6001600160a01b031614949350505050565b826001600160a01b0316612aad82611498565b6001600160a01b031614612b115760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610d4c565b6001600160a01b038216612b8c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d4c565b612b998383836001613015565b826001600160a01b0316612bac82611498565b6001600160a01b031614612c105760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610d4c565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082612cad8584613021565b14949350505050565b6000828152600e602090815260408083206001600160a01b038516845290915290205460ff16610bc357612ce981613066565b612cf4836020613078565b604051602001612d05929190614289565b60408051601f198184030181529082905262461bcd60e51b8252610d4c91600401613b6b565b612d358383613259565b612d4260008484846133f2565b610ca65760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610d4c565b816001600160a01b0316836001600160a01b031603612e0a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610d4c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612e82848484612a9a565b612e8e848484846133f2565b610cd05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610d4c565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612f3e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310612f6a576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612f8857662386f26fc10000830492506010015b6305f5e1008310612fa0576305f5e100830492506008015b6127108310612fb457612710830492506004015b60648310612fc6576064830492506002015b600a8310610ba95760010192915050565b60006001600160e01b031982167f2a55205a000000000000000000000000000000000000000000000000000000001480610ba95750610ba98261353e565b610cd08484848461357c565b600081815b84518110156116a557613052828683815181106130455761304561410c565b6020026020010151613601565b91508061305e81614171565b915050613026565b6060610ba96001600160a01b03831660145b60606000613087836002614138565b613092906002614259565b67ffffffffffffffff8111156130aa576130aa6139c3565b6040519080825280601f01601f1916602001820160405280156130d4576020820181803683370190505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061310b5761310b61410c565b60200101906001600160f81b031916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106131565761315661410c565b60200101906001600160f81b031916908160001a905350600061317a846002614138565b613185906001614259565b90505b600181111561320a577f303132333435363738396162636465660000000000000000000000000000000085600f16601081106131c6576131c661410c565b1a60f81b8282815181106131dc576131dc61410c565b60200101906001600160f81b031916908160001a90535060049490941c936132038161430a565b9050613188565b508315610ed35760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610d4c565b6001600160a01b0382166132af5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610d4c565b6000818152600260205260409020546001600160a01b0316156133145760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d4c565b613322600083836001613015565b6000818152600260205260409020546001600160a01b0316156133875760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d4c565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561353357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613436903390899088908890600401614321565b6020604051808303816000875af1925050508015613471575060408051601f3d908101601f1916820190925261346e9181019061435d565b60015b613519573d80801561349f576040519150601f19603f3d011682016040523d82523d6000602084013e6134a4565b606091505b5080516000036135115760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610d4c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061113a565b506001949350505050565b60006001600160e01b031982167f780e9d63000000000000000000000000000000000000000000000000000000001480610ba95750610ba982613630565b613588848484846136cb565b600a5460ff1615610cd05760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201527f68696c65207061757365640000000000000000000000000000000000000000006064820152608401610d4c565b600081831061361d576000828152602084905260409020610ed3565b6000838152602083905260409020610ed3565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061369357506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610ba957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610ba9565b60018111156137425760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e736563757469766520747260448201527f616e7366657273206e6f7420737570706f7274656400000000000000000000006064820152608401610d4c565b816001600160a01b03851661379e5761379981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6137c1565b836001600160a01b0316856001600160a01b0316146137c1576137c18582613800565b6001600160a01b0384166137dd576137d88161389d565b6118ff565b846001600160a01b0316846001600160a01b0316146118ff576118ff848261394c565b6000600161380d846114fd565b613817919061437a565b60008381526007602052604090205490915080821461386a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906138af9060019061437a565b600083815260096020526040812054600880549394509092849081106138d7576138d761410c565b9060005260206000200154905080600883815481106138f8576138f861410c565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806139305761393061438d565b6001900381819060005260206000200160009055905550505050565b6000613957836114fd565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b031981168114611dd357600080fd5b6000602082840312156139b857600080fd5b8135610ed381613990565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613a0257613a026139c3565b604052919050565b600067ffffffffffffffff831115613a2457613a246139c3565b613a37601f8401601f19166020016139d9565b9050828152838383011115613a4b57600080fd5b828260208301376000602084830101529392505050565b600082601f830112613a7357600080fd5b610ed383833560208501613a0a565b600060208284031215613a9457600080fd5b813567ffffffffffffffff811115613aab57600080fd5b61113a84828501613a62565b80356001600160a01b0381168114613ace57600080fd5b919050565b60008060408385031215613ae657600080fd5b613aef83613ab7565b915060208301356bffffffffffffffffffffffff81168114613b1057600080fd5b809150509250929050565b60005b83811015613b36578181015183820152602001613b1e565b50506000910152565b60008151808452613b57816020860160208601613b1b565b601f01601f19169290920160200192915050565b602081526000610ed36020830184613b3f565b600060208284031215613b9057600080fd5b5035919050565b60008060408385031215613baa57600080fd5b613bb383613ab7565b946020939093013593505050565b600080600060608486031215613bd657600080fd5b613bdf84613ab7565b9250613bed60208501613ab7565b9150604084013590509250925092565b60008060408385031215613c1057600080fd5b50508035926020909101359150565b600082601f830112613c3057600080fd5b8135602067ffffffffffffffff821115613c4c57613c4c6139c3565b8160051b613c5b8282016139d9565b9283528481018201928281019087851115613c7557600080fd5b83870192505b84831015613c9457823582529183019190830190613c7b565b979650505050505050565b600080600060608486031215613cb457600080fd5b613cbd84613ab7565b925060208401359150604084013567ffffffffffffffff811115613ce057600080fd5b613cec86828701613c1f565b9150509250925092565b60008060408385031215613d0957600080fd5b82359150613d1960208401613ab7565b90509250929050565b60008060008060008060c08789031215613d3b57600080fd5b863560ff81168114613d4c57600080fd5b955060208701359450604087013593506060870135925060808701356001600160d81b0381168114613d7d57600080fd5b8092505060a087013590509295509295509295565b60008060208385031215613da557600080fd5b823567ffffffffffffffff80821115613dbd57600080fd5b818501915085601f830112613dd157600080fd5b813581811115613de057600080fd5b866020828501011115613df257600080fd5b60209290920196919550909350505050565b600060208284031215613e1657600080fd5b610ed382613ab7565b60008060408385031215613e3257600080fd5b82359150602083013567ffffffffffffffff811115613e5057600080fd5b613e5c85828601613a62565b9150509250929050565b6020808252825182820181905260009190848201906040850190845b81811015613e9e57835183529284019291840191600101613e82565b50909695505050505050565b8015158114611dd357600080fd5b60008060408385031215613ecb57600080fd5b613ed483613ab7565b91506020830135613b1081613eaa565b60008060008060808587031215613efa57600080fd5b613f0385613ab7565b9350613f1160208601613ab7565b925060408501359150606085013567ffffffffffffffff811115613f3457600080fd5b8501601f81018713613f4557600080fd5b613f5487823560208401613a0a565b91505092959194509250565b600080600060608486031215613f7557600080fd5b8335925060208401359150604084013567ffffffffffffffff811115613ce057600080fd5b60008060408385031215613fad57600080fd5b613fb683613ab7565b9150613d1960208401613ab7565b600181811c90821680613fd857607f821691505b602082108103613ff857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610ca657600081815260208120601f850160051c810160208610156140255750805b601f850160051c820191505b8181101561404457828155600101614031565b505050505050565b815167ffffffffffffffff811115614066576140666139c3565b61407a816140748454613fc4565b84613ffe565b602080601f8311600181146140af57600084156140975750858301515b600019600386901b1c1916600185901b178555614044565b600085815260208120601f198616915b828110156140de578886015182559484019460019091019084016140bf565b50858210156140fc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610ba957610ba9614122565b60008261416c57634e487b7160e01b600052601260045260246000fd5b500490565b60006001820161418357614183614122565b5060010190565b6000835161419c818460208801613b1b565b8351908301906141b0818360208801613b1b565b01949350505050565b6000845160206141cc8285838a01613b1b565b8551918401916141df8184848a01613b1b565b85549201916000906141f081613fc4565b60018281168015614208576001811461421d57614249565b60ff1984168752821515830287019450614249565b896000528560002060005b8481101561424157815489820152908301908701614228565b505082870194505b50929a9950505050505050505050565b80820180821115610ba957610ba9614122565b60006020828403121561427e57600080fd5b8151610ed381613eaa565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516142c1816017850160208801613b1b565b7f206973206d697373696e6720726f6c652000000000000000000000000000000060179184019182015283516142fe816028840160208801613b1b565b01602801949350505050565b60008161431957614319614122565b506000190190565b60006001600160a01b038087168352808616602084015250836040830152608060608301526143536080830184613b3f565b9695505050505050565b60006020828403121561436f57600080fd5b8151610ed381613990565b81810381811115610ba957610ba9614122565b634e487b7160e01b600052603160045260246000fdfea26469706673582212205ee7a57501b3dbddab347d342a6cf431e9ebd93fd06f80cbe8f9f620db62981764736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c487970657220536872696e650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b4859504552534852494e45000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Hyper Shrine
Arg [1] : symbol (string): HYPERSHRINE

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [3] : 487970657220536872696e650000000000000000000000000000000000000000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 4859504552534852494e45000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

112868:10423:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113961:346;;;;;;;;;;-1:-1:-1;113961:346:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;113961:346:0;;;;;;;;119307:117;;;;;;;;;;-1:-1:-1;119307:117:0;;;;;:::i;:::-;;:::i;:::-;;115891:157;;;;;;;;;;-1:-1:-1;115891:157:0;;;;;:::i;:::-;;:::i;36170:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37682:171::-;;;;;;;;;;-1:-1:-1;37682:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3750:55:1;;;3732:74;;3720:2;3705:18;37682:171:0;3586:226:1;117682:199:0;;;;;;;;;;-1:-1:-1;117682:199:0;;;;;:::i;:::-;;:::i;116579:30::-;;;;;;;;;;-1:-1:-1;116579:30:0;;;;-1:-1:-1;;;;;116579:30:0;;;54656:113;;;;;;;;;;-1:-1:-1;54744:10:0;:17;54656:113;;;4222:25:1;;;4210:2;4195:18;54656:113:0;4076:177:1;117889:214:0;;;;;;;;;;-1:-1:-1;117889:214:0;;;;;:::i;:::-;;:::i;85446:131::-;;;;;;;;;;-1:-1:-1;85446:131:0;;;;;:::i;:::-;85520:7;85547:12;;;:6;:12;;;;;:22;;;;85446:131;110984:313;;;;;;;;;;-1:-1:-1;110984:313:0;;;;;:::i;:::-;;:::i;66210:442::-;;;;;;;;;;-1:-1:-1;66210:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;5403:55:1;;;5385:74;;5490:2;5475:18;;5468:34;;;;5358:18;66210:442:0;5211:297:1;122284:631:0;;;;;;;;;;-1:-1:-1;122284:631:0;;;;;:::i;:::-;;:::i;85887:147::-;;;;;;;;;;-1:-1:-1;85887:147:0;;;;;:::i;:::-;;:::i;54324:256::-;;;;;;;;;;-1:-1:-1;54324:256:0;;;;;:::i;:::-;;:::i;120218:527::-;;;;;;;;;;-1:-1:-1;120218:527:0;;;;;:::i;:::-;;:::i;87031:218::-;;;;;;;;;;-1:-1:-1;87031:218:0;;;;;:::i;:::-;;:::i;118994:182::-;;;;;;;;;;-1:-1:-1;118994:182:0;;;;;:::i;:::-;;:::i;116760:222::-;;;;;;;;;;-1:-1:-1;116760:222:0;;;;;:::i;:::-;;:::i;113379:66::-;;;;;;;;;;;;113419:26;113379:66;;116990:422;;;:::i;116169:78::-;;;;;;;;;;;;;:::i;102046:143::-;;;;;;;;;;;;946:42;102046:143;;108383:200;;;;;;;;;;-1:-1:-1;108383:200:0;;;;;:::i;:::-;;:::i;118111:222::-;;;;;;;;;;-1:-1:-1;118111:222:0;;;;;:::i;:::-;;:::i;120916:143::-;;;;;;;;;;-1:-1:-1;120916:143:0;;;;;:::i;:::-;;:::i;114340:104::-;;;;;;;;;;-1:-1:-1;114340:104:0;;;;;:::i;:::-;;:::i;54846:233::-;;;;;;;;;;-1:-1:-1;54846:233:0;;;;;:::i;:::-;;:::i;115011:108::-;;;;;;;;;;-1:-1:-1;115011:108:0;;;;;:::i;:::-;;:::i;120110:100::-;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120183:19:0;;;;;;;;120190:12;120183:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;120183:19:0;;;;;;;;;;;;120110:100;;;;;;;8939:4:1;8981:3;8970:9;8966:19;8958:27;;9031:4;9022:6;9016:13;9012:24;9001:9;8994:43;9093:4;9085:6;9081:17;9075:24;9068:4;9057:9;9053:20;9046:54;9156:4;9148:6;9144:17;9138:24;9131:4;9120:9;9116:20;9109:54;9219:4;9211:6;9207:17;9201:24;9194:4;9183:9;9179:20;9172:54;-1:-1:-1;;;;;9286:4:1;9278:6;9274:17;9268:24;9264:87;9257:4;9246:9;9242:20;9235:117;9408:4;9400:6;9396:17;9390:24;9383:4;9372:9;9368:20;9361:54;8803:618;;;;;61649:86:0;;;;;;;;;;-1:-1:-1;61720:7:0;;;;61649:86;;35880:223;;;;;;;;;;-1:-1:-1;35880:223:0;;;;;:::i;:::-;;:::i;35611:207::-;;;;;;;;;;-1:-1:-1;35611:207:0;;;;;:::i;:::-;;:::i;91099:103::-;;;;;;;;;;;;;:::i;115127:115::-;;;;;;;;;;-1:-1:-1;115127:115:0;;;;;:::i;:::-;;:::i;118777:209::-;;;;;;;;;;-1:-1:-1;118777:209:0;;;;;:::i;:::-;;:::i;116084:77::-;;;;;;;;;;;;;:::i;114452:331::-;;;;;;;;;;-1:-1:-1;114452:331:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;110065:375::-;;;;;;;;;;-1:-1:-1;110065:375:0;;;;;:::i;:::-;;:::i;90451:87::-;;;;;;;;;;-1:-1:-1;90524:6:0;;-1:-1:-1;;;;;90524:6:0;90451:87;;83919:147;;;;;;;;;;-1:-1:-1;83919:147:0;;;;;:::i;:::-;84005:4;84029:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;84029:29:0;;;;;;;;;;;;;;;83919:147;108672:184;;;;;;;;;;-1:-1:-1;108821:20:0;:27;108672:184;;36339:104;;;;;;;;;;;;;:::i;119432:154::-;;;;;;;;;;-1:-1:-1;119432:154:0;;;;;:::i;:::-;;:::i;83024:49::-;;;;;;;;;;-1:-1:-1;83024:49:0;83069:4;83024:49;;117456:218;;;;;;;;;;-1:-1:-1;117456:218:0;;;;;:::i;:::-;;:::i;111364:528::-;;;;;;;;;;-1:-1:-1;111364:528:0;;;;;:::i;:::-;;:::i;118341:256::-;;;;;;;;;;-1:-1:-1;118341:256:0;;;;;:::i;:::-;;:::i;113270:31::-;;;;;;;;;;-1:-1:-1;113270:31:0;;;;;;;;;;;11747:26:1;11735:39;;;11717:58;;11705:2;11690:18;113270:31:0;11573:208:1;115250:606:0;;;;;;;;;;-1:-1:-1;115250:606:0;;;;;:::i;:::-;;:::i;113310:62::-;;;;;;;;;;;;113348:24;113310:62;;86327:149;;;;;;;;;;-1:-1:-1;86327:149:0;;;;;:::i;:::-;;:::i;121067:1209::-;;;;;;:::i;:::-;;:::i;38151:164::-;;;;;;;;;;-1:-1:-1;38151:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;38272:25:0;;;38248:4;38272:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38151:164;91357:201;;;;;;;;;;-1:-1:-1;91357:201:0;;;;;:::i;:::-;;:::i;113961:346::-;114234:4;114263:36;114287:11;114263:23;:36::i;:::-;114256:43;113961:346;-1:-1:-1;;113961:346:0:o;119307:117::-;90337:13;:11;:13::i;:::-;119387:16:::1;:29;119406:10:::0;119387:16;:29:::1;:::i;:::-;;119307:117:::0;:::o;115891:157::-;90337:13;:11;:13::i;:::-;116005:35:::1;116024:8;116034:5;116005:18;:35::i;36170:100::-:0;36224:13;36257:5;36250:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36170:100;:::o;37682:171::-;37758:7;37778:23;37793:7;37778:14;:23::i;:::-;-1:-1:-1;37821:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37821:24:0;;37682:171::o;117682:199::-;117820:8;103828:30;103849:8;103828:20;:30::i;:::-;117841:32:::1;117855:8;117865:7;117841:13;:32::i;:::-;117682:199:::0;;;:::o;117889:214::-;118041:4;-1:-1:-1;;;;;103554:18:0;;103562:10;103554:18;103550:83;;103589:32;103610:10;103589:20;:32::i;:::-;118058:37:::1;118077:4;118083:2;118087:7;118058:18;:37::i;:::-;117889:214:::0;;;;:::o;110984:313::-;111128:20;:27;111086:7;;111128:35;-1:-1:-1;111106:138:0;;;;-1:-1:-1;;;111106:138:0;;15388:2:1;111106:138:0;;;15370:21:1;15427:2;15407:18;;;15400:30;15466:34;15446:18;;;15439:62;15537:23;15517:18;;;15510:51;15578:19;;111106:138:0;;;;;;;;;111262:20;111283:5;111262:27;;;;;;;;:::i;:::-;;;;;;;;;111255:34;;110984:313;;;:::o;66210:442::-;66307:7;66365:27;;;:17;:27;;;;;;;;66336:56;;;;;;;;;-1:-1:-1;;;;;66336:56:0;;;;;-1:-1:-1;;;66336:56:0;;;;;;;;;;;;66307:7;;66405:92;;-1:-1:-1;66456:29:0;;;;;;;;;66466:19;66456:29;-1:-1:-1;;;;;66456:29:0;;;;-1:-1:-1;;;66456:29:0;;;;;;;;66405:92;66547:23;;;;66509:21;;67018:5;;66534:36;;66533:58;66534:36;:10;:36;:::i;:::-;66533:58;;;;:::i;:::-;66612:16;;;;;-1:-1:-1;66210:442:0;;-1:-1:-1;;;;66210:442:0:o;122284:631::-;122448:12;:15;122427:4;;122448:15;;:20;;122444:65;;-1:-1:-1;122492:5:0;122485:12;;122444:65;122537:22;;-1:-1:-1;;;;;122537:22:0;:26;;;;:82;;-1:-1:-1;54744:10:0;:17;122580:22;;-1:-1:-1;;;;;122580:22:0;:39;;122537:82;122519:151;;;-1:-1:-1;122653:5:0;122646:12;;122519:151;122684:23;;122711:1;122684:28;122680:72;;-1:-1:-1;122736:4:0;122729:11;;122680:72;122784:52;122801:6;122809:13;122824:11;122784:16;:52::i;:::-;:123;;;;-1:-1:-1;;;;;;122853:21:0;;;;;;:13;:21;;;;;;;;122875:12;:15;;;122853:38;;;;;;;;:54;-1:-1:-1;122784:123:0;122764:143;;122284:631;;;;;;:::o;85887:147::-;85520:7;85547:12;;;:6;:12;;;;;:22;;;83515:16;83526:4;83515:10;:16::i;:::-;86001:25:::1;86012:4;86018:7;86001:10;:25::i;54324:256::-:0;54421:7;54457:23;54474:5;54457:16;:23::i;:::-;54449:5;:31;54441:87;;;;-1:-1:-1;;;54441:87:0;;16829:2:1;54441:87:0;;;16811:21:1;16868:2;16848:18;;;16841:30;16907:34;16887:18;;;16880:62;16978:13;16958:18;;;16951:41;17009:19;;54441:87:0;16627:407:1;54441:87:0;-1:-1:-1;;;;;;54546:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;54324:256::o;120218:527::-;90337:13;:11;:13::i;:::-;120450:12:::1;:15:::0;;120491:209:::1;::::0;;::::1;::::0;::::1;::::0;;120450:15:::1;120491:209:::0;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;;;;;;;;;;;;;;-1:-1:-1;;;;;120491:209:0;::::1;::::0;;;;;;;;;;;;;-1:-1:-1;;120476:224:0;::::1;::::0;::::1;::::0;;;;;;;;;;;;;;;;;;;::::1;::::0;;::::1;::::0;;;;;;;120716:21;;120450:15;::::1;17205:36:1::0;;;17257:18;;;17250:45;120716:21:0::1;::::0;17178:18:1;120716:21:0::1;;;;;;;120425:320;120218:527:::0;;;;;;:::o;87031:218::-;-1:-1:-1;;;;;87127:23:0;;1765:10;87127:23;87119:83;;;;-1:-1:-1;;;87119:83:0;;17508:2:1;87119:83:0;;;17490:21:1;17547:2;17527:18;;;17520:30;17586:34;17566:18;;;17559:62;17657:17;17637:18;;;17630:45;17692:19;;87119:83:0;17306:411:1;87119:83:0;87215:26;87227:4;87233:7;87215:11;:26::i;118994:182::-;119110:7;113419:26;83515:16;83526:4;83515:10;:16::i;:::-;119137:31:::1;119164:3;;119137:26;:31::i;:::-;119130:38:::0;118994:182;-1:-1:-1;;;;118994:182:0:o;116760:222::-;90337:13;:11;:13::i;:::-;116857:15:::1;::::0;;-1:-1:-1;;;;;116883:28:0;;::::1;-1:-1:-1::0;;;;;;116883:28:0;::::1;::::0;::::1;::::0;;;116927:47:::1;::::0;;116857:15;;;::::1;17957:34:1::0;;;18022:2;18007:18;;18000:43;;;;116927:47:0::1;::::0;17869:18:1;116927:47:0::1;;;;;;;116825:157;116760:222:::0;:::o;116990:422::-;90337:13;:11;:13::i;:::-;117056:15:::1;::::0;-1:-1:-1;;;;;117056:15:0::1;117048:71;;;::::0;-1:-1:-1;;;117048:71:0;;18256:2:1;117048:71:0::1;::::0;::::1;18238:21:1::0;18295:2;18275:18;;;18268:30;18334:31;18314:18;;;18307:59;18383:18;;117048:71:0::1;18054:353:1::0;117048:71:0::1;117150:21;117190:11:::0;117182:42:::1;;;::::0;-1:-1:-1;;;117182:42:0;;18614:2:1;117182:42:0::1;::::0;::::1;18596:21:1::0;18653:2;18633:18;;;18626:30;18692:20;18672:18;;;18665:48;18730:18;;117182:42:0::1;18412:342:1::0;117182:42:0::1;117264:15;::::0;117256:49:::1;::::0;117238:12:::1;::::0;-1:-1:-1;;;;;117264:15:0::1;::::0;117293:7;;117238:12;117256:49;117238:12;117256:49;117293:7;117264:15;117256:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117237:68;;;117324:7;117316:35;;;::::0;-1:-1:-1;;;117316:35:0;;19171:2:1;117316:35:0::1;::::0;::::1;19153:21:1::0;19210:2;19190:18;;;19183:30;19249:17;19229:18;;;19222:45;19284:18;;117316:35:0::1;18969:339:1::0;117316:35:0::1;117379:15;::::0;117369:35:::1;::::0;4222:25:1;;;-1:-1:-1;;;;;117379:15:0;;::::1;::::0;117369:35:::1;::::0;4210:2:1;4195:18;117369:35:0::1;;;;;;;117037:375;;116990:422::o:0;116169:78::-;90337:13;:11;:13::i;:::-;61513:16:::1;:14;:16::i;:::-;116229:10:::2;:8;:10::i;:::-;116169:78::o:0;108383:200::-;108483:7;108503:23;108518:7;108503:14;:23::i;:::-;-1:-1:-1;108544:24:0;;;;:15;:24;;;;;:31;;108383:200::o;118111:222::-;118267:4;-1:-1:-1;;;;;103554:18:0;;103562:10;103554:18;103550:83;;103589:32;103610:10;103589:20;:32::i;:::-;118284:41:::1;118307:4;118313:2;118317:7;118284:22;:41::i;120916:143::-:0;113348:24;83515:16;83526:4;83515:10;:16::i;:::-;121029:22:::1;121039:2;121043:7;121029:9;:22::i;114340:104::-:0;114396:4;40767:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40767:16:0;41193:31;;114420:16;41104:128;54846:233;54921:7;54957:30;54744:10;:17;;54656:113;54957:30;54949:5;:38;54941:95;;;;-1:-1:-1;;;54941:95:0;;19515:2:1;54941:95:0;;;19497:21:1;19554:2;19534:18;;;19527:30;19593:34;19573:18;;;19566:62;19664:14;19644:18;;;19637:42;19696:19;;54941:95:0;19313:408:1;54941:95:0;55054:10;55065:5;55054:17;;;;;;;;:::i;115011:108::-;90337:13;:11;:13::i;:::-;115085::::1;:26;115101:10:::0;115085:13;:26:::1;:::i;35880:223::-:0;35952:7;40767:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40767:16:0;;36016:56;;;;-1:-1:-1;;;36016:56:0;;19928:2:1;36016:56:0;;;19910:21:1;19967:2;19947:18;;;19940:30;20006:26;19986:18;;;19979:54;20050:18;;36016:56:0;19726:348:1;35611:207:0;35683:7;-1:-1:-1;;;;;35711:19:0;;35703:73;;;;-1:-1:-1;;;35703:73:0;;20281:2:1;35703:73:0;;;20263:21:1;20320:2;20300:18;;;20293:30;20359:34;20339:18;;;20332:62;20430:11;20410:18;;;20403:39;20459:19;;35703:73:0;20079:405:1;35703:73:0;-1:-1:-1;;;;;;35794:16:0;;;;;:9;:16;;;;;;;35611:207::o;91099:103::-;90337:13;:11;:13::i;:::-;91164:30:::1;91191:1;91164:18;:30::i;115127:115::-:0;90337:13;:11;:13::i;:::-;115207:11:::1;:27;115221:13:::0;115207:11;:27:::1;:::i;118777:209::-:0;118914:7;113419:26;83515:16;83526:4;83515:10;:16::i;:::-;118941:37:::1;118965:7;118974:3;118941:23;:37::i;116084:77::-:0;90337:13;:11;:13::i;:::-;61254:19:::1;:17;:19::i;:::-;116145:8:::2;:6;:8::i;114452:331::-:0;114528:16;114557:15;114575;114585:4;114575:9;:15::i;:::-;114557:33;;114601:20;114638:7;114624:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;114624:22:0;;114601:45;;114662:9;114657:98;114677:7;114673:1;:11;114657:98;;;114715:28;114735:4;114741:1;114715:19;:28::i;:::-;114706:3;114710:1;114706:6;;;;;;;;:::i;:::-;;;;;;;;;;:37;114686:3;;;;:::i;:::-;;;;114657:98;;;-1:-1:-1;114772:3:0;114452:331;-1:-1:-1;;;114452:331:0:o;110065:375::-;110190:7;110210:23;110225:7;110210:14;:23::i;:::-;110266:24;;;;:15;:24;;;;;:31;:39;-1:-1:-1;110244:139:0;;;;-1:-1:-1;;;110244:139:0;;20831:2:1;110244:139:0;;;20813:21:1;20870:2;20850:18;;;20843:30;20909:34;20889:18;;;20882:62;20980:20;20960:18;;;20953:48;21018:19;;110244:139:0;20629:414:1;110244:139:0;110401:24;;;;:15;:24;;;;;:31;;110426:5;;110401:31;;;;;;:::i;:::-;;;;;;;;;110394:38;;110065:375;;;;:::o;36339:104::-;36395:13;36428:7;36421:14;;;;;:::i;119432:154::-;90337:13;:11;:13::i;:::-;119544:34:::1;119564:8;119574:3;119544:19;:34::i;117456:218::-:0;117602:8;103828:30;103849:8;103828:20;:30::i;:::-;117623:43:::1;117647:8;117657;117623:23;:43::i;111364:528::-:0;111504:17;111524:21;;;:11;:21;;;;;111504:41;;111455:13;;111504:17;111524:21;111504:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111584:1;111570:3;111564:17;:21;111556:53;;;;-1:-1:-1;;;111556:53:0;;21250:2:1;111556:53:0;;;21232:21:1;21289:2;21269:18;;;21262:30;21328:21;21308:18;;;21301:49;21367:18;;111556:53:0;21048:343:1;111556:53:0;111650:18;111671:16;:14;:16::i;:::-;111650:37;;111708:4;111702:18;111724:1;111702:23;111698:66;;-1:-1:-1;111749:3:0;111364:528;-1:-1:-1;;111364:528:0:o;111698:66::-;111873:4;111879:3;111856:27;;;;;;;;;:::i;:::-;;;;;;;;;;;;;111842:42;;;;111364:528;;;:::o;118341:256::-;118525:4;-1:-1:-1;;;;;103554:18:0;;103562:10;103554:18;103550:83;;103589:32;103610:10;103589:20;:32::i;:::-;118542:47:::1;118565:4;118571:2;118575:7;118584:4;118542:22;:47::i;:::-;118341:256:::0;;;;;:::o;115250:606::-;41169:4;40767:16;;;:7;:16;;;;;;115339:13;;-1:-1:-1;;;;;40767:16:0;115365:113;;;;-1:-1:-1;;;115365:113:0;;22099:2:1;115365:113:0;;;22081:21:1;22138:2;22118:18;;;22111:30;22177:34;22157:18;;;22150:62;22248:17;22228:18;;;22221:45;22283:19;;115365:113:0;21897:411:1;115365:113:0;115491:28;115522:10;:8;:10::i;:::-;115491:41;;115594:1;115569:14;115563:28;:32;:285;;;;;;;;;;;;;;;;;115687:14;115728:18;:7;:16;:18::i;:::-;115773:11;115644:163;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;115543:305;115250:606;-1:-1:-1;;;115250:606:0:o;86327:149::-;85520:7;85547:12;;;:6;:12;;;;;:22;;;83515:16;83526:4;83515:10;:16::i;:::-;86442:26:::1;86454:4;86460:7;86442:11;:26::i;121067:1209::-:0;61254:19;:17;:19::i;:::-;94173:21:::1;:19;:21::i;:::-;121263:12:::2;:15:::0;::::2;;121255:44;;;::::0;-1:-1:-1;;;121255:44:0;;23776:2:1;121255:44:0::2;::::0;::::2;23758:21:1::0;23815:2;23795:18;;;23788:30;23854:14;23834:18;;;23827:42;23886:18;;121255:44:0::2;23574:336:1::0;121255:44:0::2;121351:22:::0;;121332:15:::2;:41;;121310:115;;;::::0;-1:-1:-1;;;121310:115:0;;24117:2:1;121310:115:0::2;::::0;::::2;24099:21:1::0;24156:2;24136:18;;;24129:30;24195:26;24175:18;;;24168:54;24239:18;;121310:115:0::2;23915:348:1::0;121310:115:0::2;121458:20:::0;;:25;;:67:::2;;-1:-1:-1::0;121505:20:0;;121487:15:::2;:38;121458:67;121436:131;;;::::0;-1:-1:-1;;;121436:131:0;;24470:2:1;121436:131:0::2;::::0;::::2;24452:21:1::0;24509:2;24489:18;;;24482:30;24548:16;24528:18;;;24521:44;24582:18;;121436:131:0::2;24268:338:1::0;121436:131:0::2;121586:21:::0;;121611:9:::2;-1:-1:-1::0;121586:34:0::2;121578:65;;;::::0;-1:-1:-1;;;121578:65:0;;24813:2:1;121578:65:0::2;::::0;::::2;24795:21:1::0;24852:2;24832:18;;;24825:30;24891:20;24871:18;;;24864:48;24929:18;;121578:65:0::2;24611:342:1::0;121578:65:0::2;54744:10:::0;:17;121662:22;;-1:-1:-1;;;;;121662:22:0::2;:38;121654:69;;;::::0;-1:-1:-1;;;121654:69:0;;25160:2:1;121654:69:0::2;::::0;::::2;25142:21:1::0;25199:2;25179:18;;;25172:30;25238:20;25218:18;;;25211:48;25276:18;;121654:69:0::2;24958:342:1::0;121654:69:0::2;121742:22:::0;;-1:-1:-1;;;;;121742:22:0::2;:33:::0;-1:-1:-1;121742:33:0::2;121734:61;;;::::0;-1:-1:-1;;;121734:61:0;;25507:2:1;121734:61:0::2;::::0;::::2;25489:21:1::0;25546:2;25526:18;;;25519:30;25585:17;25565:18;;;25558:45;25620:18;;121734:61:0::2;25305:339:1::0;121734:61:0::2;121812:23:::0;;:27;121808:418:::2;;121882:56;121899:10;121911:13;121926:11;121882:16;:56::i;:::-;121856:141;;;::::0;-1:-1:-1;;;121856:141:0;;25851:2:1;121856:141:0::2;::::0;::::2;25833:21:1::0;25890:2;25870:18;;;25863:30;25929:25;25909:18;;;25902:53;25972:18;;121856:141:0::2;25649:347:1::0;121856:141:0::2;122052:10;122038:25;::::0;;;:13:::2;:25;::::0;;;;;;;122064:12:::2;:15:::0;::::2;;122038:42:::0;;;;;;;;:58;-1:-1:-1;122012:140:0::2;;;::::0;-1:-1:-1;;;122012:140:0;;26203:2:1;122012:140:0::2;::::0;::::2;26185:21:1::0;26242:2;26222:18;;;26215:30;26281:22;26261:18;;;26254:50;26321:18;;122012:140:0::2;26001:344:1::0;122012:140:0::2;122181:10;122167:25;::::0;;;:13:::2;:25;::::0;;;;;;;122193:12:::2;:15:::0;::::2;;122167:42:::0;;;;;;;:47;;122213:1:::2;::::0;122167:25;:47:::2;::::0;122213:1;;122167:47:::2;:::i;:::-;::::0;;;-1:-1:-1;;121808:418:0::2;122238:30;122248:10;122260:7;122238:9;:30::i;:::-;94217:20:::1;93611:1:::0;94737:7;:22;94554:213;91357:201;90337:13;:11;:13::i;:::-;-1:-1:-1;;;;;91446:22:0;::::1;91438:73;;;::::0;-1:-1:-1;;;91438:73:0;;26682:2:1;91438:73:0::1;::::0;::::1;26664:21:1::0;26721:2;26701:18;;;26694:30;26760:34;26740:18;;;26733:62;26831:8;26811:18;;;26804:36;26857:19;;91438:73:0::1;26480:402:1::0;91438:73:0::1;91522:28;91541:8;91522:18;:28::i;:::-;91357:201:::0;:::o;112593:266::-;112711:4;-1:-1:-1;;;;;;112748:50:0;;112763:35;112748:50;;:103;;;112815:36;112839:11;112815:23;:36::i;90616:132::-;90524:6;;-1:-1:-1;;;;;90524:6:0;1765:10;90680:23;90672:68;;;;-1:-1:-1;;;90672:68:0;;27089:2:1;90672:68:0;;;27071:21:1;;;27108:18;;;27101:30;27167:34;27147:18;;;27140:62;27219:18;;90672:68:0;26887:356:1;67302:332:0;67018:5;67405:33;;;;;67397:88;;;;-1:-1:-1;;;67397:88:0;;27450:2:1;67397:88:0;;;27432:21:1;27489:2;27469:18;;;27462:30;27528:34;27508:18;;;27501:62;27599:12;27579:18;;;27572:40;27629:19;;67397:88:0;27248:406:1;67397:88:0;-1:-1:-1;;;;;67504:22:0;;67496:60;;;;-1:-1:-1;;;67496:60:0;;27861:2:1;67496:60:0;;;27843:21:1;27900:2;27880:18;;;27873:30;27939:27;27919:18;;;27912:55;27984:18;;67496:60:0;27659:349:1;67496:60:0;67591:35;;;;;;;;;-1:-1:-1;;;;;67591:35:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;67569:57:0;;;;:19;:57;67302:332::o;47501:135::-;41169:4;40767:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40767:16:0;47575:53;;;;-1:-1:-1;;;47575:53:0;;19928:2:1;47575:53:0;;;19910:21:1;19967:2;19947:18;;;19940:30;20006:26;19986:18;;;19979:54;20050:18;;47575:53:0;19726:348:1;103971:647:0;946:42;104162:45;:49;104158:453;;104461:67;;;;;104512:4;104461:67;;;17957:34:1;-1:-1:-1;;;;;18027:15:1;;18007:18;;;18000:43;946:42:0;;104461;;17869:18:1;;104461:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;104456:144;;104556:28;;;;;-1:-1:-1;;;;;3750:55:1;;104556:28:0;;;3732:74:1;3705:18;;104556:28:0;3586:226:1;37200:416:0;37281:13;37297:23;37312:7;37297:14;:23::i;:::-;37281:39;;37345:5;-1:-1:-1;;;;;37339:11:0;:2;-1:-1:-1;;;;;37339:11:0;;37331:57;;;;-1:-1:-1;;;37331:57:0;;28465:2:1;37331:57:0;;;28447:21:1;28504:2;28484:18;;;28477:30;28543:34;28523:18;;;28516:62;28614:3;28594:18;;;28587:31;28635:19;;37331:57:0;28263:397:1;37331:57:0;1765:10;-1:-1:-1;;;;;37423:21:0;;;;:62;;-1:-1:-1;37448:37:0;37465:5;1765:10;38151:164;:::i;37448:37::-;37401:173;;;;-1:-1:-1;;;37401:173:0;;28867:2:1;37401:173:0;;;28849:21:1;28906:2;28886:18;;;28879:30;28945:34;28925:18;;;28918:62;29016:31;28996:18;;;28989:59;29065:19;;37401:173:0;28665:425:1;37401:173:0;37587:21;37596:2;37600:7;37587:8;:21::i;38382:335::-;38577:41;1765:10;38610:7;38577:18;:41::i;:::-;38569:99;;;;-1:-1:-1;;;38569:99:0;;29297:2:1;38569:99:0;;;29279:21:1;29336:2;29316:18;;;29309:30;29375:34;29355:18;;;29348:62;-1:-1:-1;;;29426:18:1;;;29419:43;29479:19;;38569:99:0;29095:409:1;38569:99:0;38681:28;38691:4;38697:2;38701:7;38681:9;:28::i;122923:365::-;123154:33;;;-1:-1:-1;;;;;5403:55:1;;123154:33:0;;;5385:74:1;5475:18;;;5468:34;;;123075:4:0;;;;5358:18:1;;123154:33:0;;;-1:-1:-1;;123154:33:0;;;;;;;;;123144:44;;123154:33;123144:44;;;;123131:58;;;29638:19:1;29673:12;123131:58:0;;;;;;;;;;;;123107:93;;;;;;123092:108;;123218:62;123237:11;123250:12;:23;;;123275:4;123218:18;:62::i;:::-;123211:69;122923:365;-1:-1:-1;;;;;122923:365:0:o;84370:105::-;84437:30;84448:4;1765:10;84437;:30::i;88628:238::-;84005:4;84029:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;84029:29:0;;;;;;;;;;;;88707:152;;88751:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;88751:29:0;;;;;;;;;:36;;-1:-1:-1;;88751:36:0;88783:4;88751:36;;;88834:12;1765:10;;1685:98;88834:12;-1:-1:-1;;;;;88807:40:0;88825:7;-1:-1:-1;;;;;88807:40:0;88819:4;88807:40;;;;;;;;;;88628:238;;:::o;89046:239::-;84005:4;84029:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;84029:29:0;;;;;;;;;;;;89126:152;;;89201:5;89169:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;89169:29:0;;;;;;;;;;:37;;-1:-1:-1;;89169:37:0;;;89226:40;1765:10;;89169:12;;89226:40;;89201:5;89226:40;89046:239;;:::o;110504:417::-;110604:7;110632:21;110624:63;;;;-1:-1:-1;;;110624:63:0;;29898:2:1;110624:63:0;;;29880:21:1;29937:2;29917:18;;;29910:30;29976:31;29956:18;;;29949:59;30025:18;;110624:63:0;29696:353:1;110624:63:0;110716:12;;110739:20;:32;;;;;;;110700:13;110739:32;;;;;;;;;110782:25;;;110739:32;110782:25;;;;;;;;;;;;;;;;;;;;110716:12;;110782:25;110803:3;;;;;;110782:25;;110803:3;;;;110782:25;;;;;;;;;-1:-1:-1;110782:13:0;;-1:-1:-1;;;110782:25:0:i;:::-;110834:1;110818:12;;:17;;;;;;;:::i;:::-;;;;-1:-1:-1;;110853:35:0;;110882:5;;1765:10;;110853:35;;;;;110908:5;110504:417;-1:-1:-1;;;110504:417:0:o;61993:108::-;61720:7;;;;62052:41;;;;-1:-1:-1;;;62052:41:0;;30256:2:1;62052:41:0;;;30238:21:1;30295:2;30275:18;;;30268:30;30334:22;30314:18;;;30307:50;30374:18;;62052:41:0;30054:344:1;62504:120:0;61513:16;:14;:16::i;:::-;62563:7:::1;:15:::0;;-1:-1:-1;;62563:15:0::1;::::0;;62594:22:::1;1765:10:::0;62603:12:::1;62594:22;::::0;-1:-1:-1;;;;;3750:55:1;;;3732:74;;3720:2;3705:18;62594:22:0::1;;;;;;;62504:120::o:0;38788:185::-;38926:39;38943:4;38949:2;38953:7;38926:39;;;;;;;;;;;;:16;:39::i;42005:110::-;42081:26;42091:2;42095:7;42081:26;;;;;;;;;;;;:9;:26::i;91718:191::-;91811:6;;;-1:-1:-1;;;;;91828:17:0;;;-1:-1:-1;;;;;;91828:17:0;;;;;;;91861:40;;91811:6;;;91828:17;91811:6;;91861:40;;91792:16;;91861:40;91781:128;91718:191;:::o;109523:482::-;109644:7;109664:23;109679:7;109664:14;:23::i;:::-;109726:1;109712:3;109706:17;:21;109698:63;;;;-1:-1:-1;;;109698:63:0;;29898:2:1;109698:63:0;;;29880:21:1;29937:2;29917:18;;;29910:30;29976:31;29956:18;;;29949:59;30025:18;;109698:63:0;29696:353:1;109698:63:0;109790:12;;109774:13;109813:24;;;:15;:24;;;;;;;:36;;;;;;;;;;;;;;;;109860:25;109790:12;109881:3;109860:13;:25::i;:::-;109912:1;109896:12;;:17;;;;;;;:::i;:::-;;;;-1:-1:-1;;109931:41:0;;109964:7;;109957:5;;1765:10;;109931:41;;;;;109992:5;109523:482;-1:-1:-1;;;109523:482:0:o;61808:108::-;61720:7;;;;61878:9;61870:38;;;;-1:-1:-1;;;61870:38:0;;30605:2:1;61870:38:0;;;30587:21:1;30644:2;30624:18;;;30617:30;30683:18;30663;;;30656:46;30719:18;;61870:38:0;30403:340:1;62245:118:0;61254:19;:17;:19::i;:::-;62305:7:::1;:14:::0;;-1:-1:-1;;62305:14:0::1;62315:4;62305:14;::::0;;62335:20:::1;62342:12;1765:10:::0;;1685:98;112195:148;112308:21;;;;:11;:21;;;;;:27;112332:3;112308:21;:27;:::i;37925:155::-;38020:52;1765:10;38053:8;38063;38020:18;:52::i;119184:115::-;119242:13;119275:16;119268:23;;;;;:::i;39044:322::-;39218:41;1765:10;39251:7;39218:18;:41::i;:::-;39210:99;;;;-1:-1:-1;;;39210:99:0;;29297:2:1;39210:99:0;;;29279:21:1;29336:2;29316:18;;;29309:30;29375:34;29355:18;;;29348:62;-1:-1:-1;;;29426:18:1;;;29419:43;29479:19;;39210:99:0;29095:409:1;39210:99:0;39320:38;39334:4;39340:2;39344:7;39353:4;39320:13;:38::i;114889:114::-;114949:13;114982;114975:20;;;;;:::i;21005:716::-;21061:13;21112:14;21129:17;21140:5;21129:10;:17::i;:::-;21149:1;21129:21;21112:38;;21165:20;21199:6;21188:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21188:18:0;-1:-1:-1;21165:41:0;-1:-1:-1;21330:28:0;;;21346:2;21330:28;21387:288;-1:-1:-1;;21419:5:0;21561:8;21556:2;21545:14;;21540:30;21419:5;21527:44;21617:2;21608:11;;;-1:-1:-1;21638:21:0;21387:288;21638:21;-1:-1:-1;21696:6:0;21005:716;-1:-1:-1;;;21005:716:0:o;94253:293::-;93655:1;94387:7;;:19;94379:63;;;;-1:-1:-1;;;94379:63:0;;30950:2:1;94379:63:0;;;30932:21:1;30989:2;30969:18;;;30962:30;31028:33;31008:18;;;31001:61;31079:18;;94379:63:0;30748:355:1;94379:63:0;93655:1;94520:7;:18;94253:293::o;83623:204::-;83708:4;-1:-1:-1;;;;;;83732:47:0;;83747:32;83732:47;;:87;;;83783:36;83807:11;83783:23;:36::i;46780:174::-;46855:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;46855:29:0;-1:-1:-1;;;;;46855:29:0;;;;;;;;:24;;46909:23;46855:24;46909:14;:23::i;:::-;-1:-1:-1;;;;;46900:46:0;;;;;;;;;;;46780:174;;:::o;41399:264::-;41492:4;41509:13;41525:23;41540:7;41525:14;:23::i;:::-;41509:39;;41578:5;-1:-1:-1;;;;;41567:16:0;:7;-1:-1:-1;;;;;41567:16:0;;:52;;;-1:-1:-1;;;;;;38272:25:0;;;38248:4;38272:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;41587:32;41567:87;;;;41647:7;-1:-1:-1;;;;;41623:31:0;:20;41635:7;41623:11;:20::i;:::-;-1:-1:-1;;;;;41623:31:0;;;41399:264;-1:-1:-1;;;;41399:264:0:o;45398:1263::-;45557:4;-1:-1:-1;;;;;45530:31:0;:23;45545:7;45530:14;:23::i;:::-;-1:-1:-1;;;;;45530:31:0;;45522:81;;;;-1:-1:-1;;;45522:81:0;;31310:2:1;45522:81:0;;;31292:21:1;31349:2;31329:18;;;31322:30;31388:34;31368:18;;;31361:62;-1:-1:-1;;;31439:18:1;;;31432:35;31484:19;;45522:81:0;31108:401:1;45522:81:0;-1:-1:-1;;;;;45622:16:0;;45614:65;;;;-1:-1:-1;;;45614:65:0;;31716:2:1;45614:65:0;;;31698:21:1;31755:2;31735:18;;;31728:30;31794:34;31774:18;;;31767:62;31865:6;31845:18;;;31838:34;31889:19;;45614:65:0;31514:400:1;45614:65:0;45692:42;45713:4;45719:2;45723:7;45732:1;45692:20;:42::i;:::-;45864:4;-1:-1:-1;;;;;45837:31:0;:23;45852:7;45837:14;:23::i;:::-;-1:-1:-1;;;;;45837:31:0;;45829:81;;;;-1:-1:-1;;;45829:81:0;;31310:2:1;45829:81:0;;;31292:21:1;31349:2;31329:18;;;31322:30;31388:34;31368:18;;;31361:62;-1:-1:-1;;;31439:18:1;;;31432:35;31484:19;;45829:81:0;31108:401:1;45829:81:0;45982:24;;;;:15;:24;;;;;;;;45975:31;;-1:-1:-1;;;;;;45975:31:0;;;;;;-1:-1:-1;;;;;46458:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;46458:20:0;;;46493:13;;;;;;;;;:18;;45975:31;46493:18;;;46533:16;;;:7;:16;;;;;;:21;;;;;;;;;;46572:27;;45998:7;;46572:27;;;117682:199;;;:::o;69835:190::-;69960:4;70013;69984:25;69997:5;70004:4;69984:12;:25::i;:::-;:33;;69835:190;-1:-1:-1;;;;69835:190:0:o;84765:492::-;84005:4;84029:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;84029:29:0;;;;;;;;;;;;84849:401;;85042:28;85062:7;85042:19;:28::i;:::-;85143:38;85171:4;85178:2;85143:19;:38::i;:::-;84947:257;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;84947:257:0;;;;;;;;;;-1:-1:-1;;;84893:345:0;;;;;;;:::i;42342:319::-;42471:18;42477:2;42481:7;42471:5;:18::i;:::-;42522:53;42553:1;42557:2;42561:7;42570:4;42522:22;:53::i;:::-;42500:153;;;;-1:-1:-1;;;42500:153:0;;32938:2:1;42500:153:0;;;32920:21:1;32977:2;32957:18;;;32950:30;33016:34;32996:18;;;32989:62;-1:-1:-1;;;33067:18:1;;;33060:48;33125:19;;42500:153:0;32736:414:1;47097:315:0;47252:8;-1:-1:-1;;;;;47243:17:0;:5;-1:-1:-1;;;;;47243:17:0;;47235:55;;;;-1:-1:-1;;;47235:55:0;;33357:2:1;47235:55:0;;;33339:21:1;33396:2;33376:18;;;33369:30;33435:27;33415:18;;;33408:55;33480:18;;47235:55:0;33155:349:1;47235:55:0;-1:-1:-1;;;;;47301:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;47301:46:0;;;;;;;;;;47363:41;;586::1;;;47363::0;;559:18:1;47363:41:0;;;;;;;47097:315;;;:::o;40247:313::-;40403:28;40413:4;40419:2;40423:7;40403:9;:28::i;:::-;40450:47;40473:4;40479:2;40483:7;40492:4;40450:22;:47::i;:::-;40442:110;;;;-1:-1:-1;;;40442:110:0;;32938:2:1;40442:110:0;;;32920:21:1;32977:2;32957:18;;;32950:30;33016:34;32996:18;;;32989:62;-1:-1:-1;;;33067:18:1;;;33060:48;33125:19;;40442:110:0;32736:414:1;18025:922:0;18078:7;;18165:6;18156:15;;18152:102;;18201:6;18192:15;;;-1:-1:-1;18236:2:0;18226:12;18152:102;18281:6;18272:5;:15;18268:102;;18317:6;18308:15;;;-1:-1:-1;18352:2:0;18342:12;18268:102;18397:6;18388:5;:15;18384:102;;18433:6;18424:15;;;-1:-1:-1;18468:2:0;18458:12;18384:102;18513:5;18504;:14;18500:99;;18548:5;18539:14;;;-1:-1:-1;18582:1:0;18572:11;18500:99;18626:5;18617;:14;18613:99;;18661:5;18652:14;;;-1:-1:-1;18695:1:0;18685:11;18613:99;18739:5;18730;:14;18726:99;;18774:5;18765:14;;;-1:-1:-1;18808:1:0;18798:11;18726:99;18852:5;18843;:14;18839:66;;18888:1;18878:11;18933:6;18025:922;-1:-1:-1;;18025:922:0:o;65940:215::-;66042:4;-1:-1:-1;;;;;;66066:41:0;;66081:26;66066:41;;:81;;;66111:36;66135:11;66111:23;:36::i;116255:288::-;116474:61;116501:4;116507:2;116511:12;116525:9;116474:26;:61::i;70702:296::-;70785:7;70828:4;70785:7;70843:118;70867:5;:12;70863:1;:16;70843:118;;;70916:33;70926:12;70940:5;70946:1;70940:8;;;;;;;;:::i;:::-;;;;;;;70916:9;:33::i;:::-;70901:48;-1:-1:-1;70881:3:0;;;;:::i;:::-;;;;70843:118;;22741:151;22799:13;22832:52;-1:-1:-1;;;;;22844:22:0;;20896:2;22137:447;22212:13;22238:19;22270:10;22274:6;22270:1;:10;:::i;:::-;:14;;22283:1;22270:14;:::i;:::-;22260:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22260:25:0;;22238:47;;22296:15;:6;22303:1;22296:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;22296:15:0;;;;;;;;;22322;:6;22329:1;22322:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;22322:15:0;;;;;;;;-1:-1:-1;22353:9:0;22365:10;22369:6;22365:1;:10;:::i;:::-;:14;;22378:1;22365:14;:::i;:::-;22353:26;;22348:131;22385:1;22381;:5;22348:131;;;22420:8;22429:5;22437:3;22429:11;22420:21;;;;;;;:::i;:::-;;;;22408:6;22415:1;22408:9;;;;;;;;:::i;:::-;;;;:33;-1:-1:-1;;;;;22408:33:0;;;;;;;;-1:-1:-1;22466:1:0;22456:11;;;;;22388:3;;;:::i;:::-;;;22348:131;;;-1:-1:-1;22497:10:0;;22489:55;;;;-1:-1:-1;;;22489:55:0;;33852:2:1;22489:55:0;;;33834:21:1;;;33871:18;;;33864:30;33930:34;33910:18;;;33903:62;33982:18;;22489:55:0;33650:356:1;42997:942:0;-1:-1:-1;;;;;43077:16:0;;43069:61;;;;-1:-1:-1;;;43069:61:0;;34213:2:1;43069:61:0;;;34195:21:1;;;34232:18;;;34225:30;34291:34;34271:18;;;34264:62;34343:18;;43069:61:0;34011:356:1;43069:61:0;41169:4;40767:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40767:16:0;41193:31;43141:58;;;;-1:-1:-1;;;43141:58:0;;34574:2:1;43141:58:0;;;34556:21:1;34613:2;34593:18;;;34586:30;34652;34632:18;;;34625:58;34700:18;;43141:58:0;34372:352:1;43141:58:0;43212:48;43241:1;43245:2;43249:7;43258:1;43212:20;:48::i;:::-;41169:4;40767:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40767:16:0;41193:31;43350:58;;;;-1:-1:-1;;;43350:58:0;;34574:2:1;43350:58:0;;;34556:21:1;34613:2;34593:18;;;34586:30;34652;34632:18;;;34625:58;34700:18;;43350:58:0;34372:352:1;43350:58:0;-1:-1:-1;;;;;43757:13:0;;;;;;:9;:13;;;;;;;;:18;;43774:1;43757:18;;;43799:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;43799:21:0;;;;;43838:33;43807:7;;43757:13;;43838:33;;43757:13;;43838:33;119387:29:::1;119307:117:::0;:::o;48200:853::-;48354:4;-1:-1:-1;;;;;48375:13:0;;26107:19;:23;48371:675;;48411:71;;-1:-1:-1;;;48411:71:0;;-1:-1:-1;;;;;48411:36:0;;;;;:71;;1765:10;;48462:4;;48468:7;;48477:4;;48411:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48411:71:0;;;;;;;;-1:-1:-1;;48411:71:0;;;;;;;;;;;;:::i;:::-;;;48407:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48652:6;:13;48669:1;48652:18;48648:328;;48695:60;;-1:-1:-1;;;48695:60:0;;32938:2:1;48695:60:0;;;32920:21:1;32977:2;32957:18;;;32950:30;33016:34;32996:18;;;32989:62;-1:-1:-1;;;33067:18:1;;;33060:48;33125:19;;48695:60:0;32736:414:1;48648:328:0;48926:6;48920:13;48911:6;48907:2;48903:15;48896:38;48407:584;-1:-1:-1;;;;;;48533:51:0;-1:-1:-1;;;48533:51:0;;-1:-1:-1;48526:58:0;;48371:675;-1:-1:-1;49030:4:0;48200:853;;;;;;:::o;54016:224::-;54118:4;-1:-1:-1;;;;;;54142:50:0;;54157:35;54142:50;;:90;;;54196:36;54220:11;54196:23;:36::i;63490:324::-;63667:61;63694:4;63700:2;63704:12;63718:9;63667:26;:61::i;:::-;61720:7;;;;63749:9;63741:65;;;;-1:-1:-1;;;63741:65:0;;35702:2:1;63741:65:0;;;35684:21:1;35741:2;35721:18;;;35714:30;35780:34;35760:18;;;35753:62;35851:13;35831:18;;;35824:41;35882:19;;63741:65:0;35500:407:1;77742:149:0;77805:7;77836:1;77832;:5;:51;;77967:13;78061:15;;;78097:4;78090:15;;;78144:4;78128:21;;77832:51;;;77967:13;78061:15;;;78097:4;78090:15;;;78144:4;78128:21;;77840:20;77899:268;35242:305;35344:4;-1:-1:-1;;;;;;35381:40:0;;35396:25;35381:40;;:105;;-1:-1:-1;;;;;;;35438:48:0;;35453:33;35438:48;35381:105;:158;;;-1:-1:-1;7818:25:0;-1:-1:-1;;;;;;7803:40:0;;;35503:36;7694:157;55153:915;55420:1;55408:9;:13;55404:222;;;55551:63;;-1:-1:-1;;;55551:63:0;;36114:2:1;55551:63:0;;;36096:21:1;36153:2;36133:18;;;36126:30;36192:34;36172:18;;;36165:62;36263:23;36243:18;;;36236:51;36304:19;;55551:63:0;35912:417:1;55404:222:0;55656:12;-1:-1:-1;;;;;55685:18:0;;55681:187;;55720:40;55752:7;56895:10;:17;;56868:24;;;;:15;:24;;;;;:44;;;56923:24;;;;;;;;;;;;56791:164;55720:40;55681:187;;;55790:2;-1:-1:-1;;;;;55782:10:0;:4;-1:-1:-1;;;;;55782:10:0;;55778:90;;55809:47;55842:4;55848:7;55809:32;:47::i;:::-;-1:-1:-1;;;;;55882:16:0;;55878:183;;55915:45;55952:7;55915:36;:45::i;:::-;55878:183;;;55988:4;-1:-1:-1;;;;;55982:10:0;:2;-1:-1:-1;;;;;55982:10:0;;55978:83;;56009:40;56037:2;56041:7;56009:27;:40::i;57582:988::-;57848:22;57898:1;57873:22;57890:4;57873:16;:22::i;:::-;:26;;;;:::i;:::-;57910:18;57931:26;;;:17;:26;;;;;;57848:51;;-1:-1:-1;58064:28:0;;;58060:328;;-1:-1:-1;;;;;58131:18:0;;58109:19;58131:18;;;:12;:18;;;;;;;;:34;;;;;;;;;58182:30;;;;;;:44;;;58299:30;;:17;:30;;;;;:43;;;58060:328;-1:-1:-1;58484:26:0;;;;:17;:26;;;;;;;;58477:33;;;-1:-1:-1;;;;;58528:18:0;;;;;:12;:18;;;;;:34;;;;;;;58521:41;57582:988::o;58865:1079::-;59143:10;:17;59118:22;;59143:21;;59163:1;;59143:21;:::i;:::-;59175:18;59196:24;;;:15;:24;;;;;;59569:10;:26;;59118:46;;-1:-1:-1;59196:24:0;;59118:46;;59569:26;;;;;;:::i;:::-;;;;;;;;;59547:48;;59633:11;59608:10;59619;59608:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;59713:28;;;:15;:28;;;;;;;:41;;;59885:24;;;;;59878:31;59920:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;58936:1008;;;58865:1079;:::o;56369:221::-;56454:14;56471:20;56488:2;56471:16;:20::i;:::-;-1:-1:-1;;;;;56502:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;56547:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;56369:221:0:o;14:177:1:-;-1:-1:-1;;;;;;92:5:1;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:184::-;-1:-1:-1;;;687:1:1;680:88;787:4;784:1;777:15;811:4;808:1;801:15;827:275;898:2;892:9;963:2;944:13;;-1:-1:-1;;940:27:1;928:40;;998:18;983:34;;1019:22;;;980:62;977:88;;;1045:18;;:::i;:::-;1081:2;1074:22;827:275;;-1:-1:-1;827:275:1:o;1107:407::-;1172:5;1206:18;1198:6;1195:30;1192:56;;;1228:18;;:::i;:::-;1266:57;1311:2;1290:15;;-1:-1:-1;;1286:29:1;1317:4;1282:40;1266:57;:::i;:::-;1257:66;;1346:6;1339:5;1332:21;1386:3;1377:6;1372:3;1368:16;1365:25;1362:45;;;1403:1;1400;1393:12;1362:45;1452:6;1447:3;1440:4;1433:5;1429:16;1416:43;1506:1;1499:4;1490:6;1483:5;1479:18;1475:29;1468:40;1107:407;;;;;:::o;1519:222::-;1562:5;1615:3;1608:4;1600:6;1596:17;1592:27;1582:55;;1633:1;1630;1623:12;1582:55;1655:80;1731:3;1722:6;1709:20;1702:4;1694:6;1690:17;1655:80;:::i;1746:322::-;1815:6;1868:2;1856:9;1847:7;1843:23;1839:32;1836:52;;;1884:1;1881;1874:12;1836:52;1924:9;1911:23;1957:18;1949:6;1946:30;1943:50;;;1989:1;1986;1979:12;1943:50;2012;2054:7;2045:6;2034:9;2030:22;2012:50;:::i;2073:196::-;2141:20;;-1:-1:-1;;;;;2190:54:1;;2180:65;;2170:93;;2259:1;2256;2249:12;2170:93;2073:196;;;:::o;2274:366::-;2341:6;2349;2402:2;2390:9;2381:7;2377:23;2373:32;2370:52;;;2418:1;2415;2408:12;2370:52;2441:29;2460:9;2441:29;:::i;:::-;2431:39;;2520:2;2509:9;2505:18;2492:32;2564:26;2557:5;2553:38;2546:5;2543:49;2533:77;;2606:1;2603;2596:12;2533:77;2629:5;2619:15;;;2274:366;;;;;:::o;2645:250::-;2730:1;2740:113;2754:6;2751:1;2748:13;2740:113;;;2830:11;;;2824:18;2811:11;;;2804:39;2776:2;2769:10;2740:113;;;-1:-1:-1;;2887:1:1;2869:16;;2862:27;2645:250::o;2900:271::-;2942:3;2980:5;2974:12;3007:6;3002:3;2995:19;3023:76;3092:6;3085:4;3080:3;3076:14;3069:4;3062:5;3058:16;3023:76;:::i;:::-;3153:2;3132:15;-1:-1:-1;;3128:29:1;3119:39;;;;3160:4;3115:50;;2900:271;-1:-1:-1;;2900:271:1:o;3176:220::-;3325:2;3314:9;3307:21;3288:4;3345:45;3386:2;3375:9;3371:18;3363:6;3345:45;:::i;3401:180::-;3460:6;3513:2;3501:9;3492:7;3488:23;3484:32;3481:52;;;3529:1;3526;3519:12;3481:52;-1:-1:-1;3552:23:1;;3401:180;-1:-1:-1;3401:180:1:o;3817:254::-;3885:6;3893;3946:2;3934:9;3925:7;3921:23;3917:32;3914:52;;;3962:1;3959;3952:12;3914:52;3985:29;4004:9;3985:29;:::i;:::-;3975:39;4061:2;4046:18;;;;4033:32;;-1:-1:-1;;;3817:254:1:o;4258:328::-;4335:6;4343;4351;4404:2;4392:9;4383:7;4379:23;4375:32;4372:52;;;4420:1;4417;4410:12;4372:52;4443:29;4462:9;4443:29;:::i;:::-;4433:39;;4491:38;4525:2;4514:9;4510:18;4491:38;:::i;:::-;4481:48;;4576:2;4565:9;4561:18;4548:32;4538:42;;4258:328;;;;;:::o;4958:248::-;5026:6;5034;5087:2;5075:9;5066:7;5062:23;5058:32;5055:52;;;5103:1;5100;5093:12;5055:52;-1:-1:-1;;5126:23:1;;;5196:2;5181:18;;;5168:32;;-1:-1:-1;4958:248:1:o;5513:712::-;5567:5;5620:3;5613:4;5605:6;5601:17;5597:27;5587:55;;5638:1;5635;5628:12;5587:55;5674:6;5661:20;5700:4;5723:18;5719:2;5716:26;5713:52;;;5745:18;;:::i;:::-;5791:2;5788:1;5784:10;5814:28;5838:2;5834;5830:11;5814:28;:::i;:::-;5876:15;;;5946;;;5942:24;;;5907:12;;;;5978:15;;;5975:35;;;6006:1;6003;5996:12;5975:35;6042:2;6034:6;6030:15;6019:26;;6054:142;6070:6;6065:3;6062:15;6054:142;;;6136:17;;6124:30;;6087:12;;;;6174;;;;6054:142;;;6214:5;5513:712;-1:-1:-1;;;;;;;5513:712:1:o;6230:490::-;6332:6;6340;6348;6401:2;6389:9;6380:7;6376:23;6372:32;6369:52;;;6417:1;6414;6407:12;6369:52;6440:29;6459:9;6440:29;:::i;:::-;6430:39;;6516:2;6505:9;6501:18;6488:32;6478:42;;6571:2;6560:9;6556:18;6543:32;6598:18;6590:6;6587:30;6584:50;;;6630:1;6627;6620:12;6584:50;6653:61;6706:7;6697:6;6686:9;6682:22;6653:61;:::i;:::-;6643:71;;;6230:490;;;;;:::o;6725:254::-;6793:6;6801;6854:2;6842:9;6833:7;6829:23;6825:32;6822:52;;;6870:1;6867;6860:12;6822:52;6906:9;6893:23;6883:33;;6935:38;6969:2;6958:9;6954:18;6935:38;:::i;:::-;6925:48;;6725:254;;;;;:::o;6984:763::-;7086:6;7094;7102;7110;7118;7126;7179:3;7167:9;7158:7;7154:23;7150:33;7147:53;;;7196:1;7193;7186:12;7147:53;7235:9;7222:23;7285:4;7278:5;7274:16;7267:5;7264:27;7254:55;;7305:1;7302;7295:12;7254:55;7328:5;-1:-1:-1;7380:2:1;7365:18;;7352:32;;-1:-1:-1;7431:2:1;7416:18;;7403:32;;-1:-1:-1;7482:2:1;7467:18;;7454:32;;-1:-1:-1;7538:3:1;7523:19;;7510:33;-1:-1:-1;;;;;7574:70:1;;7562:83;;7552:111;;7659:1;7656;7649:12;7552:111;7682:7;7672:17;;;7736:3;7725:9;7721:19;7708:33;7698:43;;6984:763;;;;;;;;:::o;7752:592::-;7823:6;7831;7884:2;7872:9;7863:7;7859:23;7855:32;7852:52;;;7900:1;7897;7890:12;7852:52;7940:9;7927:23;7969:18;8010:2;8002:6;7999:14;7996:34;;;8026:1;8023;8016:12;7996:34;8064:6;8053:9;8049:22;8039:32;;8109:7;8102:4;8098:2;8094:13;8090:27;8080:55;;8131:1;8128;8121:12;8080:55;8171:2;8158:16;8197:2;8189:6;8186:14;8183:34;;;8213:1;8210;8203:12;8183:34;8258:7;8253:2;8244:6;8240:2;8236:15;8232:24;8229:37;8226:57;;;8279:1;8276;8269:12;8226:57;8310:2;8302:11;;;;;8332:6;;-1:-1:-1;7752:592:1;;-1:-1:-1;;;;7752:592:1:o;8349:186::-;8408:6;8461:2;8449:9;8440:7;8436:23;8432:32;8429:52;;;8477:1;8474;8467:12;8429:52;8500:29;8519:9;8500:29;:::i;9426:390::-;9504:6;9512;9565:2;9553:9;9544:7;9540:23;9536:32;9533:52;;;9581:1;9578;9571:12;9533:52;9617:9;9604:23;9594:33;;9678:2;9667:9;9663:18;9650:32;9705:18;9697:6;9694:30;9691:50;;;9737:1;9734;9727:12;9691:50;9760;9802:7;9793:6;9782:9;9778:22;9760:50;:::i;:::-;9750:60;;;9426:390;;;;;:::o;9821:632::-;9992:2;10044:21;;;10114:13;;10017:18;;;10136:22;;;9963:4;;9992:2;10215:15;;;;10189:2;10174:18;;;9963:4;10258:169;10272:6;10269:1;10266:13;10258:169;;;10333:13;;10321:26;;10402:15;;;;10367:12;;;;10294:1;10287:9;10258:169;;;-1:-1:-1;10444:3:1;;9821:632;-1:-1:-1;;;;;;9821:632:1:o;10458:118::-;10544:5;10537:13;10530:21;10523:5;10520:32;10510:60;;10566:1;10563;10556:12;10581:315;10646:6;10654;10707:2;10695:9;10686:7;10682:23;10678:32;10675:52;;;10723:1;10720;10713:12;10675:52;10746:29;10765:9;10746:29;:::i;:::-;10736:39;;10825:2;10814:9;10810:18;10797:32;10838:28;10860:5;10838:28;:::i;10901:667::-;10996:6;11004;11012;11020;11073:3;11061:9;11052:7;11048:23;11044:33;11041:53;;;11090:1;11087;11080:12;11041:53;11113:29;11132:9;11113:29;:::i;:::-;11103:39;;11161:38;11195:2;11184:9;11180:18;11161:38;:::i;:::-;11151:48;;11246:2;11235:9;11231:18;11218:32;11208:42;;11301:2;11290:9;11286:18;11273:32;11328:18;11320:6;11317:30;11314:50;;;11360:1;11357;11350:12;11314:50;11383:22;;11436:4;11428:13;;11424:27;-1:-1:-1;11414:55:1;;11465:1;11462;11455:12;11414:55;11488:74;11554:7;11549:2;11536:16;11531:2;11527;11523:11;11488:74;:::i;:::-;11478:84;;;10901:667;;;;;;;:::o;11786:484::-;11888:6;11896;11904;11957:2;11945:9;11936:7;11932:23;11928:32;11925:52;;;11973:1;11970;11963:12;11925:52;12009:9;11996:23;11986:33;;12066:2;12055:9;12051:18;12038:32;12028:42;;12121:2;12110:9;12106:18;12093:32;12148:18;12140:6;12137:30;12134:50;;;12180:1;12177;12170:12;12275:260;12343:6;12351;12404:2;12392:9;12383:7;12379:23;12375:32;12372:52;;;12420:1;12417;12410:12;12372:52;12443:29;12462:9;12443:29;:::i;:::-;12433:39;;12491:38;12525:2;12514:9;12510:18;12491:38;:::i;12540:437::-;12619:1;12615:12;;;;12662;;;12683:61;;12737:4;12729:6;12725:17;12715:27;;12683:61;12790:2;12782:6;12779:14;12759:18;12756:38;12753:218;;-1:-1:-1;;;12824:1:1;12817:88;12928:4;12925:1;12918:15;12956:4;12953:1;12946:15;12753:218;;12540:437;;;:::o;13108:545::-;13210:2;13205:3;13202:11;13199:448;;;13246:1;13271:5;13267:2;13260:17;13316:4;13312:2;13302:19;13386:2;13374:10;13370:19;13367:1;13363:27;13357:4;13353:38;13422:4;13410:10;13407:20;13404:47;;;-1:-1:-1;13445:4:1;13404:47;13500:2;13495:3;13491:12;13488:1;13484:20;13478:4;13474:31;13464:41;;13555:82;13573:2;13566:5;13563:13;13555:82;;;13618:17;;;13599:1;13588:13;13555:82;;;13559:3;;;13108:545;;;:::o;13829:1352::-;13955:3;13949:10;13982:18;13974:6;13971:30;13968:56;;;14004:18;;:::i;:::-;14033:97;14123:6;14083:38;14115:4;14109:11;14083:38;:::i;:::-;14077:4;14033:97;:::i;:::-;14185:4;;14249:2;14238:14;;14266:1;14261:663;;;;14968:1;14985:6;14982:89;;;-1:-1:-1;15037:19:1;;;15031:26;14982:89;-1:-1:-1;;13786:1:1;13782:11;;;13778:24;13774:29;13764:40;13810:1;13806:11;;;13761:57;15084:81;;14231:944;;14261:663;13055:1;13048:14;;;13092:4;13079:18;;-1:-1:-1;;14297:20:1;;;14415:236;14429:7;14426:1;14423:14;14415:236;;;14518:19;;;14512:26;14497:42;;14610:27;;;;14578:1;14566:14;;;;14445:19;;14415:236;;;14419:3;14679:6;14670:7;14667:19;14664:201;;;14740:19;;;14734:26;-1:-1:-1;;14823:1:1;14819:14;;;14835:3;14815:24;14811:37;14807:42;14792:58;14777:74;;14664:201;-1:-1:-1;;;;;14911:1:1;14895:14;;;14891:22;14878:36;;-1:-1:-1;13829:1352:1:o;15608:184::-;-1:-1:-1;;;15657:1:1;15650:88;15757:4;15754:1;15747:15;15781:4;15778:1;15771:15;15797:184;-1:-1:-1;;;15846:1:1;15839:88;15946:4;15943:1;15936:15;15970:4;15967:1;15960:15;15986:168;16059:9;;;16090;;16107:15;;;16101:22;;16087:37;16077:71;;16128:18;;:::i;16348:274::-;16388:1;16414;16404:189;;-1:-1:-1;;;16446:1:1;16439:88;16550:4;16547:1;16540:15;16578:4;16575:1;16568:15;16404:189;-1:-1:-1;16607:9:1;;16348:274::o;20489:135::-;20528:3;20549:17;;;20546:43;;20569:18;;:::i;:::-;-1:-1:-1;20616:1:1;20605:13;;20489:135::o;21396:496::-;21575:3;21613:6;21607:13;21629:66;21688:6;21683:3;21676:4;21668:6;21664:17;21629:66;:::i;:::-;21758:13;;21717:16;;;;21780:70;21758:13;21717:16;21827:4;21815:17;;21780:70;:::i;:::-;21866:20;;21396:496;-1:-1:-1;;;;21396:496:1:o;22313:1256::-;22537:3;22575:6;22569:13;22601:4;22614:64;22671:6;22666:3;22661:2;22653:6;22649:15;22614:64;:::i;:::-;22741:13;;22700:16;;;;22763:68;22741:13;22700:16;22798:15;;;22763:68;:::i;:::-;22920:13;;22853:20;;;22893:1;;22958:36;22920:13;22958:36;:::i;:::-;23013:1;23030:18;;;23057:141;;;;23212:1;23207:337;;;;23023:521;;23057:141;-1:-1:-1;;23092:24:1;;23078:39;;23169:16;;23162:24;23148:39;;23137:51;;;-1:-1:-1;23057:141:1;;23207:337;23238:6;23235:1;23228:17;23286:2;23283:1;23273:16;23311:1;23325:169;23339:8;23336:1;23333:15;23325:169;;;23421:14;;23406:13;;;23399:37;23464:16;;;;23356:10;;23325:169;;;23329:3;;23525:8;23518:5;23514:20;23507:27;;23023:521;-1:-1:-1;23560:3:1;;22313:1256;-1:-1:-1;;;;;;;;;;22313:1256:1:o;26350:125::-;26415:9;;;26436:10;;;26433:36;;;26449:18;;:::i;28013:245::-;28080:6;28133:2;28121:9;28112:7;28108:23;28104:32;28101:52;;;28149:1;28146;28139:12;28101:52;28181:9;28175:16;28200:28;28222:5;28200:28;:::i;31919:812::-;32330:25;32325:3;32318:38;32300:3;32385:6;32379:13;32401:75;32469:6;32464:2;32459:3;32455:12;32448:4;32440:6;32436:17;32401:75;:::i;:::-;32540:19;32535:2;32495:16;;;32527:11;;;32520:40;32585:13;;32607:76;32585:13;32669:2;32661:11;;32654:4;32642:17;;32607:76;:::i;:::-;32703:17;32722:2;32699:26;;31919:812;-1:-1:-1;;;;31919:812:1:o;33509:136::-;33548:3;33576:5;33566:39;;33585:18;;:::i;:::-;-1:-1:-1;;;33621:18:1;;33509:136::o;34729:512::-;34923:4;-1:-1:-1;;;;;35033:2:1;35025:6;35021:15;35010:9;35003:34;35085:2;35077:6;35073:15;35068:2;35057:9;35053:18;35046:43;;35125:6;35120:2;35109:9;35105:18;35098:34;35168:3;35163:2;35152:9;35148:18;35141:31;35189:46;35230:3;35219:9;35215:19;35207:6;35189:46;:::i;:::-;35181:54;34729:512;-1:-1:-1;;;;;;34729:512:1:o;35246:249::-;35315:6;35368:2;35356:9;35347:7;35343:23;35339:32;35336:52;;;35384:1;35381;35374:12;35336:52;35416:9;35410:16;35435:30;35459:5;35435:30;:::i;36334:128::-;36401:9;;;36422:11;;;36419:37;;;36436:18;;:::i;36467:184::-;-1:-1:-1;;;36516:1:1;36509:88;36616:4;36613:1;36606:15;36640:4;36637:1;36630:15

Swarm Source

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