ETH Price: $3,338.33 (+2.45%)

Token

Charify NFT (CNFT)
 

Overview

Max Total Supply

22 CNFT

Holders

15

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
fakealphapixel.eth
Balance
1 CNFT
0x05cf9591c01af02cd9fa860f9a37bad94438c166
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:
CharifyNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-07
*/

// File: @openzeppelin/[email protected]/utils/Counters.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/[email protected]/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/[email protected]/security/Pausable.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/[email protected]/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/utils/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/[email protected]/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/[email protected]/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/[email protected]/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/extensions/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721URIStorage.sol


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

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721Enumerable.sol


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: Charify NFT.sol



pragma solidity ^0.8.4;










contract CharifyNFT is ERC721, ERC721Enumerable, ERC721URIStorage, Ownable, Pausable {

    

    constructor() ERC721("Charify NFT", "CNFT") {

        pause();

    }

    using Counters for Counters.Counter;



    Counters.Counter private _tokenIdCounter;

    struct RoyaltyInfo {

        address recipient;

        uint24 amount;

    }

    RoyaltyInfo private _royalties;

    uint256 price = 90000000000000000;

    uint256 allowedAmount = 2;

    string public baseURI;

    string public baseExtension = ".json";

    address payable charifyArt;



    function setRecepient(address payable charifyArt_) external onlyOwner {

        charifyArt = charifyArt_;

    }



    function setPrice(uint256 price_) external onlyOwner {

        price = price_;

    }



    function safeMint(address to) public whenNotPaused onlyOwner {

        uint256 tokenId = _tokenIdCounter.current();

        _tokenIdCounter.increment();

        _safeMint(to, tokenId);

        _setTokenURI(tokenId, getUri(tokenId));

    }



    function mint(uint256 num) public payable whenNotPaused {

        uint256 supply = totalSupply();

        require(balanceOf(msg.sender) <=2, "You already have the maximum amount of tokens");

        require( num <= allowedAmount, "You cannot mint more then the allowed amount");

        require( supply + num < 100, "Exceeds maximum supply");

        require( msg.value >= price * num, "Not enough ETH sent, check price" );

        for(uint256 i; i < num; i++){

        uint256 tokenId = _tokenIdCounter.current();

        _tokenIdCounter.increment();        

        _safeMint( msg.sender, tokenId);

    }

    }



    function setBaseURI(string memory _baseURI) public whenPaused onlyOwner {

        baseURI = _baseURI;

    }

    

    function setTokenURI(uint256 tokenId, string memory _tokenURI) public whenPaused {

        _setTokenURI(tokenId, _tokenURI);

    }

    

    function batchSetTokenURIs(uint256 fromTokenId, uint256 toTokenId) public onlyOwner {

        for (uint256 i = fromTokenId; i <= toTokenId; i++) {

            _setTokenURI(i, getUri(i));

        }

    }



    function getUri(uint256 tokenId) private view returns (string memory) {

        return string(

            abi.encodePacked(

            baseURI,

            Strings.toString(tokenId),

            ".json"

           )

        );

    }



    // The following functions are overrides required by Solidity.



    function _beforeTokenTransfer(address from, address to, uint256 tokenId)

        internal

        whenNotPaused

        override(ERC721, ERC721Enumerable)

    {

        super._beforeTokenTransfer(from, to, tokenId);

    }



    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {

        super._burn(tokenId);

    }



    function tokenURI(uint256 tokenId)

        public

        view

        override(ERC721, ERC721URIStorage)

        returns (string memory)

    {

        return super.tokenURI(tokenId);

    }



    function supportsInterface(bytes4 interfaceId)

        public

        view

        override(ERC721, ERC721Enumerable)

        returns (bool)

    {

        return super.supportsInterface(interfaceId);

    }



    //================================== ERC2981 Royalties =======================================/



     function setRoyalty(

        address recipient,

        uint256 value

     ) public virtual onlyOwner {

        _setRoyalties(recipient, value);

    }



    /// @dev Sets token royalties

    /// @param recipient recipient of the royalties

    /// @param value percentage (using 2 decimals - 10000 = 100, 0 = 0)

    function _setRoyalties(address recipient, uint256 value) internal {

        require(value <= 10000, 'ERC2981Royalties: Too high');

        _royalties = RoyaltyInfo(recipient, uint24(value));

    }



    function royaltyInfo(uint256, uint256 value)

        external

        view

        returns (address receiver, uint256 royaltyAmount)

    {

        RoyaltyInfo memory royalties = _royalties;

        receiver = royalties.recipient;

        royaltyAmount = (value * royalties.amount) / 10000;

    }



    //================================== Admin functions =======================================/



    // Transfers the funds to Charify.art wallet

    function secretButton() public virtual onlyOwner {

        charifyArt.transfer(address(this).balance);

    }



    function pause() public onlyOwner {

        _pause();

    }



    function unpause() public onlyOwner {

        require(bytes(baseURI).length != 0, "Please set base URI");

        require(charifyArt != address(0), "Please recepient address");

        _unpause();

    }





}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"internalType":"uint256","name":"toTokenId","type":"uint256"}],"name":"batchSetTokenURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"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":"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"secretButton","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":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"charifyArt_","type":"address"}],"name":"setRecepient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

67013fbe85edc90000600e556002600f5560c06040526005608081905264173539b7b760d91b60a09081526200003991601191906200026c565b503480156200004757600080fd5b50604080518082018252600b81526a10da185c9a599e4813919560aa1b60208083019182528351808501909452600484526310d3919560e21b90840152815191929162000097916000916200026c565b508051620000ad9060019060208401906200026c565b505050620000ca620000c4620000e760201b60201c565b620000eb565b600b805460ff60a01b19169055620000e16200013d565b6200034f565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200014762000153565b62000151620001b3565b565b600b546001600160a01b03163314620001515760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b620001bd62000216565b600b805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620001f93390565b6040516001600160a01b03909116815260200160405180910390a1565b6200022a600b54600160a01b900460ff1690565b15620001515760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401620001aa565b8280546200027a9062000312565b90600052602060002090601f0160209004810192826200029e5760008555620002e9565b82601f10620002b957805160ff1916838001178555620002e9565b82800160010185558215620002e9579182015b82811115620002e9578251825591602001919060010190620002cc565b50620002f7929150620002fb565b5090565b5b80821115620002f75760008155600101620002fc565b600181811c908216806200032757607f821691505b602082108114156200034957634e487b7160e01b600052602260045260246000fd5b50919050565b6126fd806200035f6000396000f3fe6080604052600436106101f95760003560e01c806355f804b31161010d57806391b7f5ed116100a0578063b88d4fde1161006f578063b88d4fde1461059b578063c6682862146105bb578063c87b56dd146105d0578063e985e9c5146105f0578063f2fde38b1461063957600080fd5b806391b7f5ed1461053357806395d89b4114610553578063a0712d6814610568578063a22cb4651461057b57600080fd5b806370a08231116100dc57806370a08231146104cb578063715018a6146104eb5780638456cb59146105005780638da5cb5b1461051557600080fd5b806355f804b3146104575780635c975abb146104775780636352211e146104965780636c0360eb146104b657600080fd5b806323b872dd1161019057806340d097c31161015f57806340d097c3146103c257806342842e0e146103e257806346f071aa146104025780634f6ccce714610417578063517d31bd1461043757600080fd5b806323b872dd1461032e5780632a55205a1461034e5780632f745c591461038d5780633f4ba83a146103ad57600080fd5b806310fd332b116101cc57806310fd332b146102af578063162094c4146102cf57806318160ddd146102ef578063182870081461030e57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e61021936600461222d565b610659565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061024861066a565b60405161022a9190612483565b34801561026157600080fd5b5061027561027036600461229c565b6106fc565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004612201565b610723565b005b3480156102bb57600080fd5b506102ad6102ca366004612201565b61083e565b3480156102db57600080fd5b506102ad6102ea3660046122b5565b610854565b3480156102fb57600080fd5b506008545b60405190815260200161022a565b34801561031a57600080fd5b506102ad6103293660046120b7565b610866565b34801561033a57600080fd5b506102ad61034936600461210d565b610890565b34801561035a57600080fd5b5061036e6103693660046122f2565b6108c1565b604080516001600160a01b03909316835260208301919091520161022a565b34801561039957600080fd5b506103006103a8366004612201565b610916565b3480156103b957600080fd5b506102ad6109ac565b3480156103ce57600080fd5b506102ad6103dd3660046120b7565b610a69565b3480156103ee57600080fd5b506102ad6103fd36600461210d565b610ab0565b34801561040e57600080fd5b506102ad610acb565b34801561042357600080fd5b5061030061043236600461229c565b610b0f565b34801561044357600080fd5b506102ad6104523660046122f2565b610ba2565b34801561046357600080fd5b506102ad610472366004612267565b610bd2565b34801561048357600080fd5b50600b54600160a01b900460ff1661021e565b3480156104a257600080fd5b506102756104b136600461229c565b610bf5565b3480156104c257600080fd5b50610248610c55565b3480156104d757600080fd5b506103006104e63660046120b7565b610ce3565b3480156104f757600080fd5b506102ad610d69565b34801561050c57600080fd5b506102ad610d7b565b34801561052157600080fd5b50600b546001600160a01b0316610275565b34801561053f57600080fd5b506102ad61054e36600461229c565b610d8b565b34801561055f57600080fd5b50610248610d98565b6102ad61057636600461229c565b610da7565b34801561058757600080fd5b506102ad6105963660046121ce565b610f84565b3480156105a757600080fd5b506102ad6105b636600461214e565b610f8f565b3480156105c757600080fd5b50610248610fc7565b3480156105dc57600080fd5b506102486105eb36600461229c565b610fd4565b3480156105fc57600080fd5b5061021e61060b3660046120d4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064557600080fd5b506102ad6106543660046120b7565b610fdf565b600061066482611055565b92915050565b606060008054610679906125c4565b80601f01602080910402602001604051908101604052809291908181526020018280546106a5906125c4565b80156106f25780601f106106c7576101008083540402835291602001916106f2565b820191906000526020600020905b8154815290600101906020018083116106d557829003601f168201915b5050505050905090565b60006107078261107a565b506000908152600460205260409020546001600160a01b031690565b600061072e82610bf5565b9050806001600160a01b0316836001600160a01b031614156107a15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806107bd57506107bd813361060b565b61082f5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610798565b61083983836110d9565b505050565b610846611147565b61085082826111a1565b5050565b61085c61123d565b610850828261128d565b61086e611147565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b61089a3382611327565b6108b65760405162461bcd60e51b8152600401610798906124e8565b6108398383836113a6565b60408051808201909152600d546001600160a01b038116808352600160a01b90910462ffffff16602083018190529091600091612710906109029086612562565b61090c919061254e565b9150509250929050565b600061092183610ce3565b82106109835760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610798565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6109b4611147565b601080546109c1906125c4565b15159050610a075760405162461bcd60e51b8152602060048201526013602482015272506c656173652073657420626173652055524960681b6044820152606401610798565b6012546001600160a01b0316610a5f5760405162461bcd60e51b815260206004820152601860248201527f506c6561736520726563657069656e74206164647265737300000000000000006044820152606401610798565b610a6761154d565b565b610a716115a2565b610a79611147565b6000610a84600c5490565b9050610a94600c80546001019055565b610a9e82826115ef565b61085081610aab83611609565b61128d565b61083983838360405180602001604052806000815250610f8f565b610ad3611147565b6012546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b0c573d6000803e3d6000fd5b50565b6000610b1a60085490565b8210610b7d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610798565b60088281548110610b9057610b90612670565b90600052602060002001549050919050565b610baa611147565b815b81811161083957610bc081610aab83611609565b80610bca816125ff565b915050610bac565b610bda61123d565b610be2611147565b8051610850906010906020840190611f88565b6000818152600260205260408120546001600160a01b0316806106645760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610798565b60108054610c62906125c4565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8e906125c4565b8015610cdb5780601f10610cb057610100808354040283529160200191610cdb565b820191906000526020600020905b815481529060010190602001808311610cbe57829003601f168201915b505050505081565b60006001600160a01b038216610d4d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610798565b506001600160a01b031660009081526003602052604090205490565b610d71611147565b610a67600061163d565b610d83611147565b610a6761168f565b610d93611147565b600e55565b606060018054610679906125c4565b610daf6115a2565b6000610dba60085490565b90506002610dc733610ce3565b1115610e2b5760405162461bcd60e51b815260206004820152602d60248201527f596f7520616c7265616479206861766520746865206d6178696d756d20616d6f60448201526c756e74206f6620746f6b656e7360981b6064820152608401610798565b600f54821115610e925760405162461bcd60e51b815260206004820152602c60248201527f596f752063616e6e6f74206d696e74206d6f7265207468656e2074686520616c60448201526b1b1bddd95908185b5bdd5b9d60a21b6064820152608401610798565b6064610e9e8383612536565b10610ee45760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b6044820152606401610798565b81600e54610ef29190612562565b341015610f415760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f756768204554482073656e742c20636865636b2070726963656044820152606401610798565b60005b82811015610839576000610f57600c5490565b9050610f67600c80546001019055565b610f7133826115ef565b5080610f7c816125ff565b915050610f44565b6108503383836116d2565b610f993383611327565b610fb55760405162461bcd60e51b8152600401610798906124e8565b610fc1848484846117a1565b50505050565b60118054610c62906125c4565b6060610664826117d4565b610fe7611147565b6001600160a01b03811661104c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610798565b610b0c8161163d565b60006001600160e01b0319821663780e9d6360e01b14806106645750610664826118dd565b6000818152600260205260409020546001600160a01b0316610b0c5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610798565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061110e82610bf5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b546001600160a01b03163314610a675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610798565b6127108111156111f35760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f20686967680000000000006044820152606401610798565b604080518082019091526001600160a01b0390921680835262ffffff9091166020909201829052600d8054600160a01b9093026001600160b81b0319909316909117919091179055565b600b54600160a01b900460ff16610a675760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610798565b6000828152600260205260409020546001600160a01b03166113085760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610798565b6000828152600a60209081526040909120825161083992840190611f88565b60008061133383610bf5565b9050806001600160a01b0316846001600160a01b0316148061137a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061139e5750836001600160a01b0316611393846106fc565b6001600160a01b0316145b949350505050565b826001600160a01b03166113b982610bf5565b6001600160a01b03161461141d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610798565b6001600160a01b03821661147f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610798565b61148a83838361192d565b6114956000826110d9565b6001600160a01b03831660009081526003602052604081208054600192906114be908490612581565b90915550506001600160a01b03821660009081526003602052604081208054600192906114ec908490612536565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61155561123d565b600b805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600b54600160a01b900460ff1615610a675760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610798565b610850828260405180602001604052806000815250611940565b6060601061161683611973565b60405160200161162792919061238b565b6040516020818303038152906040529050919050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6116976115a2565b600b805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115853390565b816001600160a01b0316836001600160a01b031614156117345760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610798565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6117ac8484846113a6565b6117b884848484611a71565b610fc15760405162461bcd60e51b815260040161079890612496565b60606117df8261107a565b6000828152600a6020526040812080546117f8906125c4565b80601f0160208091040260200160405190810160405280929190818152602001828054611824906125c4565b80156118715780601f1061184657610100808354040283529160200191611871565b820191906000526020600020905b81548152906001019060200180831161185457829003601f168201915b50505050509050600061188f60408051602081019091526000815290565b90508051600014156118a2575092915050565b8151156118d45780826040516020016118bc92919061235c565b60405160208183030381529060405292505050919050565b61139e84611b7e565b60006001600160e01b031982166380ac58cd60e01b148061190e57506001600160e01b03198216635b5e139f60e01b145b8061066457506301ffc9a760e01b6001600160e01b0319831614610664565b6119356115a2565b610839838383611bf2565b61194a8383611caa565b6119576000848484611a71565b6108395760405162461bcd60e51b815260040161079890612496565b6060816119975750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119c157806119ab816125ff565b91506119ba9050600a8361254e565b915061199b565b60008167ffffffffffffffff8111156119dc576119dc612686565b6040519080825280601f01601f191660200182016040528015611a06576020820181803683370190505b5090505b841561139e57611a1b600183612581565b9150611a28600a8661261a565b611a33906030612536565b60f81b818381518110611a4857611a48612670565b60200101906001600160f81b031916908160001a905350611a6a600a8661254e565b9450611a0a565b60006001600160a01b0384163b15611b7357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ab5903390899088908890600401612446565b602060405180830381600087803b158015611acf57600080fd5b505af1925050508015611aff575060408051601f3d908101601f19168201909252611afc9181019061224a565b60015b611b59573d808015611b2d576040519150601f19603f3d011682016040523d82523d6000602084013e611b32565b606091505b508051611b515760405162461bcd60e51b815260040161079890612496565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061139e565b506001949350505050565b6060611b898261107a565b6000611ba060408051602081019091526000815290565b90506000815111611bc05760405180602001604052806000815250611beb565b80611bca84611973565b604051602001611bdb92919061235c565b6040516020818303038152906040525b9392505050565b6001600160a01b038316611c4d57611c4881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c70565b816001600160a01b0316836001600160a01b031614611c7057611c708382611df8565b6001600160a01b038216611c875761083981611e95565b826001600160a01b0316826001600160a01b031614610839576108398282611f44565b6001600160a01b038216611d005760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610798565b6000818152600260205260409020546001600160a01b031615611d655760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610798565b611d716000838361192d565b6001600160a01b0382166000908152600360205260408120805460019290611d9a908490612536565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611e0584610ce3565b611e0f9190612581565b600083815260076020526040902054909150808214611e62576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ea790600190612581565b60008381526009602052604081205460088054939450909284908110611ecf57611ecf612670565b906000526020600020015490508060088381548110611ef057611ef0612670565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f2857611f2861265a565b6001900381819060005260206000200160009055905550505050565b6000611f4f83610ce3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611f94906125c4565b90600052602060002090601f016020900481019282611fb65760008555611ffc565b82601f10611fcf57805160ff1916838001178555611ffc565b82800160010185558215611ffc579182015b82811115611ffc578251825591602001919060010190611fe1565b5061200892915061200c565b5090565b5b80821115612008576000815560010161200d565b600067ffffffffffffffff8084111561203c5761203c612686565b604051601f8501601f19908116603f0116810190828211818310171561206457612064612686565b8160405280935085815286868601111561207d57600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126120a857600080fd5b611beb83833560208501612021565b6000602082840312156120c957600080fd5b8135611beb8161269c565b600080604083850312156120e757600080fd5b82356120f28161269c565b915060208301356121028161269c565b809150509250929050565b60008060006060848603121561212257600080fd5b833561212d8161269c565b9250602084013561213d8161269c565b929592945050506040919091013590565b6000806000806080858703121561216457600080fd5b843561216f8161269c565b9350602085013561217f8161269c565b925060408501359150606085013567ffffffffffffffff8111156121a257600080fd5b8501601f810187136121b357600080fd5b6121c287823560208401612021565b91505092959194509250565b600080604083850312156121e157600080fd5b82356121ec8161269c565b91506020830135801515811461210257600080fd5b6000806040838503121561221457600080fd5b823561221f8161269c565b946020939093013593505050565b60006020828403121561223f57600080fd5b8135611beb816126b1565b60006020828403121561225c57600080fd5b8151611beb816126b1565b60006020828403121561227957600080fd5b813567ffffffffffffffff81111561229057600080fd5b61139e84828501612097565b6000602082840312156122ae57600080fd5b5035919050565b600080604083850312156122c857600080fd5b82359150602083013567ffffffffffffffff8111156122e657600080fd5b61090c85828601612097565b6000806040838503121561230557600080fd5b50508035926020909101359150565b6000815180845261232c816020860160208601612598565b601f01601f19169290920160200192915050565b60008151612352818560208601612598565b9290920192915050565b6000835161236e818460208801612598565b835190830190612382818360208801612598565b01949350505050565b600080845481600182811c9150808316806123a757607f831692505b60208084108214156123c757634e487b7160e01b86526022600452602486fd5b8180156123db57600181146123ec57612419565b60ff19861689528489019650612419565b60008b81526020902060005b868110156124115781548b8201529085019083016123f8565b505084890196505b50505050505061243d61242c8286612340565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061247990830184612314565b9695505050505050565b602081526000611beb6020830184612314565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b600082198211156125495761254961262e565b500190565b60008261255d5761255d612644565b500490565b600081600019048311821515161561257c5761257c61262e565b500290565b6000828210156125935761259361262e565b500390565b60005b838110156125b357818101518382015260200161259b565b83811115610fc15750506000910152565b600181811c908216806125d857607f821691505b602082108114156125f957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126135761261361262e565b5060010190565b60008261262957612629612644565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610b0c57600080fd5b6001600160e01b031981168114610b0c57600080fdfea2646970667358221220cf39016ce4b89594d83499e9a31655178413af303f944ee6d1fb0b8a15a9300d64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806355f804b31161010d57806391b7f5ed116100a0578063b88d4fde1161006f578063b88d4fde1461059b578063c6682862146105bb578063c87b56dd146105d0578063e985e9c5146105f0578063f2fde38b1461063957600080fd5b806391b7f5ed1461053357806395d89b4114610553578063a0712d6814610568578063a22cb4651461057b57600080fd5b806370a08231116100dc57806370a08231146104cb578063715018a6146104eb5780638456cb59146105005780638da5cb5b1461051557600080fd5b806355f804b3146104575780635c975abb146104775780636352211e146104965780636c0360eb146104b657600080fd5b806323b872dd1161019057806340d097c31161015f57806340d097c3146103c257806342842e0e146103e257806346f071aa146104025780634f6ccce714610417578063517d31bd1461043757600080fd5b806323b872dd1461032e5780632a55205a1461034e5780632f745c591461038d5780633f4ba83a146103ad57600080fd5b806310fd332b116101cc57806310fd332b146102af578063162094c4146102cf57806318160ddd146102ef578063182870081461030e57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e61021936600461222d565b610659565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061024861066a565b60405161022a9190612483565b34801561026157600080fd5b5061027561027036600461229c565b6106fc565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004612201565b610723565b005b3480156102bb57600080fd5b506102ad6102ca366004612201565b61083e565b3480156102db57600080fd5b506102ad6102ea3660046122b5565b610854565b3480156102fb57600080fd5b506008545b60405190815260200161022a565b34801561031a57600080fd5b506102ad6103293660046120b7565b610866565b34801561033a57600080fd5b506102ad61034936600461210d565b610890565b34801561035a57600080fd5b5061036e6103693660046122f2565b6108c1565b604080516001600160a01b03909316835260208301919091520161022a565b34801561039957600080fd5b506103006103a8366004612201565b610916565b3480156103b957600080fd5b506102ad6109ac565b3480156103ce57600080fd5b506102ad6103dd3660046120b7565b610a69565b3480156103ee57600080fd5b506102ad6103fd36600461210d565b610ab0565b34801561040e57600080fd5b506102ad610acb565b34801561042357600080fd5b5061030061043236600461229c565b610b0f565b34801561044357600080fd5b506102ad6104523660046122f2565b610ba2565b34801561046357600080fd5b506102ad610472366004612267565b610bd2565b34801561048357600080fd5b50600b54600160a01b900460ff1661021e565b3480156104a257600080fd5b506102756104b136600461229c565b610bf5565b3480156104c257600080fd5b50610248610c55565b3480156104d757600080fd5b506103006104e63660046120b7565b610ce3565b3480156104f757600080fd5b506102ad610d69565b34801561050c57600080fd5b506102ad610d7b565b34801561052157600080fd5b50600b546001600160a01b0316610275565b34801561053f57600080fd5b506102ad61054e36600461229c565b610d8b565b34801561055f57600080fd5b50610248610d98565b6102ad61057636600461229c565b610da7565b34801561058757600080fd5b506102ad6105963660046121ce565b610f84565b3480156105a757600080fd5b506102ad6105b636600461214e565b610f8f565b3480156105c757600080fd5b50610248610fc7565b3480156105dc57600080fd5b506102486105eb36600461229c565b610fd4565b3480156105fc57600080fd5b5061021e61060b3660046120d4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064557600080fd5b506102ad6106543660046120b7565b610fdf565b600061066482611055565b92915050565b606060008054610679906125c4565b80601f01602080910402602001604051908101604052809291908181526020018280546106a5906125c4565b80156106f25780601f106106c7576101008083540402835291602001916106f2565b820191906000526020600020905b8154815290600101906020018083116106d557829003601f168201915b5050505050905090565b60006107078261107a565b506000908152600460205260409020546001600160a01b031690565b600061072e82610bf5565b9050806001600160a01b0316836001600160a01b031614156107a15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806107bd57506107bd813361060b565b61082f5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610798565b61083983836110d9565b505050565b610846611147565b61085082826111a1565b5050565b61085c61123d565b610850828261128d565b61086e611147565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b61089a3382611327565b6108b65760405162461bcd60e51b8152600401610798906124e8565b6108398383836113a6565b60408051808201909152600d546001600160a01b038116808352600160a01b90910462ffffff16602083018190529091600091612710906109029086612562565b61090c919061254e565b9150509250929050565b600061092183610ce3565b82106109835760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610798565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6109b4611147565b601080546109c1906125c4565b15159050610a075760405162461bcd60e51b8152602060048201526013602482015272506c656173652073657420626173652055524960681b6044820152606401610798565b6012546001600160a01b0316610a5f5760405162461bcd60e51b815260206004820152601860248201527f506c6561736520726563657069656e74206164647265737300000000000000006044820152606401610798565b610a6761154d565b565b610a716115a2565b610a79611147565b6000610a84600c5490565b9050610a94600c80546001019055565b610a9e82826115ef565b61085081610aab83611609565b61128d565b61083983838360405180602001604052806000815250610f8f565b610ad3611147565b6012546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b0c573d6000803e3d6000fd5b50565b6000610b1a60085490565b8210610b7d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610798565b60088281548110610b9057610b90612670565b90600052602060002001549050919050565b610baa611147565b815b81811161083957610bc081610aab83611609565b80610bca816125ff565b915050610bac565b610bda61123d565b610be2611147565b8051610850906010906020840190611f88565b6000818152600260205260408120546001600160a01b0316806106645760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610798565b60108054610c62906125c4565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8e906125c4565b8015610cdb5780601f10610cb057610100808354040283529160200191610cdb565b820191906000526020600020905b815481529060010190602001808311610cbe57829003601f168201915b505050505081565b60006001600160a01b038216610d4d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610798565b506001600160a01b031660009081526003602052604090205490565b610d71611147565b610a67600061163d565b610d83611147565b610a6761168f565b610d93611147565b600e55565b606060018054610679906125c4565b610daf6115a2565b6000610dba60085490565b90506002610dc733610ce3565b1115610e2b5760405162461bcd60e51b815260206004820152602d60248201527f596f7520616c7265616479206861766520746865206d6178696d756d20616d6f60448201526c756e74206f6620746f6b656e7360981b6064820152608401610798565b600f54821115610e925760405162461bcd60e51b815260206004820152602c60248201527f596f752063616e6e6f74206d696e74206d6f7265207468656e2074686520616c60448201526b1b1bddd95908185b5bdd5b9d60a21b6064820152608401610798565b6064610e9e8383612536565b10610ee45760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b6044820152606401610798565b81600e54610ef29190612562565b341015610f415760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f756768204554482073656e742c20636865636b2070726963656044820152606401610798565b60005b82811015610839576000610f57600c5490565b9050610f67600c80546001019055565b610f7133826115ef565b5080610f7c816125ff565b915050610f44565b6108503383836116d2565b610f993383611327565b610fb55760405162461bcd60e51b8152600401610798906124e8565b610fc1848484846117a1565b50505050565b60118054610c62906125c4565b6060610664826117d4565b610fe7611147565b6001600160a01b03811661104c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610798565b610b0c8161163d565b60006001600160e01b0319821663780e9d6360e01b14806106645750610664826118dd565b6000818152600260205260409020546001600160a01b0316610b0c5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610798565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061110e82610bf5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b546001600160a01b03163314610a675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610798565b6127108111156111f35760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f20686967680000000000006044820152606401610798565b604080518082019091526001600160a01b0390921680835262ffffff9091166020909201829052600d8054600160a01b9093026001600160b81b0319909316909117919091179055565b600b54600160a01b900460ff16610a675760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610798565b6000828152600260205260409020546001600160a01b03166113085760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610798565b6000828152600a60209081526040909120825161083992840190611f88565b60008061133383610bf5565b9050806001600160a01b0316846001600160a01b0316148061137a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061139e5750836001600160a01b0316611393846106fc565b6001600160a01b0316145b949350505050565b826001600160a01b03166113b982610bf5565b6001600160a01b03161461141d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610798565b6001600160a01b03821661147f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610798565b61148a83838361192d565b6114956000826110d9565b6001600160a01b03831660009081526003602052604081208054600192906114be908490612581565b90915550506001600160a01b03821660009081526003602052604081208054600192906114ec908490612536565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61155561123d565b600b805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600b54600160a01b900460ff1615610a675760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610798565b610850828260405180602001604052806000815250611940565b6060601061161683611973565b60405160200161162792919061238b565b6040516020818303038152906040529050919050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6116976115a2565b600b805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115853390565b816001600160a01b0316836001600160a01b031614156117345760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610798565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6117ac8484846113a6565b6117b884848484611a71565b610fc15760405162461bcd60e51b815260040161079890612496565b60606117df8261107a565b6000828152600a6020526040812080546117f8906125c4565b80601f0160208091040260200160405190810160405280929190818152602001828054611824906125c4565b80156118715780601f1061184657610100808354040283529160200191611871565b820191906000526020600020905b81548152906001019060200180831161185457829003601f168201915b50505050509050600061188f60408051602081019091526000815290565b90508051600014156118a2575092915050565b8151156118d45780826040516020016118bc92919061235c565b60405160208183030381529060405292505050919050565b61139e84611b7e565b60006001600160e01b031982166380ac58cd60e01b148061190e57506001600160e01b03198216635b5e139f60e01b145b8061066457506301ffc9a760e01b6001600160e01b0319831614610664565b6119356115a2565b610839838383611bf2565b61194a8383611caa565b6119576000848484611a71565b6108395760405162461bcd60e51b815260040161079890612496565b6060816119975750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119c157806119ab816125ff565b91506119ba9050600a8361254e565b915061199b565b60008167ffffffffffffffff8111156119dc576119dc612686565b6040519080825280601f01601f191660200182016040528015611a06576020820181803683370190505b5090505b841561139e57611a1b600183612581565b9150611a28600a8661261a565b611a33906030612536565b60f81b818381518110611a4857611a48612670565b60200101906001600160f81b031916908160001a905350611a6a600a8661254e565b9450611a0a565b60006001600160a01b0384163b15611b7357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ab5903390899088908890600401612446565b602060405180830381600087803b158015611acf57600080fd5b505af1925050508015611aff575060408051601f3d908101601f19168201909252611afc9181019061224a565b60015b611b59573d808015611b2d576040519150601f19603f3d011682016040523d82523d6000602084013e611b32565b606091505b508051611b515760405162461bcd60e51b815260040161079890612496565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061139e565b506001949350505050565b6060611b898261107a565b6000611ba060408051602081019091526000815290565b90506000815111611bc05760405180602001604052806000815250611beb565b80611bca84611973565b604051602001611bdb92919061235c565b6040516020818303038152906040525b9392505050565b6001600160a01b038316611c4d57611c4881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c70565b816001600160a01b0316836001600160a01b031614611c7057611c708382611df8565b6001600160a01b038216611c875761083981611e95565b826001600160a01b0316826001600160a01b031614610839576108398282611f44565b6001600160a01b038216611d005760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610798565b6000818152600260205260409020546001600160a01b031615611d655760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610798565b611d716000838361192d565b6001600160a01b0382166000908152600360205260408120805460019290611d9a908490612536565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611e0584610ce3565b611e0f9190612581565b600083815260076020526040902054909150808214611e62576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ea790600190612581565b60008381526009602052604081205460088054939450909284908110611ecf57611ecf612670565b906000526020600020015490508060088381548110611ef057611ef0612670565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f2857611f2861265a565b6001900381819060005260206000200160009055905550505050565b6000611f4f83610ce3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611f94906125c4565b90600052602060002090601f016020900481019282611fb65760008555611ffc565b82601f10611fcf57805160ff1916838001178555611ffc565b82800160010185558215611ffc579182015b82811115611ffc578251825591602001919060010190611fe1565b5061200892915061200c565b5090565b5b80821115612008576000815560010161200d565b600067ffffffffffffffff8084111561203c5761203c612686565b604051601f8501601f19908116603f0116810190828211818310171561206457612064612686565b8160405280935085815286868601111561207d57600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126120a857600080fd5b611beb83833560208501612021565b6000602082840312156120c957600080fd5b8135611beb8161269c565b600080604083850312156120e757600080fd5b82356120f28161269c565b915060208301356121028161269c565b809150509250929050565b60008060006060848603121561212257600080fd5b833561212d8161269c565b9250602084013561213d8161269c565b929592945050506040919091013590565b6000806000806080858703121561216457600080fd5b843561216f8161269c565b9350602085013561217f8161269c565b925060408501359150606085013567ffffffffffffffff8111156121a257600080fd5b8501601f810187136121b357600080fd5b6121c287823560208401612021565b91505092959194509250565b600080604083850312156121e157600080fd5b82356121ec8161269c565b91506020830135801515811461210257600080fd5b6000806040838503121561221457600080fd5b823561221f8161269c565b946020939093013593505050565b60006020828403121561223f57600080fd5b8135611beb816126b1565b60006020828403121561225c57600080fd5b8151611beb816126b1565b60006020828403121561227957600080fd5b813567ffffffffffffffff81111561229057600080fd5b61139e84828501612097565b6000602082840312156122ae57600080fd5b5035919050565b600080604083850312156122c857600080fd5b82359150602083013567ffffffffffffffff8111156122e657600080fd5b61090c85828601612097565b6000806040838503121561230557600080fd5b50508035926020909101359150565b6000815180845261232c816020860160208601612598565b601f01601f19169290920160200192915050565b60008151612352818560208601612598565b9290920192915050565b6000835161236e818460208801612598565b835190830190612382818360208801612598565b01949350505050565b600080845481600182811c9150808316806123a757607f831692505b60208084108214156123c757634e487b7160e01b86526022600452602486fd5b8180156123db57600181146123ec57612419565b60ff19861689528489019650612419565b60008b81526020902060005b868110156124115781548b8201529085019083016123f8565b505084890196505b50505050505061243d61242c8286612340565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061247990830184612314565b9695505050505050565b602081526000611beb6020830184612314565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b600082198211156125495761254961262e565b500190565b60008261255d5761255d612644565b500490565b600081600019048311821515161561257c5761257c61262e565b500290565b6000828210156125935761259361262e565b500390565b60005b838110156125b357818101518382015260200161259b565b83811115610fc15750506000910152565b600181811c908216806125d857607f821691505b602082108114156125f957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126135761261361262e565b5060010190565b60008261262957612629612644565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610b0c57600080fd5b6001600160e01b031981168114610b0c57600080fdfea2646970667358221220cf39016ce4b89594d83499e9a31655178413af303f944ee6d1fb0b8a15a9300d64736f6c63430008070033

Deployed Bytecode Sourcemap

52406:5037:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55618:226;;;;;;;;;;-1:-1:-1;55618:226:0;;;;;:::i;:::-;;:::i;:::-;;;8942:14:1;;8935:22;8917:41;;8905:2;8890:18;55618:226:0;;;;;;;;30942:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32455:171::-;;;;;;;;;;-1:-1:-1;32455:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7961:32:1;;;7943:51;;7931:2;7916:18;32455:171:0;7797:203:1;31972:417:0;;;;;;;;;;-1:-1:-1;31972:417:0;;;;;:::i;:::-;;:::i;:::-;;55964:165;;;;;;;;;;-1:-1:-1;55964:165:0;;;;;:::i;:::-;;:::i;54292:136::-;;;;;;;;;;-1:-1:-1;54292:136:0;;;;;:::i;:::-;;:::i;46821:113::-;;;;;;;;;;-1:-1:-1;46909:10:0;:17;46821:113;;;18949:25:1;;;18937:2;18922:18;46821:113:0;18803:177:1;53010:117:0;;;;;;;;;;-1:-1:-1;53010:117:0;;;;;:::i;:::-;;:::i;33155:336::-;;;;;;;;;;-1:-1:-1;33155:336:0;;;;;:::i;:::-;;:::i;56525:319::-;;;;;;;;;;-1:-1:-1;56525:319:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;8690:32:1;;;8672:51;;8754:2;8739:18;;8732:34;;;;8645:18;56525:319:0;8498:274:1;46489:256:0;;;;;;;;;;-1:-1:-1;46489:256:0;;;;;:::i;:::-;;:::i;57216:214::-;;;;;;;;;;;;;:::i;53241:253::-;;;;;;;;;;-1:-1:-1;53241:253:0;;;;;:::i;:::-;;:::i;33562:185::-;;;;;;;;;;-1:-1:-1;33562:185:0;;;;;:::i;:::-;;:::i;57013:114::-;;;;;;;;;;;;;:::i;47011:233::-;;;;;;;;;;-1:-1:-1;47011:233:0;;;;;:::i;:::-;;:::i;54444:214::-;;;;;;;;;;-1:-1:-1;54444:214:0;;;;;:::i;:::-;;:::i;54163:113::-;;;;;;;;;;-1:-1:-1;54163:113:0;;;;;:::i;:::-;;:::i;6552:86::-;;;;;;;;;;-1:-1:-1;6623:7:0;;-1:-1:-1;;;6623:7:0;;;;6552:86;;30653:222;;;;;;;;;;-1:-1:-1;30653:222:0;;;;;:::i;:::-;;:::i;52895:21::-;;;;;;;;;;;;;:::i;30384:207::-;;;;;;;;;;-1:-1:-1;30384:207:0;;;;;:::i;:::-;;:::i;9423:103::-;;;;;;;;;;;;;:::i;57139:65::-;;;;;;;;;;;;;:::i;8775:87::-;;;;;;;;;;-1:-1:-1;8848:6:0;;-1:-1:-1;;;;;8848:6:0;8775:87;;53139:90;;;;;;;;;;-1:-1:-1;53139:90:0;;;;;:::i;:::-;;:::i;31111:104::-;;;;;;;;;;;;;:::i;53506:645::-;;;;;;:::i;:::-;;:::i;32698:155::-;;;;;;;;;;-1:-1:-1;32698:155:0;;;;;:::i;:::-;;:::i;33818:323::-;;;;;;;;;;-1:-1:-1;33818:323:0;;;;;:::i;:::-;;:::i;52925:37::-;;;;;;;;;;;;;:::i;55396:210::-;;;;;;;;;;-1:-1:-1;55396:210:0;;;;;:::i;:::-;;:::i;32924:164::-;;;;;;;;;;-1:-1:-1;32924:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33045:25:0;;;33021:4;33045:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32924:164;9681:201;;;;;;;;;;-1:-1:-1;9681:201:0;;;;;:::i;:::-;;:::i;55618:226::-;55765:4;55798:36;55822:11;55798:23;:36::i;:::-;55791:43;55618:226;-1:-1:-1;;55618:226:0:o;30942:100::-;30996:13;31029:5;31022:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30942:100;:::o;32455:171::-;32531:7;32551:23;32566:7;32551:14;:23::i;:::-;-1:-1:-1;32594:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32594:24:0;;32455:171::o;31972:417::-;32053:13;32069:23;32084:7;32069:14;:23::i;:::-;32053:39;;32117:5;-1:-1:-1;;;;;32111:11:0;:2;-1:-1:-1;;;;;32111:11:0;;;32103:57;;;;-1:-1:-1;;;32103:57:0;;17063:2:1;32103:57:0;;;17045:21:1;17102:2;17082:18;;;17075:30;17141:34;17121:18;;;17114:62;-1:-1:-1;;;17192:18:1;;;17185:31;17233:19;;32103:57:0;;;;;;;;;4739:10;-1:-1:-1;;;;;32195:21:0;;;;:62;;-1:-1:-1;32220:37:0;32237:5;4739:10;32924:164;:::i;32220:37::-;32173:174;;;;-1:-1:-1;;;32173:174:0;;15557:2:1;32173:174:0;;;15539:21:1;15596:2;15576:18;;;15569:30;15635:34;15615:18;;;15608:62;15706:32;15686:18;;;15679:60;15756:19;;32173:174:0;15355:426:1;32173:174:0;32360:21;32369:2;32373:7;32360:8;:21::i;:::-;32042:347;31972:417;;:::o;55964:165::-;8661:13;:11;:13::i;:::-;56088:31:::1;56102:9;56113:5;56088:13;:31::i;:::-;55964:165:::0;;:::o;54292:136::-;6416:16;:14;:16::i;:::-;54386:32:::1;54399:7;54408:9;54386:12;:32::i;53010:117::-:0;8661:13;:11;:13::i;:::-;53093:10:::1;:24:::0;;-1:-1:-1;;;;;;53093:24:0::1;-1:-1:-1::0;;;;;53093:24:0;;;::::1;::::0;;;::::1;::::0;;53010:117::o;33155:336::-;33350:41;4739:10;33383:7;33350:18;:41::i;:::-;33342:100;;;;-1:-1:-1;;;33342:100:0;;;;;;;:::i;:::-;33455:28;33465:4;33471:2;33475:7;33455:9;:28::i;56525:319::-;56687:41;;;;;;;;;56718:10;56687:41;-1:-1:-1;;;;;56687:41:0;;;;;-1:-1:-1;;;56687:41:0;;;;;;;;;;;;;-1:-1:-1;;56829:5:0;;56801:24;;:5;:24;:::i;:::-;56800:34;;;;:::i;:::-;56784:50;;56674:170;56525:319;;;;;:::o;46489:256::-;46586:7;46622:23;46639:5;46622:16;:23::i;:::-;46614:5;:31;46606:87;;;;-1:-1:-1;;;46606:87:0;;10099:2:1;46606:87:0;;;10081:21:1;10138:2;10118:18;;;10111:30;10177:34;10157:18;;;10150:62;-1:-1:-1;;;10228:18:1;;;10221:41;10279:19;;46606:87:0;9897:407:1;46606:87:0;-1:-1:-1;;;;;;46711:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;46489:256::o;57216:214::-;8661:13;:11;:13::i;:::-;57279:7:::1;57273:21;;;;;:::i;:::-;:26:::0;::::1;::::0;-1:-1:-1;57265:58:0::1;;;::::0;-1:-1:-1;;;57265:58:0;;10930:2:1;57265:58:0::1;::::0;::::1;10912:21:1::0;10969:2;10949:18;;;10942:30;-1:-1:-1;;;10988:18:1;;;10981:49;11047:18;;57265:58:0::1;10728:343:1::0;57265:58:0::1;57344:10;::::0;-1:-1:-1;;;;;57344:10:0::1;57336:61;;;::::0;-1:-1:-1;;;57336:61:0;;15204:2:1;57336:61:0::1;::::0;::::1;15186:21:1::0;15243:2;15223:18;;;15216:30;15282:26;15262:18;;;15255:54;15326:18;;57336:61:0::1;15002:348:1::0;57336:61:0::1;57410:10;:8;:10::i;:::-;57216:214::o:0;53241:253::-;6157:19;:17;:19::i;:::-;8661:13:::1;:11;:13::i;:::-;53315:15:::2;53333:25;:15;970:14:::0;;878:114;53333:25:::2;53315:43;;53371:27;:15;1089:19:::0;;1107:1;1089:19;;;1000:127;53371:27:::2;53411:22;53421:2;53425:7;53411:9;:22::i;:::-;53446:38;53459:7;53468:15;53475:7;53468:6;:15::i;:::-;53446:12;:38::i;33562:185::-:0;33700:39;33717:4;33723:2;33727:7;33700:39;;;;;;;;;;;;:16;:39::i;57013:114::-;8661:13;:11;:13::i;:::-;57075:10:::1;::::0;:42:::1;::::0;-1:-1:-1;;;;;57075:10:0;;::::1;::::0;57095:21:::1;57075:42:::0;::::1;;;::::0;:10:::1;:42:::0;:10;:42;57095:21;57075:10;:42;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;57013:114::o:0;47011:233::-;47086:7;47122:30;46909:10;:17;;46821:113;47122:30;47114:5;:38;47106:95;;;;-1:-1:-1;;;47106:95:0;;17816:2:1;47106:95:0;;;17798:21:1;17855:2;17835:18;;;17828:30;17894:34;17874:18;;;17867:62;-1:-1:-1;;;17945:18:1;;;17938:42;17997:19;;47106:95:0;17614:408:1;47106:95:0;47219:10;47230:5;47219:17;;;;;;;;:::i;:::-;;;;;;;;;47212:24;;47011:233;;;:::o;54444:214::-;8661:13;:11;:13::i;:::-;54558:11;54541:108:::1;54576:9;54571:1;:14;54541:108;;54609:26;54622:1;54625:9;54632:1;54625:6;:9::i;54609:26::-;54587:3:::0;::::1;::::0;::::1;:::i;:::-;;;;54541:108;;54163:113:::0;6416:16;:14;:16::i;:::-;8661:13:::1;:11;:13::i;:::-;54248:18:::0;;::::2;::::0;:7:::2;::::0;:18:::2;::::0;::::2;::::0;::::2;:::i;30653:222::-:0;30725:7;30761:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30761:16:0;30796:19;30788:56;;;;-1:-1:-1;;;30788:56:0;;16710:2:1;30788:56:0;;;16692:21:1;16749:2;16729:18;;;16722:30;-1:-1:-1;;;16768:18:1;;;16761:54;16832:18;;30788:56:0;16508:348:1;52895:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30384:207::-;30456:7;-1:-1:-1;;;;;30484:19:0;;30476:73;;;;-1:-1:-1;;;30476:73:0;;14379:2:1;30476:73:0;;;14361:21:1;14418:2;14398:18;;;14391:30;14457:34;14437:18;;;14430:62;-1:-1:-1;;;14508:18:1;;;14501:39;14557:19;;30476:73:0;14177:405:1;30476:73:0;-1:-1:-1;;;;;;30567:16:0;;;;;:9;:16;;;;;;;30384:207::o;9423:103::-;8661:13;:11;:13::i;:::-;9488:30:::1;9515:1;9488:18;:30::i;57139:65::-:0;8661:13;:11;:13::i;:::-;57186:8:::1;:6;:8::i;53139:90::-:0;8661:13;:11;:13::i;:::-;53205:5:::1;:14:::0;53139:90::o;31111:104::-;31167:13;31200:7;31193:14;;;;;:::i;53506:645::-;6157:19;:17;:19::i;:::-;53575:14:::1;53592:13;46909:10:::0;:17;;46821:113;53592:13:::1;53575:30;;53650:1;53626:21;53636:10;53626:9;:21::i;:::-;:25;;53618:83;;;::::0;-1:-1:-1;;;53618:83:0;;12448:2:1;53618:83:0::1;::::0;::::1;12430:21:1::0;12487:2;12467:18;;;12460:30;12526:34;12506:18;;;12499:62;-1:-1:-1;;;12577:18:1;;;12570:43;12630:19;;53618:83:0::1;12246:409:1::0;53618:83:0::1;53730:13;;53723:3;:20;;53714:78;;;::::0;-1:-1:-1;;;53714:78:0;;13621:2:1;53714:78:0::1;::::0;::::1;13603:21:1::0;13660:2;13640:18;;;13633:30;13699:34;13679:18;;;13672:62;-1:-1:-1;;;13750:18:1;;;13743:42;13802:19;;53714:78:0::1;13419:408:1::0;53714:78:0::1;53829:3;53814:12;53823:3:::0;53814:6;:12:::1;:::i;:::-;:18;53805:54;;;::::0;-1:-1:-1;;;53805:54:0;;17465:2:1;53805:54:0::1;::::0;::::1;17447:21:1::0;17504:2;17484:18;;;17477:30;-1:-1:-1;;;17523:18:1;;;17516:52;17585:18;;53805:54:0::1;17263:346:1::0;53805:54:0::1;53902:3;53894:5;;:11;;;;:::i;:::-;53881:9;:24;;53872:71;;;::::0;-1:-1:-1;;;53872:71:0;;18229:2:1;53872:71:0::1;::::0;::::1;18211:21:1::0;;;18248:18;;;18241:30;18307:34;18287:18;;;18280:62;18359:18;;53872:71:0::1;18027:356:1::0;53872:71:0::1;53960:9;53956:186;53975:3;53971:1;:7;53956:186;;;53997:15;54015:25;:15;970:14:::0;;878:114;54015:25:::1;53997:43;;54053:27;:15;1089:19:::0;;1107:1;1089:19;;;1000:127;54053:27:::1;54101:31;54112:10;54124:7;54101:9;:31::i;:::-;-1:-1:-1::0;53980:3:0;::::1;::::0;::::1;:::i;:::-;;;;53956:186;;32698:155:::0;32793:52;4739:10;32826:8;32836;32793:18;:52::i;33818:323::-;33992:41;4739:10;34025:7;33992:18;:41::i;:::-;33984:100;;;;-1:-1:-1;;;33984:100:0;;;;;;;:::i;:::-;34095:38;34109:4;34115:2;34119:7;34128:4;34095:13;:38::i;:::-;33818:323;;;;:::o;52925:37::-;;;;;;;:::i;55396:210::-;55531:13;55573:23;55588:7;55573:14;:23::i;9681:201::-;8661:13;:11;:13::i;:::-;-1:-1:-1;;;;;9770:22:0;::::1;9762:73;;;::::0;-1:-1:-1;;;9762:73:0;;11278:2:1;9762:73:0::1;::::0;::::1;11260:21:1::0;11317:2;11297:18;;;11290:30;11356:34;11336:18;;;11329:62;-1:-1:-1;;;11407:18:1;;;11400:36;11453:19;;9762:73:0::1;11076:402:1::0;9762:73:0::1;9846:28;9865:8;9846:18;:28::i;46181:224::-:0;46283:4;-1:-1:-1;;;;;;46307:50:0;;-1:-1:-1;;;46307:50:0;;:90;;;46361:36;46385:11;46361:23;:36::i;40430:135::-;35713:4;35737:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35737:16:0;40504:53;;;;-1:-1:-1;;;40504:53:0;;16710:2:1;40504:53:0;;;16692:21:1;16749:2;16729:18;;;16722:30;-1:-1:-1;;;16768:18:1;;;16761:54;16832:18;;40504:53:0;16508:348:1;39709:174:0;39784:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39784:29:0;-1:-1:-1;;;;;39784:29:0;;;;;;;;:24;;39838:23;39784:24;39838:14;:23::i;:::-;-1:-1:-1;;;;;39829:46:0;;;;;;;;;;;39709:174;;:::o;8940:132::-;8848:6;;-1:-1:-1;;;;;8848:6:0;4739:10;9004:23;8996:68;;;;-1:-1:-1;;;8996:68:0;;16349:2:1;8996:68:0;;;16331:21:1;;;16368:18;;;16361:30;16427:34;16407:18;;;16400:62;16479:18;;8996:68:0;16147:356:1;56308:205:0;56404:5;56395;:14;;56387:53;;;;-1:-1:-1;;;56387:53:0;;9744:2:1;56387:53:0;;;9726:21:1;9783:2;9763:18;;;9756:30;9822:28;9802:18;;;9795:56;9868:18;;56387:53:0;9542:350:1;56387:53:0;56466:37;;;;;;;;;-1:-1:-1;;;;;56466:37:0;;;;;;;;;;;;;;;;;56453:10;:50;;-1:-1:-1;;;56453:50:0;;;-1:-1:-1;;;;;;56453:50:0;;;;;;;;;;;;56308:205::o;6896:108::-;6623:7;;-1:-1:-1;;;6623:7:0;;;;6955:41;;;;-1:-1:-1;;;6955:41:0;;9395:2:1;6955:41:0;;;9377:21:1;9434:2;9414:18;;;9407:30;-1:-1:-1;;;9453:18:1;;;9446:50;9513:18;;6955:41:0;9193:344:1;44509:217:0;35713:4;35737:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35737:16:0;44601:75;;;;-1:-1:-1;;;44601:75:0;;14789:2:1;44601:75:0;;;14771:21:1;14828:2;14808:18;;;14801:30;14867:34;14847:18;;;14840:62;-1:-1:-1;;;14918:18:1;;;14911:44;14972:19;;44601:75:0;14587:410:1;44601:75:0;44687:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;35942:264::-;36035:4;36052:13;36068:23;36083:7;36068:14;:23::i;:::-;36052:39;;36121:5;-1:-1:-1;;;;;36110:16:0;:7;-1:-1:-1;;;;;36110:16:0;;:52;;;-1:-1:-1;;;;;;33045:25:0;;;33021:4;33045:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36130:32;36110:87;;;;36190:7;-1:-1:-1;;;;;36166:31:0;:20;36178:7;36166:11;:20::i;:::-;-1:-1:-1;;;;;36166:31:0;;36110:87;36102:96;35942:264;-1:-1:-1;;;;35942:264:0:o;38965:625::-;39124:4;-1:-1:-1;;;;;39097:31:0;:23;39112:7;39097:14;:23::i;:::-;-1:-1:-1;;;;;39097:31:0;;39089:81;;;;-1:-1:-1;;;39089:81:0;;11685:2:1;39089:81:0;;;11667:21:1;11724:2;11704:18;;;11697:30;11763:34;11743:18;;;11736:62;-1:-1:-1;;;11814:18:1;;;11807:35;11859:19;;39089:81:0;11483:401:1;39089:81:0;-1:-1:-1;;;;;39189:16:0;;39181:65;;;;-1:-1:-1;;;39181:65:0;;12862:2:1;39181:65:0;;;12844:21:1;12901:2;12881:18;;;12874:30;12940:34;12920:18;;;12913:62;-1:-1:-1;;;12991:18:1;;;12984:34;13035:19;;39181:65:0;12660:400:1;39181:65:0;39259:39;39280:4;39286:2;39290:7;39259:20;:39::i;:::-;39363:29;39380:1;39384:7;39363:8;:29::i;:::-;-1:-1:-1;;;;;39405:15:0;;;;;;:9;:15;;;;;:20;;39424:1;;39405:15;:20;;39424:1;;39405:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39436:13:0;;;;;;:9;:13;;;;;:18;;39453:1;;39436:13;:18;;39453:1;;39436:18;:::i;:::-;;;;-1:-1:-1;;39465:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39465:21:0;-1:-1:-1;;;;;39465:21:0;;;;;;;;;39504:27;;39465:16;;39504:27;;;;;;;32042:347;31972:417;;:::o;7407:120::-;6416:16;:14;:16::i;:::-;7466:7:::1;:15:::0;;-1:-1:-1;;;;7466:15:0::1;::::0;;7497:22:::1;4739:10:::0;7506:12:::1;7497:22;::::0;-1:-1:-1;;;;;7961:32:1;;;7943:51;;7931:2;7916:18;7497:22:0::1;;;;;;;7407:120::o:0;6711:108::-;6623:7;;-1:-1:-1;;;6623:7:0;;;;6781:9;6773:38;;;;-1:-1:-1;;;6773:38:0;;14034:2:1;6773:38:0;;;14016:21:1;14073:2;14053:18;;;14046:30;-1:-1:-1;;;14092:18:1;;;14085:46;14148:18;;6773:38:0;13832:340:1;36548:110:0;36624:26;36634:2;36638:7;36624:26;;;;;;;;;;;;:9;:26::i;54670:258::-;54725:13;54816:7;54840:25;54857:7;54840:16;:25::i;:::-;54783:122;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54753:165;;54670:258;;;:::o;10042:191::-;10135:6;;;-1:-1:-1;;;;;10152:17:0;;;-1:-1:-1;;;;;;10152:17:0;;;;;;;10185:40;;10135:6;;;10152:17;10135:6;;10185:40;;10116:16;;10185:40;10105:128;10042:191;:::o;7148:118::-;6157:19;:17;:19::i;:::-;7208:7:::1;:14:::0;;-1:-1:-1;;;;7208:14:0::1;-1:-1:-1::0;;;7208:14:0::1;::::0;;7238:20:::1;7245:12;4739:10:::0;;4659:98;40026:315;40181:8;-1:-1:-1;;;;;40172:17:0;:5;-1:-1:-1;;;;;40172:17:0;;;40164:55;;;;-1:-1:-1;;;40164:55:0;;13267:2:1;40164:55:0;;;13249:21:1;13306:2;13286:18;;;13279:30;13345:27;13325:18;;;13318:55;13390:18;;40164:55:0;13065:349:1;40164:55:0;-1:-1:-1;;;;;40230:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;40230:46:0;;;;;;;;;;40292:41;;8917::1;;;40292::0;;8890:18:1;40292:41:0;;;;;;;40026:315;;;:::o;35022:313::-;35178:28;35188:4;35194:2;35198:7;35178:9;:28::i;:::-;35225:47;35248:4;35254:2;35258:7;35267:4;35225:22;:47::i;:::-;35217:110;;;;-1:-1:-1;;;35217:110:0;;;;;;;:::i;43729:624::-;43802:13;43828:23;43843:7;43828:14;:23::i;:::-;43864;43890:19;;;:10;:19;;;;;43864:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43920:18;43941:10;31893:9;;;;;;;;;-1:-1:-1;31893:9:0;;;31816:94;43941:10;43920:31;;44033:4;44027:18;44049:1;44027:23;44023:72;;;-1:-1:-1;44074:9:0;43729:624;-1:-1:-1;;43729:624:0:o;44023:72::-;44199:23;;:27;44195:108;;44274:4;44280:9;44257:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44243:48;;;;43729:624;;;:::o;44195:108::-;44322:23;44337:7;44322:14;:23::i;30015:305::-;30117:4;-1:-1:-1;;;;;;30154:40:0;;-1:-1:-1;;;30154:40:0;;:105;;-1:-1:-1;;;;;;;30211:48:0;;-1:-1:-1;;;30211:48:0;30154:105;:158;;;-1:-1:-1;;;;;;;;;;21762:40:0;;;30276:36;21653:157;55014:239;6157:19;:17;:19::i;:::-;55198:45:::1;55225:4;55231:2;55235:7;55198:26;:45::i;36885:319::-:0;37014:18;37020:2;37024:7;37014:5;:18::i;:::-;37065:53;37096:1;37100:2;37104:7;37113:4;37065:22;:53::i;:::-;37043:153;;;;-1:-1:-1;;;37043:153:0;;;;;;;:::i;1907:723::-;1963:13;2184:10;2180:53;;-1:-1:-1;;2211:10:0;;;;;;;;;;;;-1:-1:-1;;;2211:10:0;;;;;1907:723::o;2180:53::-;2258:5;2243:12;2299:78;2306:9;;2299:78;;2332:8;;;;:::i;:::-;;-1:-1:-1;2355:10:0;;-1:-1:-1;2363:2:0;2355:10;;:::i;:::-;;;2299:78;;;2387:19;2419:6;2409:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2409:17:0;;2387:39;;2437:154;2444:10;;2437:154;;2471:11;2481:1;2471:11;;:::i;:::-;;-1:-1:-1;2540:10:0;2548:2;2540:5;:10;:::i;:::-;2527:24;;:2;:24;:::i;:::-;2514:39;;2497:6;2504;2497:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2497:56:0;;;;;;;;-1:-1:-1;2568:11:0;2577:2;2568:11;;:::i;:::-;;;2437:154;;41129:853;41283:4;-1:-1:-1;;;;;41304:13:0;;11774:19;:23;41300:675;;41340:71;;-1:-1:-1;;;41340:71:0;;-1:-1:-1;;;;;41340:36:0;;;;;:71;;4739:10;;41391:4;;41397:7;;41406:4;;41340:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41340:71:0;;;;;;;;-1:-1:-1;;41340:71:0;;;;;;;;;;;;:::i;:::-;;;41336:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41581:13:0;;41577:328;;41624:60;;-1:-1:-1;;;41624:60:0;;;;;;;:::i;41577:328::-;41855:6;41849:13;41840:6;41836:2;41832:15;41825:38;41336:584;-1:-1:-1;;;;;;41462:51:0;-1:-1:-1;;;41462:51:0;;-1:-1:-1;41455:58:0;;41300:675;-1:-1:-1;41959:4:0;41129:853;;;;;;:::o;31286:281::-;31359:13;31385:23;31400:7;31385:14;:23::i;:::-;31421:21;31445:10;31893:9;;;;;;;;;-1:-1:-1;31893:9:0;;;31816:94;31445:10;31421:34;;31497:1;31479:7;31473:21;:25;:86;;;;;;;;;;;;;;;;;31525:7;31534:18;:7;:16;:18::i;:::-;31508:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31473:86;31466:93;31286:281;-1:-1:-1;;;31286:281:0:o;47857:589::-;-1:-1:-1;;;;;48063:18:0;;48059:187;;48098:40;48130:7;49273:10;:17;;49246:24;;;;:15;:24;;;;;:44;;;49301:24;;;;;;;;;;;;49169:164;48098:40;48059:187;;;48168:2;-1:-1:-1;;;;;48160:10:0;:4;-1:-1:-1;;;;;48160:10:0;;48156:90;;48187:47;48220:4;48226:7;48187:32;:47::i;:::-;-1:-1:-1;;;;;48260:16:0;;48256:183;;48293:45;48330:7;48293:36;:45::i;48256:183::-;48366:4;-1:-1:-1;;;;;48360:10:0;:2;-1:-1:-1;;;;;48360:10:0;;48356:83;;48387:40;48415:2;48419:7;48387:27;:40::i;37540:439::-;-1:-1:-1;;;;;37620:16:0;;37612:61;;;;-1:-1:-1;;;37612:61:0;;15988:2:1;37612:61:0;;;15970:21:1;;;16007:18;;;16000:30;16066:34;16046:18;;;16039:62;16118:18;;37612:61:0;15786:356:1;37612:61:0;35713:4;35737:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35737:16:0;:30;37684:58;;;;-1:-1:-1;;;37684:58:0;;12091:2:1;37684:58:0;;;12073:21:1;12130:2;12110:18;;;12103:30;12169;12149:18;;;12142:58;12217:18;;37684:58:0;11889:352:1;37684:58:0;37755:45;37784:1;37788:2;37792:7;37755:20;:45::i;:::-;-1:-1:-1;;;;;37813:13:0;;;;;;:9;:13;;;;;:18;;37830:1;;37813:13;:18;;37830:1;;37813:18;:::i;:::-;;;;-1:-1:-1;;37842:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37842:21:0;-1:-1:-1;;;;;37842:21:0;;;;;;;;37881:33;;37842:16;;;37881:33;;37842:16;;37881:33;55964:165;;:::o;49960:988::-;50226:22;50276:1;50251:22;50268:4;50251:16;:22::i;:::-;:26;;;;:::i;:::-;50288:18;50309:26;;;:17;:26;;;;;;50226:51;;-1:-1:-1;50442:28:0;;;50438:328;;-1:-1:-1;;;;;50509:18:0;;50487:19;50509:18;;;:12;:18;;;;;;;;:34;;;;;;;;;50560:30;;;;;;:44;;;50677:30;;:17;:30;;;;;:43;;;50438:328;-1:-1:-1;50862:26:0;;;;:17;:26;;;;;;;;50855:33;;;-1:-1:-1;;;;;50906:18:0;;;;;:12;:18;;;;;:34;;;;;;;50899:41;49960:988::o;51243:1079::-;51521:10;:17;51496:22;;51521:21;;51541:1;;51521:21;:::i;:::-;51553:18;51574:24;;;:15;:24;;;;;;51947:10;:26;;51496:46;;-1:-1:-1;51574:24:0;;51496:46;;51947:26;;;;;;:::i;:::-;;;;;;;;;51925:48;;52011:11;51986:10;51997;51986:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;52091:28;;;:15;:28;;;;;;;:41;;;52263:24;;;;;52256:31;52298:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;51314:1008;;;51243:1079;:::o;48747:221::-;48832:14;48849:20;48866:2;48849:16;:20::i;:::-;-1:-1:-1;;;;;48880:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;48925:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;48747:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:221::-;693:5;746:3;739:4;731:6;727:17;723:27;713:55;;764:1;761;754:12;713:55;786:79;861:3;852:6;839:20;832:4;824:6;820:17;786:79;:::i;876:247::-;935:6;988:2;976:9;967:7;963:23;959:32;956:52;;;1004:1;1001;994:12;956:52;1043:9;1030:23;1062:31;1087:5;1062:31;:::i;1388:388::-;1456:6;1464;1517:2;1505:9;1496:7;1492:23;1488:32;1485:52;;;1533:1;1530;1523:12;1485:52;1572:9;1559:23;1591:31;1616:5;1591:31;:::i;:::-;1641:5;-1:-1:-1;1698:2:1;1683:18;;1670:32;1711:33;1670:32;1711:33;:::i;:::-;1763:7;1753:17;;;1388:388;;;;;:::o;1781:456::-;1858:6;1866;1874;1927:2;1915:9;1906:7;1902:23;1898:32;1895:52;;;1943:1;1940;1933:12;1895:52;1982:9;1969:23;2001:31;2026:5;2001:31;:::i;:::-;2051:5;-1:-1:-1;2108:2:1;2093:18;;2080:32;2121:33;2080:32;2121:33;:::i;:::-;1781:456;;2173:7;;-1:-1:-1;;;2227:2:1;2212:18;;;;2199:32;;1781:456::o;2242:794::-;2337:6;2345;2353;2361;2414:3;2402:9;2393:7;2389:23;2385:33;2382:53;;;2431:1;2428;2421:12;2382:53;2470:9;2457:23;2489:31;2514:5;2489:31;:::i;:::-;2539:5;-1:-1:-1;2596:2:1;2581:18;;2568:32;2609:33;2568:32;2609:33;:::i;:::-;2661:7;-1:-1:-1;2715:2:1;2700:18;;2687:32;;-1:-1:-1;2770:2:1;2755:18;;2742:32;2797:18;2786:30;;2783:50;;;2829:1;2826;2819:12;2783:50;2852:22;;2905:4;2897:13;;2893:27;-1:-1:-1;2883:55:1;;2934:1;2931;2924:12;2883:55;2957:73;3022:7;3017:2;3004:16;2999:2;2995;2991:11;2957:73;:::i;:::-;2947:83;;;2242:794;;;;;;;:::o;3041:416::-;3106:6;3114;3167:2;3155:9;3146:7;3142:23;3138:32;3135:52;;;3183:1;3180;3173:12;3135:52;3222:9;3209:23;3241:31;3266:5;3241:31;:::i;:::-;3291:5;-1:-1:-1;3348:2:1;3333:18;;3320:32;3390:15;;3383:23;3371:36;;3361:64;;3421:1;3418;3411:12;3462:315;3530:6;3538;3591:2;3579:9;3570:7;3566:23;3562:32;3559:52;;;3607:1;3604;3597:12;3559:52;3646:9;3633:23;3665:31;3690:5;3665:31;:::i;:::-;3715:5;3767:2;3752:18;;;;3739:32;;-1:-1:-1;;;3462:315:1:o;3782:245::-;3840:6;3893:2;3881:9;3872:7;3868:23;3864:32;3861:52;;;3909:1;3906;3899:12;3861:52;3948:9;3935:23;3967:30;3991:5;3967:30;:::i;4032:249::-;4101:6;4154:2;4142:9;4133:7;4129:23;4125:32;4122:52;;;4170:1;4167;4160:12;4122:52;4202:9;4196:16;4221:30;4245:5;4221:30;:::i;4286:322::-;4355:6;4408:2;4396:9;4387:7;4383:23;4379:32;4376:52;;;4424:1;4421;4414:12;4376:52;4464:9;4451:23;4497:18;4489:6;4486:30;4483:50;;;4529:1;4526;4519:12;4483:50;4552;4594:7;4585:6;4574:9;4570:22;4552:50;:::i;4613:180::-;4672:6;4725:2;4713:9;4704:7;4700:23;4696:32;4693:52;;;4741:1;4738;4731:12;4693:52;-1:-1:-1;4764:23:1;;4613:180;-1:-1:-1;4613:180:1:o;4798:390::-;4876:6;4884;4937:2;4925:9;4916:7;4912:23;4908:32;4905:52;;;4953:1;4950;4943:12;4905:52;4989:9;4976:23;4966:33;;5050:2;5039:9;5035:18;5022:32;5077:18;5069:6;5066:30;5063:50;;;5109:1;5106;5099:12;5063:50;5132;5174:7;5165:6;5154:9;5150:22;5132:50;:::i;5193:248::-;5261:6;5269;5322:2;5310:9;5301:7;5297:23;5293:32;5290:52;;;5338:1;5335;5328:12;5290:52;-1:-1:-1;;5361:23:1;;;5431:2;5416:18;;;5403:32;;-1:-1:-1;5193:248:1:o;5446:257::-;5487:3;5525:5;5519:12;5552:6;5547:3;5540:19;5568:63;5624:6;5617:4;5612:3;5608:14;5601:4;5594:5;5590:16;5568:63;:::i;:::-;5685:2;5664:15;-1:-1:-1;;5660:29:1;5651:39;;;;5692:4;5647:50;;5446:257;-1:-1:-1;;5446:257:1:o;5708:185::-;5750:3;5788:5;5782:12;5803:52;5848:6;5843:3;5836:4;5829:5;5825:16;5803:52;:::i;:::-;5871:16;;;;;5708:185;-1:-1:-1;;5708:185:1:o;6016:470::-;6195:3;6233:6;6227:13;6249:53;6295:6;6290:3;6283:4;6275:6;6271:17;6249:53;:::i;:::-;6365:13;;6324:16;;;;6387:57;6365:13;6324:16;6421:4;6409:17;;6387:57;:::i;:::-;6460:20;;6016:470;-1:-1:-1;;;;6016:470:1:o;6491:1301::-;6768:3;6797:1;6830:6;6824:13;6860:3;6882:1;6910:9;6906:2;6902:18;6892:28;;6970:2;6959:9;6955:18;6992;6982:61;;7036:4;7028:6;7024:17;7014:27;;6982:61;7062:2;7110;7102:6;7099:14;7079:18;7076:38;7073:165;;;-1:-1:-1;;;7137:33:1;;7193:4;7190:1;7183:15;7223:4;7144:3;7211:17;7073:165;7254:18;7281:104;;;;7399:1;7394:320;;;;7247:467;;7281:104;-1:-1:-1;;7314:24:1;;7302:37;;7359:16;;;;-1:-1:-1;7281:104:1;;7394:320;19058:1;19051:14;;;19095:4;19082:18;;7489:1;7503:165;7517:6;7514:1;7511:13;7503:165;;;7595:14;;7582:11;;;7575:35;7638:16;;;;7532:10;;7503:165;;;7507:3;;7697:6;7692:3;7688:16;7681:23;;7247:467;;;;;;;7730:56;7755:30;7781:3;7773:6;7755:30;:::i;:::-;-1:-1:-1;;;5958:20:1;;6003:1;5994:11;;5898:113;7730:56;7723:63;6491:1301;-1:-1:-1;;;;;6491:1301:1:o;8005:488::-;-1:-1:-1;;;;;8274:15:1;;;8256:34;;8326:15;;8321:2;8306:18;;8299:43;8373:2;8358:18;;8351:34;;;8421:3;8416:2;8401:18;;8394:31;;;8199:4;;8442:45;;8467:19;;8459:6;8442:45;:::i;:::-;8434:53;8005:488;-1:-1:-1;;;;;;8005:488:1:o;8969:219::-;9118:2;9107:9;9100:21;9081:4;9138:44;9178:2;9167:9;9163:18;9155:6;9138:44;:::i;10309:414::-;10511:2;10493:21;;;10550:2;10530:18;;;10523:30;10589:34;10584:2;10569:18;;10562:62;-1:-1:-1;;;10655:2:1;10640:18;;10633:48;10713:3;10698:19;;10309:414::o;18388:410::-;18590:2;18572:21;;;18629:2;18609:18;;;18602:30;18668:34;18663:2;18648:18;;18641:62;-1:-1:-1;;;18734:2:1;18719:18;;18712:44;18788:3;18773:19;;18388:410::o;19111:128::-;19151:3;19182:1;19178:6;19175:1;19172:13;19169:39;;;19188:18;;:::i;:::-;-1:-1:-1;19224:9:1;;19111:128::o;19244:120::-;19284:1;19310;19300:35;;19315:18;;:::i;:::-;-1:-1:-1;19349:9:1;;19244:120::o;19369:168::-;19409:7;19475:1;19471;19467:6;19463:14;19460:1;19457:21;19452:1;19445:9;19438:17;19434:45;19431:71;;;19482:18;;:::i;:::-;-1:-1:-1;19522:9:1;;19369:168::o;19542:125::-;19582:4;19610:1;19607;19604:8;19601:34;;;19615:18;;:::i;:::-;-1:-1:-1;19652:9:1;;19542:125::o;19672:258::-;19744:1;19754:113;19768:6;19765:1;19762:13;19754:113;;;19844:11;;;19838:18;19825:11;;;19818:39;19790:2;19783:10;19754:113;;;19885:6;19882:1;19879:13;19876:48;;;-1:-1:-1;;19920:1:1;19902:16;;19895:27;19672:258::o;19935:380::-;20014:1;20010:12;;;;20057;;;20078:61;;20132:4;20124:6;20120:17;20110:27;;20078:61;20185:2;20177:6;20174:14;20154:18;20151:38;20148:161;;;20231:10;20226:3;20222:20;20219:1;20212:31;20266:4;20263:1;20256:15;20294:4;20291:1;20284:15;20148:161;;19935:380;;;:::o;20320:135::-;20359:3;-1:-1:-1;;20380:17:1;;20377:43;;;20400:18;;:::i;:::-;-1:-1:-1;20447:1:1;20436:13;;20320:135::o;20460:112::-;20492:1;20518;20508:35;;20523:18;;:::i;:::-;-1:-1:-1;20557:9:1;;20460:112::o;20577:127::-;20638:10;20633:3;20629:20;20626:1;20619:31;20669:4;20666:1;20659:15;20693:4;20690:1;20683:15;20709:127;20770:10;20765:3;20761:20;20758:1;20751:31;20801:4;20798:1;20791:15;20825:4;20822:1;20815:15;20841:127;20902:10;20897:3;20893:20;20890:1;20883:31;20933:4;20930:1;20923:15;20957:4;20954:1;20947:15;20973:127;21034:10;21029:3;21025:20;21022:1;21015:31;21065:4;21062:1;21055:15;21089:4;21086:1;21079:15;21105:127;21166:10;21161:3;21157:20;21154:1;21147:31;21197:4;21194:1;21187:15;21221:4;21218:1;21211:15;21237:131;-1:-1:-1;;;;;21312:31:1;;21302:42;;21292:70;;21358:1;21355;21348:12;21373:131;-1:-1:-1;;;;;;21447:32:1;;21437:43;;21427:71;;21494:1;21491;21484:12

Swarm Source

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