ETH Price: $3,502.16 (+3.89%)
Gas: 4 Gwei

Token

baby monkey kindergarten (BMG)
 

Overview

Max Total Supply

1,687 BMG

Holders

322

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 BMG
0x612093ac1a182533b0998c8636d6405b61693531
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:
babymonkeykindergarten

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-23
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.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: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _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 a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: nft.sol

// Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721

//contact telegram:baby monkey kindergarten   help 
pragma solidity ^0.8.0;




contract babymonkeykindergarten is ERC721Enumerable, Ownable {
    using Strings for uint256;

    bool public _isSaleActive = false;
    bool public _revealed = false;

    // Constants
    uint256 public constant MAX_SUPPLY = 2048;
    uint256 public mintPrice = 0.002 ether;
    uint256 public maxBalance = 20;
    uint256 public maxMint = 20;

    string baseURI;
    string public notRevealedUri;
    string public baseExtension = ".json";

    mapping(uint256 => string) private _tokenURIs;

    constructor(string memory initBaseURI, string memory initNotRevealedUri)
        ERC721("baby monkey kindergarten", "BMG")
    {
        setBaseURI(initBaseURI);
        setNotRevealedURI(initNotRevealedUri);
    }

    function mintNft(uint256 tokenQuantity) public payable {
        require(
            totalSupply() + tokenQuantity <= MAX_SUPPLY,
            "Sale would exceed max supply"
        );
        require(_isSaleActive, "Sale must be active to mint nft");
        require(
            tokenQuantity * mintPrice <= msg.value,
            "Not enough ether to mint the nft contact tg Suzuki Story"
        );
        require(
            balanceOf(msg.sender) + tokenQuantity <= maxBalance,
            "Sale would exceed max balance"
        );
        require(tokenQuantity <= maxMint, "Can only mint 20 token at a time");

       for (uint256 i = 0; i < tokenQuantity; i++) {
            uint256 mintIndex = totalSupply();
            if (totalSupply() < MAX_SUPPLY) {
                _safeMint(msg.sender, mintIndex);
            }
        }
    }


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

        if (_revealed == false) {
            return notRevealedUri;
        }

        string memory _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));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return
            string(abi.encodePacked(base, tokenId.toString(), baseExtension));
    }

    // internal
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
 
    function flipSaleActive() public onlyOwner {
        _isSaleActive = !_isSaleActive;
    }

    function flipReveal() public onlyOwner {
        _revealed = !_revealed;
    }

    function setMintPrice(uint256 _mintPrice) public onlyOwner {
        mintPrice = _mintPrice;
    }

//unpackjson cid ipfs://Qmf4hXmsoSkYTExCfKG1tNoHrnY17jvZC3kHtWni3fHEVe/
    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }
//boring_jsons cid ipfs://Qmf6JyPfcmdA4JccH34HKenhkXXxWvZ2i3pi6kjyeLeds8/
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

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

    function setMaxBalance(uint256 _maxBalance) public onlyOwner {
        maxBalance = _maxBalance;
    }

    function setMaxMint(uint256 _maxMint) public onlyOwner {
        maxMint = _maxMint;
    }

    function withdraw(address to) public onlyOwner {
        uint256 balance = address(this).balance;
        payable(to).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"},{"internalType":"string","name":"initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleActive","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":[],"name":"maxBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mintNft","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBalance","type":"uint256"}],"name":"setMaxBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60146101000a81548160ff0219169083151502179055506000600a60156101000a81548160ff02191690831515021790555066071afd498d0000600b556014600c556014600d556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250601090805190602001906200009c92919062000408565b50348015620000aa57600080fd5b5060405162004eb638038062004eb68339818101604052810190620000d0919062000536565b6040518060400160405280601881526020017f62616279206d6f6e6b6579206b696e64657267617274656e00000000000000008152506040518060400160405280600381526020017f424d47000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200015492919062000408565b5080600190805190602001906200016d92919062000408565b5050506200019062000184620001ba60201b60201c565b620001c260201b60201c565b620001a1826200028860201b60201c565b620001b2816200033360201b60201c565b5050620007c2565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000298620001ba60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002be620003de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000317576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030e90620005e2565b60405180910390fd5b80600e90805190602001906200032f92919062000408565b5050565b62000343620001ba60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000369620003de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b990620005e2565b60405180910390fd5b80600f9080519060200190620003da92919062000408565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200041690620006aa565b90600052602060002090601f0160209004810192826200043a576000855562000486565b82601f106200045557805160ff191683800117855562000486565b8280016001018555821562000486579182015b828111156200048557825182559160200191906001019062000468565b5b50905062000495919062000499565b5090565b5b80821115620004b45760008160009055506001016200049a565b5090565b6000620004cf620004c9846200062d565b62000604565b905082815260208101848484011115620004ee57620004ed62000779565b5b620004fb84828562000674565b509392505050565b600082601f8301126200051b576200051a62000774565b5b81516200052d848260208601620004b8565b91505092915050565b6000806040838503121562000550576200054f62000783565b5b600083015167ffffffffffffffff8111156200057157620005706200077e565b5b6200057f8582860162000503565b925050602083015167ffffffffffffffff811115620005a357620005a26200077e565b5b620005b18582860162000503565b9150509250929050565b6000620005ca60208362000663565b9150620005d78262000799565b602082019050919050565b60006020820190508181036000830152620005fd81620005bb565b9050919050565b60006200061062000623565b90506200061e8282620006e0565b919050565b6000604051905090565b600067ffffffffffffffff8211156200064b576200064a62000745565b5b620006568262000788565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200069457808201518184015260208101905062000677565b83811115620006a4576000848401525b50505050565b60006002820490506001821680620006c357607f821691505b60208210811415620006da57620006d962000716565b5b50919050565b620006eb8262000788565b810181811067ffffffffffffffff821117156200070d576200070c62000745565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6146e480620007d26000396000f3fe60806040526004361061021a5760003560e01c80636ebeac8511610123578063a22cb465116100ab578063de8b51e11161006f578063de8b51e1146107b2578063e985e9c5146107c9578063f2c4ce1e14610806578063f2fde38b1461082f578063f4a0a528146108585761021a565b8063a22cb465146106cf578063b88d4fde146106f8578063c668286214610721578063c87b56dd1461074c578063da3ef23f146107895761021a565b806373ad468a116100f257806373ad468a146105fa5780637501f741146106255780638da5cb5b1461065057806395d89b411461067b5780639d51d9b7146106a65761021a565b80636ebeac85146105505780637080d6fc1461057b57806370a08231146105a6578063715018a6146105e35761021a565b806332cb6b0c116101a657806351cff8d91161017557806351cff8d91461046d578063547520fe1461049657806355f804b3146104bf5780636352211e146104e85780636817c76c146105255761021a565b806332cb6b0c146103c55780633b84d9c6146103f057806342842e0e146104075780634f6ccce7146104305761021a565b8063095ea7b3116101ed578063095ea7b3146102ef5780630d730acc1461031857806318160ddd1461033457806323b872dd1461035f5780632f745c59146103885761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063081c8c44146102c4575b600080fd5b34801561022b57600080fd5b506102466004803603810190610241919061326b565b610881565b604051610253919061386b565b60405180910390f35b34801561026857600080fd5b506102716108fb565b60405161027e9190613886565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a9919061330e565b61098d565b6040516102bb9190613804565b60405180910390f35b3480156102d057600080fd5b506102d9610a12565b6040516102e69190613886565b60405180910390f35b3480156102fb57600080fd5b506103166004803603810190610311919061322b565b610aa0565b005b610332600480360381019061032d919061330e565b610bb8565b005b34801561034057600080fd5b50610349610d96565b6040516103569190613b88565b60405180910390f35b34801561036b57600080fd5b5061038660048036038101906103819190613115565b610da3565b005b34801561039457600080fd5b506103af60048036038101906103aa919061322b565b610e03565b6040516103bc9190613b88565b60405180910390f35b3480156103d157600080fd5b506103da610ea8565b6040516103e79190613b88565b60405180910390f35b3480156103fc57600080fd5b50610405610eae565b005b34801561041357600080fd5b5061042e60048036038101906104299190613115565b610f56565b005b34801561043c57600080fd5b506104576004803603810190610452919061330e565b610f76565b6040516104649190613b88565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f91906130a8565b610fe7565b005b3480156104a257600080fd5b506104bd60048036038101906104b8919061330e565b6110b3565b005b3480156104cb57600080fd5b506104e660048036038101906104e191906132c5565b611139565b005b3480156104f457600080fd5b5061050f600480360381019061050a919061330e565b6111cf565b60405161051c9190613804565b60405180910390f35b34801561053157600080fd5b5061053a611281565b6040516105479190613b88565b60405180910390f35b34801561055c57600080fd5b50610565611287565b604051610572919061386b565b60405180910390f35b34801561058757600080fd5b5061059061129a565b60405161059d919061386b565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c891906130a8565b6112ad565b6040516105da9190613b88565b60405180910390f35b3480156105ef57600080fd5b506105f8611365565b005b34801561060657600080fd5b5061060f6113ed565b60405161061c9190613b88565b60405180910390f35b34801561063157600080fd5b5061063a6113f3565b6040516106479190613b88565b60405180910390f35b34801561065c57600080fd5b506106656113f9565b6040516106729190613804565b60405180910390f35b34801561068757600080fd5b50610690611423565b60405161069d9190613886565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c8919061330e565b6114b5565b005b3480156106db57600080fd5b506106f660048036038101906106f191906131eb565b61153b565b005b34801561070457600080fd5b5061071f600480360381019061071a9190613168565b611551565b005b34801561072d57600080fd5b506107366115b3565b6040516107439190613886565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e919061330e565b611641565b6040516107809190613886565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab91906132c5565b611865565b005b3480156107be57600080fd5b506107c76118fb565b005b3480156107d557600080fd5b506107f060048036038101906107eb91906130d5565b6119a3565b6040516107fd919061386b565b60405180910390f35b34801561081257600080fd5b5061082d600480360381019061082891906132c5565b611a37565b005b34801561083b57600080fd5b50610856600480360381019061085191906130a8565b611acd565b005b34801561086457600080fd5b5061087f600480360381019061087a919061330e565b611bc5565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f457506108f382611c4b565b5b9050919050565b60606000805461090a90613e4d565b80601f016020809104026020016040519081016040528092919081815260200182805461093690613e4d565b80156109835780601f1061095857610100808354040283529160200191610983565b820191906000526020600020905b81548152906001019060200180831161096657829003601f168201915b5050505050905090565b600061099882611d2d565b6109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce90613a88565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f8054610a1f90613e4d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4b90613e4d565b8015610a985780601f10610a6d57610100808354040283529160200191610a98565b820191906000526020600020905b815481529060010190602001808311610a7b57829003601f168201915b505050505081565b6000610aab826111cf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1390613ae8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3b611d99565b73ffffffffffffffffffffffffffffffffffffffff161480610b6a5750610b6981610b64611d99565b6119a3565b5b610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090613a08565b60405180910390fd5b610bb38383611da1565b505050565b61080081610bc4610d96565b610bce9190613c82565b1115610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0690613948565b60405180910390fd5b600a60149054906101000a900460ff16610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5590613b68565b60405180910390fd5b34600b5482610c6d9190613d09565b1115610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca5906139c8565b60405180910390fd5b600c5481610cbb336112ad565b610cc59190613c82565b1115610d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfd906139e8565b60405180910390fd5b600d54811115610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290613b08565b60405180910390fd5b60005b81811015610d92576000610d60610d96565b9050610800610d6d610d96565b1015610d7e57610d7d3382611e5a565b5b508080610d8a90613eb0565b915050610d4e565b5050565b6000600880549050905090565b610db4610dae611d99565b82611e78565b610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90613b28565b60405180910390fd5b610dfe838383611f56565b505050565b6000610e0e836112ad565b8210610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e46906138a8565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61080081565b610eb6611d99565b73ffffffffffffffffffffffffffffffffffffffff16610ed46113f9565b73ffffffffffffffffffffffffffffffffffffffff1614610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190613aa8565b60405180910390fd5b600a60159054906101000a900460ff1615600a60156101000a81548160ff021916908315150217905550565b610f7183838360405180602001604052806000815250611551565b505050565b6000610f80610d96565b8210610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb890613b48565b60405180910390fd5b60088281548110610fd557610fd4613fe6565b5b90600052602060002001549050919050565b610fef611d99565b73ffffffffffffffffffffffffffffffffffffffff1661100d6113f9565b73ffffffffffffffffffffffffffffffffffffffff1614611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a90613aa8565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110ae573d6000803e3d6000fd5b505050565b6110bb611d99565b73ffffffffffffffffffffffffffffffffffffffff166110d96113f9565b73ffffffffffffffffffffffffffffffffffffffff161461112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690613aa8565b60405180910390fd5b80600d8190555050565b611141611d99565b73ffffffffffffffffffffffffffffffffffffffff1661115f6113f9565b73ffffffffffffffffffffffffffffffffffffffff16146111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90613aa8565b60405180910390fd5b80600e90805190602001906111cb929190612ebc565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90613a48565b60405180910390fd5b80915050919050565b600b5481565b600a60159054906101000a900460ff1681565b600a60149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590613a28565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61136d611d99565b73ffffffffffffffffffffffffffffffffffffffff1661138b6113f9565b73ffffffffffffffffffffffffffffffffffffffff16146113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d890613aa8565b60405180910390fd5b6113eb60006121bd565b565b600c5481565b600d5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461143290613e4d565b80601f016020809104026020016040519081016040528092919081815260200182805461145e90613e4d565b80156114ab5780601f10611480576101008083540402835291602001916114ab565b820191906000526020600020905b81548152906001019060200180831161148e57829003601f168201915b5050505050905090565b6114bd611d99565b73ffffffffffffffffffffffffffffffffffffffff166114db6113f9565b73ffffffffffffffffffffffffffffffffffffffff1614611531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152890613aa8565b60405180910390fd5b80600c8190555050565b61154d611546611d99565b8383612283565b5050565b61156261155c611d99565b83611e78565b6115a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159890613b28565b60405180910390fd5b6115ad848484846123f0565b50505050565b601080546115c090613e4d565b80601f01602080910402602001604051908101604052809291908181526020018280546115ec90613e4d565b80156116395780601f1061160e57610100808354040283529160200191611639565b820191906000526020600020905b81548152906001019060200180831161161c57829003601f168201915b505050505081565b606061164c82611d2d565b61168b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168290613ac8565b60405180910390fd5b60001515600a60159054906101000a900460ff161515141561173957600f80546116b490613e4d565b80601f01602080910402602001604051908101604052809291908181526020018280546116e090613e4d565b801561172d5780601f106117025761010080835404028352916020019161172d565b820191906000526020600020905b81548152906001019060200180831161171057829003601f168201915b50505050509050611860565b600060116000848152602001908152602001600020805461175990613e4d565b80601f016020809104026020016040519081016040528092919081815260200182805461178590613e4d565b80156117d25780601f106117a7576101008083540402835291602001916117d2565b820191906000526020600020905b8154815290600101906020018083116117b557829003601f168201915b5050505050905060006117e361244c565b90506000815114156117f9578192505050611860565b60008251111561182e5780826040516020016118169291906137af565b60405160208183030381529060405292505050611860565b80611838856124de565b601060405160200161184c939291906137d3565b604051602081830303815290604052925050505b919050565b61186d611d99565b73ffffffffffffffffffffffffffffffffffffffff1661188b6113f9565b73ffffffffffffffffffffffffffffffffffffffff16146118e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d890613aa8565b60405180910390fd5b80601090805190602001906118f7929190612ebc565b5050565b611903611d99565b73ffffffffffffffffffffffffffffffffffffffff166119216113f9565b73ffffffffffffffffffffffffffffffffffffffff1614611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e90613aa8565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a3f611d99565b73ffffffffffffffffffffffffffffffffffffffff16611a5d6113f9565b73ffffffffffffffffffffffffffffffffffffffff1614611ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaa90613aa8565b60405180910390fd5b80600f9080519060200190611ac9929190612ebc565b5050565b611ad5611d99565b73ffffffffffffffffffffffffffffffffffffffff16611af36113f9565b73ffffffffffffffffffffffffffffffffffffffff1614611b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4090613aa8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb0906138e8565b60405180910390fd5b611bc2816121bd565b50565b611bcd611d99565b73ffffffffffffffffffffffffffffffffffffffff16611beb6113f9565b73ffffffffffffffffffffffffffffffffffffffff1614611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3890613aa8565b60405180910390fd5b80600b8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d1657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d265750611d258261263f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e14836111cf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611e748282604051806020016040528060008152506126a9565b5050565b6000611e8382611d2d565b611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb9906139a8565b60405180910390fd5b6000611ecd836111cf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f3c57508373ffffffffffffffffffffffffffffffffffffffff16611f248461098d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f4d5750611f4c81856119a3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f76826111cf565b73ffffffffffffffffffffffffffffffffffffffff1614611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390613908565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561203c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203390613968565b60405180910390fd5b612047838383612704565b612052600082611da1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120a29190613d63565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120f99190613c82565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121b8838383612818565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e990613988565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123e3919061386b565b60405180910390a3505050565b6123fb848484611f56565b6124078484848461281d565b612446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243d906138c8565b60405180910390fd5b50505050565b6060600e805461245b90613e4d565b80601f016020809104026020016040519081016040528092919081815260200182805461248790613e4d565b80156124d45780601f106124a9576101008083540402835291602001916124d4565b820191906000526020600020905b8154815290600101906020018083116124b757829003601f168201915b5050505050905090565b60606000821415612526576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061263a565b600082905060005b6000821461255857808061254190613eb0565b915050600a826125519190613cd8565b915061252e565b60008167ffffffffffffffff81111561257457612573614015565b5b6040519080825280601f01601f1916602001820160405280156125a65781602001600182028036833780820191505090505b5090505b60008514612633576001826125bf9190613d63565b9150600a856125ce9190613ef9565b60306125da9190613c82565b60f81b8183815181106125f0576125ef613fe6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561262c9190613cd8565b94506125aa565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126b383836129b4565b6126c0600084848461281d565b6126ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f6906138c8565b60405180910390fd5b505050565b61270f838383612b8e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127525761274d81612b93565b612791565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127905761278f8382612bdc565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127d4576127cf81612d49565b612813565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612812576128118282612e1a565b5b5b505050565b505050565b600061283e8473ffffffffffffffffffffffffffffffffffffffff16612e99565b156129a7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612867611d99565b8786866040518563ffffffff1660e01b8152600401612889949392919061381f565b602060405180830381600087803b1580156128a357600080fd5b505af19250505080156128d457506040513d601f19601f820116820180604052508101906128d19190613298565b60015b612957573d8060008114612904576040519150601f19603f3d011682016040523d82523d6000602084013e612909565b606091505b5060008151141561294f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612946906138c8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129ac565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1b90613a68565b60405180910390fd5b612a2d81611d2d565b15612a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6490613928565b60405180910390fd5b612a7960008383612704565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ac99190613c82565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b8a60008383612818565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612be9846112ad565b612bf39190613d63565b9050600060076000848152602001908152602001600020549050818114612cd8576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d5d9190613d63565b9050600060096000848152602001908152602001600020549050600060088381548110612d8d57612d8c613fe6565b5b906000526020600020015490508060088381548110612daf57612dae613fe6565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612dfe57612dfd613fb7565b5b6001900381819060005260206000200160009055905550505050565b6000612e25836112ad565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612ec890613e4d565b90600052602060002090601f016020900481019282612eea5760008555612f31565b82601f10612f0357805160ff1916838001178555612f31565b82800160010185558215612f31579182015b82811115612f30578251825591602001919060010190612f15565b5b509050612f3e9190612f42565b5090565b5b80821115612f5b576000816000905550600101612f43565b5090565b6000612f72612f6d84613bc8565b613ba3565b905082815260208101848484011115612f8e57612f8d614049565b5b612f99848285613e0b565b509392505050565b6000612fb4612faf84613bf9565b613ba3565b905082815260208101848484011115612fd057612fcf614049565b5b612fdb848285613e0b565b509392505050565b600081359050612ff281614652565b92915050565b60008135905061300781614669565b92915050565b60008135905061301c81614680565b92915050565b60008151905061303181614680565b92915050565b600082601f83011261304c5761304b614044565b5b813561305c848260208601612f5f565b91505092915050565b600082601f83011261307a57613079614044565b5b813561308a848260208601612fa1565b91505092915050565b6000813590506130a281614697565b92915050565b6000602082840312156130be576130bd614053565b5b60006130cc84828501612fe3565b91505092915050565b600080604083850312156130ec576130eb614053565b5b60006130fa85828601612fe3565b925050602061310b85828601612fe3565b9150509250929050565b60008060006060848603121561312e5761312d614053565b5b600061313c86828701612fe3565b935050602061314d86828701612fe3565b925050604061315e86828701613093565b9150509250925092565b6000806000806080858703121561318257613181614053565b5b600061319087828801612fe3565b94505060206131a187828801612fe3565b93505060406131b287828801613093565b925050606085013567ffffffffffffffff8111156131d3576131d261404e565b5b6131df87828801613037565b91505092959194509250565b6000806040838503121561320257613201614053565b5b600061321085828601612fe3565b925050602061322185828601612ff8565b9150509250929050565b6000806040838503121561324257613241614053565b5b600061325085828601612fe3565b925050602061326185828601613093565b9150509250929050565b60006020828403121561328157613280614053565b5b600061328f8482850161300d565b91505092915050565b6000602082840312156132ae576132ad614053565b5b60006132bc84828501613022565b91505092915050565b6000602082840312156132db576132da614053565b5b600082013567ffffffffffffffff8111156132f9576132f861404e565b5b61330584828501613065565b91505092915050565b60006020828403121561332457613323614053565b5b600061333284828501613093565b91505092915050565b61334481613d97565b82525050565b61335381613da9565b82525050565b600061336482613c3f565b61336e8185613c55565b935061337e818560208601613e1a565b61338781614058565b840191505092915050565b600061339d82613c4a565b6133a78185613c66565b93506133b7818560208601613e1a565b6133c081614058565b840191505092915050565b60006133d682613c4a565b6133e08185613c77565b93506133f0818560208601613e1a565b80840191505092915050565b6000815461340981613e4d565b6134138186613c77565b9450600182166000811461342e576001811461343f57613472565b60ff19831686528186019350613472565b61344885613c2a565b60005b8381101561346a5781548189015260018201915060208101905061344b565b838801955050505b50505092915050565b6000613488602b83613c66565b915061349382614069565b604082019050919050565b60006134ab603283613c66565b91506134b6826140b8565b604082019050919050565b60006134ce602683613c66565b91506134d982614107565b604082019050919050565b60006134f1602583613c66565b91506134fc82614156565b604082019050919050565b6000613514601c83613c66565b915061351f826141a5565b602082019050919050565b6000613537601c83613c66565b9150613542826141ce565b602082019050919050565b600061355a602483613c66565b9150613565826141f7565b604082019050919050565b600061357d601983613c66565b915061358882614246565b602082019050919050565b60006135a0602c83613c66565b91506135ab8261426f565b604082019050919050565b60006135c3603883613c66565b91506135ce826142be565b604082019050919050565b60006135e6601d83613c66565b91506135f18261430d565b602082019050919050565b6000613609603883613c66565b915061361482614336565b604082019050919050565b600061362c602a83613c66565b915061363782614385565b604082019050919050565b600061364f602983613c66565b915061365a826143d4565b604082019050919050565b6000613672602083613c66565b915061367d82614423565b602082019050919050565b6000613695602c83613c66565b91506136a08261444c565b604082019050919050565b60006136b8602083613c66565b91506136c38261449b565b602082019050919050565b60006136db602f83613c66565b91506136e6826144c4565b604082019050919050565b60006136fe602183613c66565b915061370982614513565b604082019050919050565b6000613721602083613c66565b915061372c82614562565b602082019050919050565b6000613744603183613c66565b915061374f8261458b565b604082019050919050565b6000613767602c83613c66565b9150613772826145da565b604082019050919050565b600061378a601f83613c66565b915061379582614629565b602082019050919050565b6137a981613e01565b82525050565b60006137bb82856133cb565b91506137c782846133cb565b91508190509392505050565b60006137df82866133cb565b91506137eb82856133cb565b91506137f782846133fc565b9150819050949350505050565b6000602082019050613819600083018461333b565b92915050565b6000608082019050613834600083018761333b565b613841602083018661333b565b61384e60408301856137a0565b81810360608301526138608184613359565b905095945050505050565b6000602082019050613880600083018461334a565b92915050565b600060208201905081810360008301526138a08184613392565b905092915050565b600060208201905081810360008301526138c18161347b565b9050919050565b600060208201905081810360008301526138e18161349e565b9050919050565b60006020820190508181036000830152613901816134c1565b9050919050565b60006020820190508181036000830152613921816134e4565b9050919050565b6000602082019050818103600083015261394181613507565b9050919050565b600060208201905081810360008301526139618161352a565b9050919050565b600060208201905081810360008301526139818161354d565b9050919050565b600060208201905081810360008301526139a181613570565b9050919050565b600060208201905081810360008301526139c181613593565b9050919050565b600060208201905081810360008301526139e1816135b6565b9050919050565b60006020820190508181036000830152613a01816135d9565b9050919050565b60006020820190508181036000830152613a21816135fc565b9050919050565b60006020820190508181036000830152613a418161361f565b9050919050565b60006020820190508181036000830152613a6181613642565b9050919050565b60006020820190508181036000830152613a8181613665565b9050919050565b60006020820190508181036000830152613aa181613688565b9050919050565b60006020820190508181036000830152613ac1816136ab565b9050919050565b60006020820190508181036000830152613ae1816136ce565b9050919050565b60006020820190508181036000830152613b01816136f1565b9050919050565b60006020820190508181036000830152613b2181613714565b9050919050565b60006020820190508181036000830152613b4181613737565b9050919050565b60006020820190508181036000830152613b618161375a565b9050919050565b60006020820190508181036000830152613b818161377d565b9050919050565b6000602082019050613b9d60008301846137a0565b92915050565b6000613bad613bbe565b9050613bb98282613e7f565b919050565b6000604051905090565b600067ffffffffffffffff821115613be357613be2614015565b5b613bec82614058565b9050602081019050919050565b600067ffffffffffffffff821115613c1457613c13614015565b5b613c1d82614058565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c8d82613e01565b9150613c9883613e01565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ccd57613ccc613f2a565b5b828201905092915050565b6000613ce382613e01565b9150613cee83613e01565b925082613cfe57613cfd613f59565b5b828204905092915050565b6000613d1482613e01565b9150613d1f83613e01565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d5857613d57613f2a565b5b828202905092915050565b6000613d6e82613e01565b9150613d7983613e01565b925082821015613d8c57613d8b613f2a565b5b828203905092915050565b6000613da282613de1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e38578082015181840152602081019050613e1d565b83811115613e47576000848401525b50505050565b60006002820490506001821680613e6557607f821691505b60208210811415613e7957613e78613f88565b5b50919050565b613e8882614058565b810181811067ffffffffffffffff82111715613ea757613ea6614015565b5b80604052505050565b6000613ebb82613e01565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613eee57613eed613f2a565b5b600182019050919050565b6000613f0482613e01565b9150613f0f83613e01565b925082613f1f57613f1e613f59565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c6520776f756c6420657863656564206d617820737570706c7900000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820657468657220746f206d696e7420746865206e667460008201527f20636f6e746163742074672053757a756b692053746f72790000000000000000602082015250565b7f53616c6520776f756c6420657863656564206d61782062616c616e6365000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420323020746f6b656e20617420612074696d65600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74206e667400600082015250565b61465b81613d97565b811461466657600080fd5b50565b61467281613da9565b811461467d57600080fd5b50565b61468981613db5565b811461469457600080fd5b50565b6146a081613e01565b81146146ab57600080fd5b5056fea2646970667358221220b644e899903abc920b83823a54adde2dcabb8eb59c4f40f5f0be3137b4d7d62a64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80636ebeac8511610123578063a22cb465116100ab578063de8b51e11161006f578063de8b51e1146107b2578063e985e9c5146107c9578063f2c4ce1e14610806578063f2fde38b1461082f578063f4a0a528146108585761021a565b8063a22cb465146106cf578063b88d4fde146106f8578063c668286214610721578063c87b56dd1461074c578063da3ef23f146107895761021a565b806373ad468a116100f257806373ad468a146105fa5780637501f741146106255780638da5cb5b1461065057806395d89b411461067b5780639d51d9b7146106a65761021a565b80636ebeac85146105505780637080d6fc1461057b57806370a08231146105a6578063715018a6146105e35761021a565b806332cb6b0c116101a657806351cff8d91161017557806351cff8d91461046d578063547520fe1461049657806355f804b3146104bf5780636352211e146104e85780636817c76c146105255761021a565b806332cb6b0c146103c55780633b84d9c6146103f057806342842e0e146104075780634f6ccce7146104305761021a565b8063095ea7b3116101ed578063095ea7b3146102ef5780630d730acc1461031857806318160ddd1461033457806323b872dd1461035f5780632f745c59146103885761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063081c8c44146102c4575b600080fd5b34801561022b57600080fd5b506102466004803603810190610241919061326b565b610881565b604051610253919061386b565b60405180910390f35b34801561026857600080fd5b506102716108fb565b60405161027e9190613886565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a9919061330e565b61098d565b6040516102bb9190613804565b60405180910390f35b3480156102d057600080fd5b506102d9610a12565b6040516102e69190613886565b60405180910390f35b3480156102fb57600080fd5b506103166004803603810190610311919061322b565b610aa0565b005b610332600480360381019061032d919061330e565b610bb8565b005b34801561034057600080fd5b50610349610d96565b6040516103569190613b88565b60405180910390f35b34801561036b57600080fd5b5061038660048036038101906103819190613115565b610da3565b005b34801561039457600080fd5b506103af60048036038101906103aa919061322b565b610e03565b6040516103bc9190613b88565b60405180910390f35b3480156103d157600080fd5b506103da610ea8565b6040516103e79190613b88565b60405180910390f35b3480156103fc57600080fd5b50610405610eae565b005b34801561041357600080fd5b5061042e60048036038101906104299190613115565b610f56565b005b34801561043c57600080fd5b506104576004803603810190610452919061330e565b610f76565b6040516104649190613b88565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f91906130a8565b610fe7565b005b3480156104a257600080fd5b506104bd60048036038101906104b8919061330e565b6110b3565b005b3480156104cb57600080fd5b506104e660048036038101906104e191906132c5565b611139565b005b3480156104f457600080fd5b5061050f600480360381019061050a919061330e565b6111cf565b60405161051c9190613804565b60405180910390f35b34801561053157600080fd5b5061053a611281565b6040516105479190613b88565b60405180910390f35b34801561055c57600080fd5b50610565611287565b604051610572919061386b565b60405180910390f35b34801561058757600080fd5b5061059061129a565b60405161059d919061386b565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c891906130a8565b6112ad565b6040516105da9190613b88565b60405180910390f35b3480156105ef57600080fd5b506105f8611365565b005b34801561060657600080fd5b5061060f6113ed565b60405161061c9190613b88565b60405180910390f35b34801561063157600080fd5b5061063a6113f3565b6040516106479190613b88565b60405180910390f35b34801561065c57600080fd5b506106656113f9565b6040516106729190613804565b60405180910390f35b34801561068757600080fd5b50610690611423565b60405161069d9190613886565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c8919061330e565b6114b5565b005b3480156106db57600080fd5b506106f660048036038101906106f191906131eb565b61153b565b005b34801561070457600080fd5b5061071f600480360381019061071a9190613168565b611551565b005b34801561072d57600080fd5b506107366115b3565b6040516107439190613886565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e919061330e565b611641565b6040516107809190613886565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab91906132c5565b611865565b005b3480156107be57600080fd5b506107c76118fb565b005b3480156107d557600080fd5b506107f060048036038101906107eb91906130d5565b6119a3565b6040516107fd919061386b565b60405180910390f35b34801561081257600080fd5b5061082d600480360381019061082891906132c5565b611a37565b005b34801561083b57600080fd5b50610856600480360381019061085191906130a8565b611acd565b005b34801561086457600080fd5b5061087f600480360381019061087a919061330e565b611bc5565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f457506108f382611c4b565b5b9050919050565b60606000805461090a90613e4d565b80601f016020809104026020016040519081016040528092919081815260200182805461093690613e4d565b80156109835780601f1061095857610100808354040283529160200191610983565b820191906000526020600020905b81548152906001019060200180831161096657829003601f168201915b5050505050905090565b600061099882611d2d565b6109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce90613a88565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f8054610a1f90613e4d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4b90613e4d565b8015610a985780601f10610a6d57610100808354040283529160200191610a98565b820191906000526020600020905b815481529060010190602001808311610a7b57829003601f168201915b505050505081565b6000610aab826111cf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1390613ae8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3b611d99565b73ffffffffffffffffffffffffffffffffffffffff161480610b6a5750610b6981610b64611d99565b6119a3565b5b610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090613a08565b60405180910390fd5b610bb38383611da1565b505050565b61080081610bc4610d96565b610bce9190613c82565b1115610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0690613948565b60405180910390fd5b600a60149054906101000a900460ff16610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5590613b68565b60405180910390fd5b34600b5482610c6d9190613d09565b1115610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca5906139c8565b60405180910390fd5b600c5481610cbb336112ad565b610cc59190613c82565b1115610d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfd906139e8565b60405180910390fd5b600d54811115610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290613b08565b60405180910390fd5b60005b81811015610d92576000610d60610d96565b9050610800610d6d610d96565b1015610d7e57610d7d3382611e5a565b5b508080610d8a90613eb0565b915050610d4e565b5050565b6000600880549050905090565b610db4610dae611d99565b82611e78565b610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90613b28565b60405180910390fd5b610dfe838383611f56565b505050565b6000610e0e836112ad565b8210610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e46906138a8565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61080081565b610eb6611d99565b73ffffffffffffffffffffffffffffffffffffffff16610ed46113f9565b73ffffffffffffffffffffffffffffffffffffffff1614610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190613aa8565b60405180910390fd5b600a60159054906101000a900460ff1615600a60156101000a81548160ff021916908315150217905550565b610f7183838360405180602001604052806000815250611551565b505050565b6000610f80610d96565b8210610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb890613b48565b60405180910390fd5b60088281548110610fd557610fd4613fe6565b5b90600052602060002001549050919050565b610fef611d99565b73ffffffffffffffffffffffffffffffffffffffff1661100d6113f9565b73ffffffffffffffffffffffffffffffffffffffff1614611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a90613aa8565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110ae573d6000803e3d6000fd5b505050565b6110bb611d99565b73ffffffffffffffffffffffffffffffffffffffff166110d96113f9565b73ffffffffffffffffffffffffffffffffffffffff161461112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690613aa8565b60405180910390fd5b80600d8190555050565b611141611d99565b73ffffffffffffffffffffffffffffffffffffffff1661115f6113f9565b73ffffffffffffffffffffffffffffffffffffffff16146111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90613aa8565b60405180910390fd5b80600e90805190602001906111cb929190612ebc565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90613a48565b60405180910390fd5b80915050919050565b600b5481565b600a60159054906101000a900460ff1681565b600a60149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590613a28565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61136d611d99565b73ffffffffffffffffffffffffffffffffffffffff1661138b6113f9565b73ffffffffffffffffffffffffffffffffffffffff16146113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d890613aa8565b60405180910390fd5b6113eb60006121bd565b565b600c5481565b600d5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461143290613e4d565b80601f016020809104026020016040519081016040528092919081815260200182805461145e90613e4d565b80156114ab5780601f10611480576101008083540402835291602001916114ab565b820191906000526020600020905b81548152906001019060200180831161148e57829003601f168201915b5050505050905090565b6114bd611d99565b73ffffffffffffffffffffffffffffffffffffffff166114db6113f9565b73ffffffffffffffffffffffffffffffffffffffff1614611531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152890613aa8565b60405180910390fd5b80600c8190555050565b61154d611546611d99565b8383612283565b5050565b61156261155c611d99565b83611e78565b6115a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159890613b28565b60405180910390fd5b6115ad848484846123f0565b50505050565b601080546115c090613e4d565b80601f01602080910402602001604051908101604052809291908181526020018280546115ec90613e4d565b80156116395780601f1061160e57610100808354040283529160200191611639565b820191906000526020600020905b81548152906001019060200180831161161c57829003601f168201915b505050505081565b606061164c82611d2d565b61168b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168290613ac8565b60405180910390fd5b60001515600a60159054906101000a900460ff161515141561173957600f80546116b490613e4d565b80601f01602080910402602001604051908101604052809291908181526020018280546116e090613e4d565b801561172d5780601f106117025761010080835404028352916020019161172d565b820191906000526020600020905b81548152906001019060200180831161171057829003601f168201915b50505050509050611860565b600060116000848152602001908152602001600020805461175990613e4d565b80601f016020809104026020016040519081016040528092919081815260200182805461178590613e4d565b80156117d25780601f106117a7576101008083540402835291602001916117d2565b820191906000526020600020905b8154815290600101906020018083116117b557829003601f168201915b5050505050905060006117e361244c565b90506000815114156117f9578192505050611860565b60008251111561182e5780826040516020016118169291906137af565b60405160208183030381529060405292505050611860565b80611838856124de565b601060405160200161184c939291906137d3565b604051602081830303815290604052925050505b919050565b61186d611d99565b73ffffffffffffffffffffffffffffffffffffffff1661188b6113f9565b73ffffffffffffffffffffffffffffffffffffffff16146118e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d890613aa8565b60405180910390fd5b80601090805190602001906118f7929190612ebc565b5050565b611903611d99565b73ffffffffffffffffffffffffffffffffffffffff166119216113f9565b73ffffffffffffffffffffffffffffffffffffffff1614611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e90613aa8565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a3f611d99565b73ffffffffffffffffffffffffffffffffffffffff16611a5d6113f9565b73ffffffffffffffffffffffffffffffffffffffff1614611ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaa90613aa8565b60405180910390fd5b80600f9080519060200190611ac9929190612ebc565b5050565b611ad5611d99565b73ffffffffffffffffffffffffffffffffffffffff16611af36113f9565b73ffffffffffffffffffffffffffffffffffffffff1614611b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4090613aa8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb0906138e8565b60405180910390fd5b611bc2816121bd565b50565b611bcd611d99565b73ffffffffffffffffffffffffffffffffffffffff16611beb6113f9565b73ffffffffffffffffffffffffffffffffffffffff1614611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3890613aa8565b60405180910390fd5b80600b8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d1657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d265750611d258261263f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e14836111cf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611e748282604051806020016040528060008152506126a9565b5050565b6000611e8382611d2d565b611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb9906139a8565b60405180910390fd5b6000611ecd836111cf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f3c57508373ffffffffffffffffffffffffffffffffffffffff16611f248461098d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f4d5750611f4c81856119a3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f76826111cf565b73ffffffffffffffffffffffffffffffffffffffff1614611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390613908565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561203c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203390613968565b60405180910390fd5b612047838383612704565b612052600082611da1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120a29190613d63565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120f99190613c82565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121b8838383612818565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e990613988565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123e3919061386b565b60405180910390a3505050565b6123fb848484611f56565b6124078484848461281d565b612446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243d906138c8565b60405180910390fd5b50505050565b6060600e805461245b90613e4d565b80601f016020809104026020016040519081016040528092919081815260200182805461248790613e4d565b80156124d45780601f106124a9576101008083540402835291602001916124d4565b820191906000526020600020905b8154815290600101906020018083116124b757829003601f168201915b5050505050905090565b60606000821415612526576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061263a565b600082905060005b6000821461255857808061254190613eb0565b915050600a826125519190613cd8565b915061252e565b60008167ffffffffffffffff81111561257457612573614015565b5b6040519080825280601f01601f1916602001820160405280156125a65781602001600182028036833780820191505090505b5090505b60008514612633576001826125bf9190613d63565b9150600a856125ce9190613ef9565b60306125da9190613c82565b60f81b8183815181106125f0576125ef613fe6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561262c9190613cd8565b94506125aa565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126b383836129b4565b6126c0600084848461281d565b6126ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f6906138c8565b60405180910390fd5b505050565b61270f838383612b8e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127525761274d81612b93565b612791565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127905761278f8382612bdc565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127d4576127cf81612d49565b612813565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612812576128118282612e1a565b5b5b505050565b505050565b600061283e8473ffffffffffffffffffffffffffffffffffffffff16612e99565b156129a7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612867611d99565b8786866040518563ffffffff1660e01b8152600401612889949392919061381f565b602060405180830381600087803b1580156128a357600080fd5b505af19250505080156128d457506040513d601f19601f820116820180604052508101906128d19190613298565b60015b612957573d8060008114612904576040519150601f19603f3d011682016040523d82523d6000602084013e612909565b606091505b5060008151141561294f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612946906138c8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129ac565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1b90613a68565b60405180910390fd5b612a2d81611d2d565b15612a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6490613928565b60405180910390fd5b612a7960008383612704565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ac99190613c82565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b8a60008383612818565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612be9846112ad565b612bf39190613d63565b9050600060076000848152602001908152602001600020549050818114612cd8576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d5d9190613d63565b9050600060096000848152602001908152602001600020549050600060088381548110612d8d57612d8c613fe6565b5b906000526020600020015490508060088381548110612daf57612dae613fe6565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612dfe57612dfd613fb7565b5b6001900381819060005260206000200160009055905550505050565b6000612e25836112ad565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612ec890613e4d565b90600052602060002090601f016020900481019282612eea5760008555612f31565b82601f10612f0357805160ff1916838001178555612f31565b82800160010185558215612f31579182015b82811115612f30578251825591602001919060010190612f15565b5b509050612f3e9190612f42565b5090565b5b80821115612f5b576000816000905550600101612f43565b5090565b6000612f72612f6d84613bc8565b613ba3565b905082815260208101848484011115612f8e57612f8d614049565b5b612f99848285613e0b565b509392505050565b6000612fb4612faf84613bf9565b613ba3565b905082815260208101848484011115612fd057612fcf614049565b5b612fdb848285613e0b565b509392505050565b600081359050612ff281614652565b92915050565b60008135905061300781614669565b92915050565b60008135905061301c81614680565b92915050565b60008151905061303181614680565b92915050565b600082601f83011261304c5761304b614044565b5b813561305c848260208601612f5f565b91505092915050565b600082601f83011261307a57613079614044565b5b813561308a848260208601612fa1565b91505092915050565b6000813590506130a281614697565b92915050565b6000602082840312156130be576130bd614053565b5b60006130cc84828501612fe3565b91505092915050565b600080604083850312156130ec576130eb614053565b5b60006130fa85828601612fe3565b925050602061310b85828601612fe3565b9150509250929050565b60008060006060848603121561312e5761312d614053565b5b600061313c86828701612fe3565b935050602061314d86828701612fe3565b925050604061315e86828701613093565b9150509250925092565b6000806000806080858703121561318257613181614053565b5b600061319087828801612fe3565b94505060206131a187828801612fe3565b93505060406131b287828801613093565b925050606085013567ffffffffffffffff8111156131d3576131d261404e565b5b6131df87828801613037565b91505092959194509250565b6000806040838503121561320257613201614053565b5b600061321085828601612fe3565b925050602061322185828601612ff8565b9150509250929050565b6000806040838503121561324257613241614053565b5b600061325085828601612fe3565b925050602061326185828601613093565b9150509250929050565b60006020828403121561328157613280614053565b5b600061328f8482850161300d565b91505092915050565b6000602082840312156132ae576132ad614053565b5b60006132bc84828501613022565b91505092915050565b6000602082840312156132db576132da614053565b5b600082013567ffffffffffffffff8111156132f9576132f861404e565b5b61330584828501613065565b91505092915050565b60006020828403121561332457613323614053565b5b600061333284828501613093565b91505092915050565b61334481613d97565b82525050565b61335381613da9565b82525050565b600061336482613c3f565b61336e8185613c55565b935061337e818560208601613e1a565b61338781614058565b840191505092915050565b600061339d82613c4a565b6133a78185613c66565b93506133b7818560208601613e1a565b6133c081614058565b840191505092915050565b60006133d682613c4a565b6133e08185613c77565b93506133f0818560208601613e1a565b80840191505092915050565b6000815461340981613e4d565b6134138186613c77565b9450600182166000811461342e576001811461343f57613472565b60ff19831686528186019350613472565b61344885613c2a565b60005b8381101561346a5781548189015260018201915060208101905061344b565b838801955050505b50505092915050565b6000613488602b83613c66565b915061349382614069565b604082019050919050565b60006134ab603283613c66565b91506134b6826140b8565b604082019050919050565b60006134ce602683613c66565b91506134d982614107565b604082019050919050565b60006134f1602583613c66565b91506134fc82614156565b604082019050919050565b6000613514601c83613c66565b915061351f826141a5565b602082019050919050565b6000613537601c83613c66565b9150613542826141ce565b602082019050919050565b600061355a602483613c66565b9150613565826141f7565b604082019050919050565b600061357d601983613c66565b915061358882614246565b602082019050919050565b60006135a0602c83613c66565b91506135ab8261426f565b604082019050919050565b60006135c3603883613c66565b91506135ce826142be565b604082019050919050565b60006135e6601d83613c66565b91506135f18261430d565b602082019050919050565b6000613609603883613c66565b915061361482614336565b604082019050919050565b600061362c602a83613c66565b915061363782614385565b604082019050919050565b600061364f602983613c66565b915061365a826143d4565b604082019050919050565b6000613672602083613c66565b915061367d82614423565b602082019050919050565b6000613695602c83613c66565b91506136a08261444c565b604082019050919050565b60006136b8602083613c66565b91506136c38261449b565b602082019050919050565b60006136db602f83613c66565b91506136e6826144c4565b604082019050919050565b60006136fe602183613c66565b915061370982614513565b604082019050919050565b6000613721602083613c66565b915061372c82614562565b602082019050919050565b6000613744603183613c66565b915061374f8261458b565b604082019050919050565b6000613767602c83613c66565b9150613772826145da565b604082019050919050565b600061378a601f83613c66565b915061379582614629565b602082019050919050565b6137a981613e01565b82525050565b60006137bb82856133cb565b91506137c782846133cb565b91508190509392505050565b60006137df82866133cb565b91506137eb82856133cb565b91506137f782846133fc565b9150819050949350505050565b6000602082019050613819600083018461333b565b92915050565b6000608082019050613834600083018761333b565b613841602083018661333b565b61384e60408301856137a0565b81810360608301526138608184613359565b905095945050505050565b6000602082019050613880600083018461334a565b92915050565b600060208201905081810360008301526138a08184613392565b905092915050565b600060208201905081810360008301526138c18161347b565b9050919050565b600060208201905081810360008301526138e18161349e565b9050919050565b60006020820190508181036000830152613901816134c1565b9050919050565b60006020820190508181036000830152613921816134e4565b9050919050565b6000602082019050818103600083015261394181613507565b9050919050565b600060208201905081810360008301526139618161352a565b9050919050565b600060208201905081810360008301526139818161354d565b9050919050565b600060208201905081810360008301526139a181613570565b9050919050565b600060208201905081810360008301526139c181613593565b9050919050565b600060208201905081810360008301526139e1816135b6565b9050919050565b60006020820190508181036000830152613a01816135d9565b9050919050565b60006020820190508181036000830152613a21816135fc565b9050919050565b60006020820190508181036000830152613a418161361f565b9050919050565b60006020820190508181036000830152613a6181613642565b9050919050565b60006020820190508181036000830152613a8181613665565b9050919050565b60006020820190508181036000830152613aa181613688565b9050919050565b60006020820190508181036000830152613ac1816136ab565b9050919050565b60006020820190508181036000830152613ae1816136ce565b9050919050565b60006020820190508181036000830152613b01816136f1565b9050919050565b60006020820190508181036000830152613b2181613714565b9050919050565b60006020820190508181036000830152613b4181613737565b9050919050565b60006020820190508181036000830152613b618161375a565b9050919050565b60006020820190508181036000830152613b818161377d565b9050919050565b6000602082019050613b9d60008301846137a0565b92915050565b6000613bad613bbe565b9050613bb98282613e7f565b919050565b6000604051905090565b600067ffffffffffffffff821115613be357613be2614015565b5b613bec82614058565b9050602081019050919050565b600067ffffffffffffffff821115613c1457613c13614015565b5b613c1d82614058565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c8d82613e01565b9150613c9883613e01565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ccd57613ccc613f2a565b5b828201905092915050565b6000613ce382613e01565b9150613cee83613e01565b925082613cfe57613cfd613f59565b5b828204905092915050565b6000613d1482613e01565b9150613d1f83613e01565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d5857613d57613f2a565b5b828202905092915050565b6000613d6e82613e01565b9150613d7983613e01565b925082821015613d8c57613d8b613f2a565b5b828203905092915050565b6000613da282613de1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e38578082015181840152602081019050613e1d565b83811115613e47576000848401525b50505050565b60006002820490506001821680613e6557607f821691505b60208210811415613e7957613e78613f88565b5b50919050565b613e8882614058565b810181811067ffffffffffffffff82111715613ea757613ea6614015565b5b80604052505050565b6000613ebb82613e01565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613eee57613eed613f2a565b5b600182019050919050565b6000613f0482613e01565b9150613f0f83613e01565b925082613f1f57613f1e613f59565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c6520776f756c6420657863656564206d617820737570706c7900000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820657468657220746f206d696e7420746865206e667460008201527f20636f6e746163742074672053757a756b692053746f72790000000000000000602082015250565b7f53616c6520776f756c6420657863656564206d61782062616c616e6365000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420323020746f6b656e20617420612074696d65600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74206e667400600082015250565b61465b81613d97565b811461466657600080fd5b50565b61467281613da9565b811461467d57600080fd5b50565b61468981613db5565b811461469457600080fd5b50565b6146a081613e01565b81146146ab57600080fd5b5056fea2646970667358221220b644e899903abc920b83823a54adde2dcabb8eb59c4f40f5f0be3137b4d7d62a64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string):
Arg [1] : initNotRevealedUri (string):

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

45643:3965:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39314:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26134:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27693:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46028:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27216:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46390:867;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39954:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28443:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39622:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45841:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48501:80;;;;;;;;;;;;;:::i;:::-;;28853:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40144:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49460:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49360:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48977:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25828:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45889:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45785:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45745:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25558:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;45934:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45971:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26303:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49248;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27986:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29109:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46063:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47267:992;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49089:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48401:92;;;;;;;;;;;;;:::i;:::-;;28212:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48770:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48589:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39314:224;39416:4;39455:35;39440:50;;;:11;:50;;;;:90;;;;39494:36;39518:11;39494:23;:36::i;:::-;39440:90;39433:97;;39314:224;;;:::o;26134:100::-;26188:13;26221:5;26214:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26134:100;:::o;27693:221::-;27769:7;27797:16;27805:7;27797;:16::i;:::-;27789:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27882:15;:24;27898:7;27882:24;;;;;;;;;;;;;;;;;;;;;27875:31;;27693:221;;;:::o;46028:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27216:411::-;27297:13;27313:23;27328:7;27313:14;:23::i;:::-;27297:39;;27361:5;27355:11;;:2;:11;;;;27347:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27455:5;27439:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27464:37;27481:5;27488:12;:10;:12::i;:::-;27464:16;:37::i;:::-;27439:62;27417:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27598:21;27607:2;27611:7;27598:8;:21::i;:::-;27286:341;27216:411;;:::o;46390:867::-;45878:4;46494:13;46478;:11;:13::i;:::-;:29;;;;:::i;:::-;:43;;46456:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;46596:13;;;;;;;;;;;46588:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;46707:9;46694;;46678:13;:25;;;;:::i;:::-;:38;;46656:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;46874:10;;46857:13;46833:21;46843:10;46833:9;:21::i;:::-;:37;;;;:::i;:::-;:51;;46811:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;46977:7;;46960:13;:24;;46952:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;47038:9;47033:217;47057:13;47053:1;:17;47033:217;;;47092:17;47112:13;:11;:13::i;:::-;47092:33;;45878:4;47144:13;:11;:13::i;:::-;:26;47140:99;;;47191:32;47201:10;47213:9;47191;:32::i;:::-;47140:99;47077:173;47072:3;;;;;:::i;:::-;;;;47033:217;;;;46390:867;:::o;39954:113::-;40015:7;40042:10;:17;;;;40035:24;;39954:113;:::o;28443:339::-;28638:41;28657:12;:10;:12::i;:::-;28671:7;28638:18;:41::i;:::-;28630:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28746:28;28756:4;28762:2;28766:7;28746:9;:28::i;:::-;28443:339;;;:::o;39622:256::-;39719:7;39755:23;39772:5;39755:16;:23::i;:::-;39747:5;:31;39739:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39844:12;:19;39857:5;39844:19;;;;;;;;;;;;;;;:26;39864:5;39844:26;;;;;;;;;;;;39837:33;;39622:256;;;;:::o;45841:41::-;45878:4;45841:41;:::o;48501:80::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48564:9:::1;;;;;;;;;;;48563:10;48551:9;;:22;;;;;;;;;;;;;;;;;;48501:80::o:0;28853:185::-;28991:39;29008:4;29014:2;29018:7;28991:39;;;;;;;;;;;;:16;:39::i;:::-;28853:185;;;:::o;40144:233::-;40219:7;40255:30;:28;:30::i;:::-;40247:5;:38;40239:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40352:10;40363:5;40352:17;;;;;;;;:::i;:::-;;;;;;;;;;40345:24;;40144:233;;;:::o;49460:145::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49518:15:::1;49536:21;49518:39;;49576:2;49568:20;;:29;49589:7;49568:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;49507:98;49460:145:::0;:::o;49360:92::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49436:8:::1;49426:7;:18;;;;49360:92:::0;:::o;48977:104::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49062:11:::1;49052:7;:21;;;;;;;;;;;;:::i;:::-;;48977:104:::0;:::o;25828:239::-;25900:7;25920:13;25936:7;:16;25944:7;25936:16;;;;;;;;;;;;;;;;;;;;;25920:32;;25988:1;25971:19;;:5;:19;;;;25963:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26054:5;26047:12;;;25828:239;;;:::o;45889:38::-;;;;:::o;45785:29::-;;;;;;;;;;;;;:::o;45745:33::-;;;;;;;;;;;;;:::o;25558:208::-;25630:7;25675:1;25658:19;;:5;:19;;;;25650:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25742:9;:16;25752:5;25742:16;;;;;;;;;;;;;;;;25735:23;;25558:208;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;45934:30::-;;;;:::o;45971:27::-;;;;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;26303:104::-;26359:13;26392:7;26385:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26303:104;:::o;49248:::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49333:11:::1;49320:10;:24;;;;49248:104:::0;:::o;27986:155::-;28081:52;28100:12;:10;:12::i;:::-;28114:8;28124;28081:18;:52::i;:::-;27986:155;;:::o;29109:328::-;29284:41;29303:12;:10;:12::i;:::-;29317:7;29284:18;:41::i;:::-;29276:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29390:39;29404:4;29410:2;29414:7;29423:5;29390:13;:39::i;:::-;29109:328;;;;:::o;46063:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47267:992::-;47385:13;47438:16;47446:7;47438;:16::i;:::-;47416:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;47559:5;47546:18;;:9;;;;;;;;;;;:18;;;47542:72;;;47588:14;47581:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47542:72;47626:23;47652:10;:19;47663:7;47652:19;;;;;;;;;;;47626:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47682:18;47703:10;:8;:10::i;:::-;47682:31;;47811:1;47795:4;47789:18;:23;47785:72;;;47836:9;47829:16;;;;;;47785:72;47987:1;47967:9;47961:23;:27;47957:108;;;48036:4;48042:9;48019:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48005:48;;;;;;47957:108;48210:4;48216:18;:7;:16;:18::i;:::-;48236:13;48193:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48166:85;;;;47267:992;;;;:::o;49089:151::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49215:17:::1;49199:13;:33;;;;;;;;;;;;:::i;:::-;;49089:151:::0;:::o;48401:92::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48472:13:::1;;;;;;;;;;;48471:14;48455:13;;:30;;;;;;;;;;;;;;;;;;48401:92::o:0;28212:164::-;28309:4;28333:18;:25;28352:5;28333:25;;;;;;;;;;;;;;;:35;28359:8;28333:35;;;;;;;;;;;;;;;;;;;;;;;;;28326:42;;28212:164;;;;:::o;48770:126::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48873:15:::1;48856:14;:32;;;;;;;;;;;;:::i;:::-;;48770:126:::0;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;48589:100::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48671:10:::1;48659:9;:22;;;;48589:100:::0;:::o;25189:305::-;25291:4;25343:25;25328:40;;;:11;:40;;;;:105;;;;25400:33;25385:48;;;:11;:48;;;;25328:105;:158;;;;25450:36;25474:11;25450:23;:36::i;:::-;25328:158;25308:178;;25189:305;;;:::o;30947:127::-;31012:4;31064:1;31036:30;;:7;:16;31044:7;31036:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31029:37;;30947:127;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;35093:174::-;35195:2;35168:15;:24;35184:7;35168:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35251:7;35247:2;35213:46;;35222:23;35237:7;35222:14;:23::i;:::-;35213:46;;;;;;;;;;;;35093:174;;:::o;31931:110::-;32007:26;32017:2;32021:7;32007:26;;;;;;;;;;;;:9;:26::i;:::-;31931:110;;:::o;31241:348::-;31334:4;31359:16;31367:7;31359;:16::i;:::-;31351:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31435:13;31451:23;31466:7;31451:14;:23::i;:::-;31435:39;;31504:5;31493:16;;:7;:16;;;:51;;;;31537:7;31513:31;;:20;31525:7;31513:11;:20::i;:::-;:31;;;31493:51;:87;;;;31548:32;31565:5;31572:7;31548:16;:32::i;:::-;31493:87;31485:96;;;31241:348;;;;:::o;34350:625::-;34509:4;34482:31;;:23;34497:7;34482:14;:23::i;:::-;:31;;;34474:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34588:1;34574:16;;:2;:16;;;;34566:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34644:39;34665:4;34671:2;34675:7;34644:20;:39::i;:::-;34748:29;34765:1;34769:7;34748:8;:29::i;:::-;34809:1;34790:9;:15;34800:4;34790:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34838:1;34821:9;:13;34831:2;34821:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34869:2;34850:7;:16;34858:7;34850:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34908:7;34904:2;34889:27;;34898:4;34889:27;;;;;;;;;;;;34929:38;34949:4;34955:2;34959:7;34929:19;:38::i;:::-;34350:625;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;35409:315::-;35564:8;35555:17;;:5;:17;;;;35547:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35651:8;35613:18;:25;35632:5;35613:25;;;;;;;;;;;;;;;:35;35639:8;35613:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35697:8;35675:41;;35690:5;35675:41;;;35707:8;35675:41;;;;;;:::i;:::-;;;;;;;;35409:315;;;:::o;30319:::-;30476:28;30486:4;30492:2;30496:7;30476:9;:28::i;:::-;30523:48;30546:4;30552:2;30556:7;30565:5;30523:22;:48::i;:::-;30515:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30319:315;;;;:::o;48284:108::-;48344:13;48377:7;48370:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48284:108;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;16863:157::-;16948:4;16987:25;16972:40;;;:11;:40;;;;16965:47;;16863:157;;;:::o;32268:321::-;32398:18;32404:2;32408:7;32398:5;:18::i;:::-;32449:54;32480:1;32484:2;32488:7;32497:5;32449:22;:54::i;:::-;32427:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32268:321;;;:::o;40990:589::-;41134:45;41161:4;41167:2;41171:7;41134:26;:45::i;:::-;41212:1;41196:18;;:4;:18;;;41192:187;;;41231:40;41263:7;41231:31;:40::i;:::-;41192:187;;;41301:2;41293:10;;:4;:10;;;41289:90;;41320:47;41353:4;41359:7;41320:32;:47::i;:::-;41289:90;41192:187;41407:1;41393:16;;:2;:16;;;41389:183;;;41426:45;41463:7;41426:36;:45::i;:::-;41389:183;;;41499:4;41493:10;;:2;:10;;;41489:83;;41520:40;41548:2;41552:7;41520:27;:40::i;:::-;41489:83;41389:183;40990:589;;;:::o;38171:125::-;;;;:::o;36289:799::-;36444:4;36465:15;:2;:13;;;:15::i;:::-;36461:620;;;36517:2;36501:36;;;36538:12;:10;:12::i;:::-;36552:4;36558:7;36567:5;36501:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36497:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36760:1;36743:6;:13;:18;36739:272;;;36786:60;;;;;;;;;;:::i;:::-;;;;;;;;36739:272;36961:6;36955:13;36946:6;36942:2;36938:15;36931:38;36497:529;36634:41;;;36624:51;;;:6;:51;;;;36617:58;;;;;36461:620;37065:4;37058:11;;36289:799;;;;;;;:::o;32925:439::-;33019:1;33005:16;;:2;:16;;;;32997:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33078:16;33086:7;33078;:16::i;:::-;33077:17;33069:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33140:45;33169:1;33173:2;33177:7;33140:20;:45::i;:::-;33215:1;33198:9;:13;33208:2;33198:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33246:2;33227:7;:16;33235:7;33227:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33291:7;33287:2;33266:33;;33283:1;33266:33;;;;;;;;;;;;33312:44;33340:1;33344:2;33348:7;33312:19;:44::i;:::-;32925:439;;:::o;37660:126::-;;;;:::o;42302:164::-;42406:10;:17;;;;42379:15;:24;42395:7;42379:24;;;;;;;;;;;:44;;;;42434:10;42450:7;42434:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42302:164;:::o;43093:988::-;43359:22;43409:1;43384:22;43401:4;43384:16;:22::i;:::-;:26;;;;:::i;:::-;43359:51;;43421:18;43442:17;:26;43460:7;43442:26;;;;;;;;;;;;43421:47;;43589:14;43575:10;:28;43571:328;;43620:19;43642:12;:18;43655:4;43642:18;;;;;;;;;;;;;;;:34;43661:14;43642:34;;;;;;;;;;;;43620:56;;43726:11;43693:12;:18;43706:4;43693:18;;;;;;;;;;;;;;;:30;43712:10;43693:30;;;;;;;;;;;:44;;;;43843:10;43810:17;:30;43828:11;43810:30;;;;;;;;;;;:43;;;;43605:294;43571:328;43995:17;:26;44013:7;43995:26;;;;;;;;;;;43988:33;;;44039:12;:18;44052:4;44039:18;;;;;;;;;;;;;;;:34;44058:14;44039:34;;;;;;;;;;;44032:41;;;43174:907;;43093:988;;:::o;44376:1079::-;44629:22;44674:1;44654:10;:17;;;;:21;;;;:::i;:::-;44629:46;;44686:18;44707:15;:24;44723:7;44707:24;;;;;;;;;;;;44686:45;;45058:19;45080:10;45091:14;45080:26;;;;;;;;:::i;:::-;;;;;;;;;;45058:48;;45144:11;45119:10;45130;45119:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;45255:10;45224:15;:28;45240:11;45224:28;;;;;;;;;;;:41;;;;45396:15;:24;45412:7;45396:24;;;;;;;;;;;45389:31;;;45431:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44447:1008;;;44376:1079;:::o;41880:221::-;41965:14;41982:20;41999:2;41982:16;:20::i;:::-;41965:37;;42040:7;42013:12;:16;42026:2;42013:16;;;;;;;;;;;;;;;:24;42030:6;42013:24;;;;;;;;;;;:34;;;;42087:6;42058:17;:26;42076:7;42058:26;;;;;;;;;;;:35;;;;41954:147;41880:221;;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:::-;11021:3;11042:67;11106:2;11101:3;11042:67;:::i;:::-;11035:74;;11118:93;11207:3;11118:93;:::i;:::-;11236:2;11231:3;11227:12;11220:19;;10879:366;;;:::o;11251:::-;11393:3;11414:67;11478:2;11473:3;11414:67;:::i;:::-;11407:74;;11490:93;11579:3;11490:93;:::i;:::-;11608:2;11603:3;11599:12;11592:19;;11251:366;;;:::o;11623:::-;11765:3;11786:67;11850:2;11845:3;11786:67;:::i;:::-;11779:74;;11862:93;11951:3;11862:93;:::i;:::-;11980:2;11975:3;11971:12;11964:19;;11623:366;;;:::o;11995:::-;12137:3;12158:67;12222:2;12217:3;12158:67;:::i;:::-;12151:74;;12234:93;12323:3;12234:93;:::i;:::-;12352:2;12347:3;12343:12;12336:19;;11995:366;;;:::o;12367:::-;12509:3;12530:67;12594:2;12589:3;12530:67;:::i;:::-;12523:74;;12606:93;12695:3;12606:93;:::i;:::-;12724:2;12719:3;12715:12;12708:19;;12367:366;;;:::o;12739:::-;12881:3;12902:67;12966:2;12961:3;12902:67;:::i;:::-;12895:74;;12978:93;13067:3;12978:93;:::i;:::-;13096:2;13091:3;13087:12;13080:19;;12739:366;;;:::o;13111:::-;13253:3;13274:67;13338:2;13333:3;13274:67;:::i;:::-;13267:74;;13350:93;13439:3;13350:93;:::i;:::-;13468:2;13463:3;13459:12;13452:19;;13111:366;;;:::o;13483:::-;13625:3;13646:67;13710:2;13705:3;13646:67;:::i;:::-;13639:74;;13722:93;13811:3;13722:93;:::i;:::-;13840:2;13835:3;13831:12;13824:19;;13483:366;;;:::o;13855:::-;13997:3;14018:67;14082:2;14077:3;14018:67;:::i;:::-;14011:74;;14094:93;14183:3;14094:93;:::i;:::-;14212:2;14207:3;14203:12;14196:19;;13855:366;;;:::o;14227:::-;14369:3;14390:67;14454:2;14449:3;14390:67;:::i;:::-;14383:74;;14466:93;14555:3;14466:93;:::i;:::-;14584:2;14579:3;14575:12;14568:19;;14227:366;;;:::o;14599:::-;14741:3;14762:67;14826:2;14821:3;14762:67;:::i;:::-;14755:74;;14838:93;14927:3;14838:93;:::i;:::-;14956:2;14951:3;14947:12;14940:19;;14599:366;;;:::o;14971:::-;15113:3;15134:67;15198:2;15193:3;15134:67;:::i;:::-;15127:74;;15210:93;15299:3;15210:93;:::i;:::-;15328:2;15323:3;15319:12;15312:19;;14971:366;;;:::o;15343:::-;15485:3;15506:67;15570:2;15565:3;15506:67;:::i;:::-;15499:74;;15582:93;15671:3;15582:93;:::i;:::-;15700:2;15695:3;15691:12;15684:19;;15343:366;;;:::o;15715:::-;15857:3;15878:67;15942:2;15937:3;15878:67;:::i;:::-;15871:74;;15954:93;16043:3;15954:93;:::i;:::-;16072:2;16067:3;16063:12;16056:19;;15715:366;;;:::o;16087:::-;16229:3;16250:67;16314:2;16309:3;16250:67;:::i;:::-;16243:74;;16326:93;16415:3;16326:93;:::i;:::-;16444:2;16439:3;16435:12;16428:19;;16087:366;;;:::o;16459:::-;16601:3;16622:67;16686:2;16681:3;16622:67;:::i;:::-;16615:74;;16698:93;16787:3;16698:93;:::i;:::-;16816:2;16811:3;16807:12;16800:19;;16459:366;;;:::o;16831:::-;16973:3;16994:67;17058:2;17053:3;16994:67;:::i;:::-;16987:74;;17070:93;17159:3;17070:93;:::i;:::-;17188:2;17183:3;17179:12;17172:19;;16831:366;;;:::o;17203:::-;17345:3;17366:67;17430:2;17425:3;17366:67;:::i;:::-;17359:74;;17442:93;17531:3;17442:93;:::i;:::-;17560:2;17555:3;17551:12;17544:19;;17203:366;;;:::o;17575:::-;17717:3;17738:67;17802:2;17797:3;17738:67;:::i;:::-;17731:74;;17814:93;17903:3;17814:93;:::i;:::-;17932:2;17927:3;17923:12;17916:19;;17575:366;;;:::o;17947:118::-;18034:24;18052:5;18034:24;:::i;:::-;18029:3;18022:37;17947:118;;:::o;18071:435::-;18251:3;18273:95;18364:3;18355:6;18273:95;:::i;:::-;18266:102;;18385:95;18476:3;18467:6;18385:95;:::i;:::-;18378:102;;18497:3;18490:10;;18071:435;;;;;:::o;18512:589::-;18737:3;18759:95;18850:3;18841:6;18759:95;:::i;:::-;18752:102;;18871:95;18962:3;18953:6;18871:95;:::i;:::-;18864:102;;18983:92;19071:3;19062:6;18983:92;:::i;:::-;18976:99;;19092:3;19085:10;;18512:589;;;;;;:::o;19107:222::-;19200:4;19238:2;19227:9;19223:18;19215:26;;19251:71;19319:1;19308:9;19304:17;19295:6;19251:71;:::i;:::-;19107:222;;;;:::o;19335:640::-;19530:4;19568:3;19557:9;19553:19;19545:27;;19582:71;19650:1;19639:9;19635:17;19626:6;19582:71;:::i;:::-;19663:72;19731:2;19720:9;19716:18;19707:6;19663:72;:::i;:::-;19745;19813:2;19802:9;19798:18;19789:6;19745:72;:::i;:::-;19864:9;19858:4;19854:20;19849:2;19838:9;19834:18;19827:48;19892:76;19963:4;19954:6;19892:76;:::i;:::-;19884:84;;19335:640;;;;;;;:::o;19981:210::-;20068:4;20106:2;20095:9;20091:18;20083:26;;20119:65;20181:1;20170:9;20166:17;20157:6;20119:65;:::i;:::-;19981:210;;;;:::o;20197:313::-;20310:4;20348:2;20337:9;20333:18;20325:26;;20397:9;20391:4;20387:20;20383:1;20372:9;20368:17;20361:47;20425:78;20498:4;20489:6;20425:78;:::i;:::-;20417:86;;20197:313;;;;:::o;20516:419::-;20682:4;20720:2;20709:9;20705:18;20697:26;;20769:9;20763:4;20759:20;20755:1;20744:9;20740:17;20733:47;20797:131;20923:4;20797:131;:::i;:::-;20789:139;;20516:419;;;:::o;20941:::-;21107:4;21145:2;21134:9;21130:18;21122:26;;21194:9;21188:4;21184:20;21180:1;21169:9;21165:17;21158:47;21222:131;21348:4;21222:131;:::i;:::-;21214:139;;20941:419;;;:::o;21366:::-;21532:4;21570:2;21559:9;21555:18;21547:26;;21619:9;21613:4;21609:20;21605:1;21594:9;21590:17;21583:47;21647:131;21773:4;21647:131;:::i;:::-;21639:139;;21366:419;;;:::o;21791:::-;21957:4;21995:2;21984:9;21980:18;21972:26;;22044:9;22038:4;22034:20;22030:1;22019:9;22015:17;22008:47;22072:131;22198:4;22072:131;:::i;:::-;22064:139;;21791:419;;;:::o;22216:::-;22382:4;22420:2;22409:9;22405:18;22397:26;;22469:9;22463:4;22459:20;22455:1;22444:9;22440:17;22433:47;22497:131;22623:4;22497:131;:::i;:::-;22489:139;;22216:419;;;:::o;22641:::-;22807:4;22845:2;22834:9;22830:18;22822:26;;22894:9;22888:4;22884:20;22880:1;22869:9;22865:17;22858:47;22922:131;23048:4;22922:131;:::i;:::-;22914:139;;22641:419;;;:::o;23066:::-;23232:4;23270:2;23259:9;23255:18;23247:26;;23319:9;23313:4;23309:20;23305:1;23294:9;23290:17;23283:47;23347:131;23473:4;23347:131;:::i;:::-;23339:139;;23066:419;;;:::o;23491:::-;23657:4;23695:2;23684:9;23680:18;23672:26;;23744:9;23738:4;23734:20;23730:1;23719:9;23715:17;23708:47;23772:131;23898:4;23772:131;:::i;:::-;23764:139;;23491:419;;;:::o;23916:::-;24082:4;24120:2;24109:9;24105:18;24097:26;;24169:9;24163:4;24159:20;24155:1;24144:9;24140:17;24133:47;24197:131;24323:4;24197:131;:::i;:::-;24189:139;;23916:419;;;:::o;24341:::-;24507:4;24545:2;24534:9;24530:18;24522:26;;24594:9;24588:4;24584:20;24580:1;24569:9;24565:17;24558:47;24622:131;24748:4;24622:131;:::i;:::-;24614:139;;24341:419;;;:::o;24766:::-;24932:4;24970:2;24959:9;24955:18;24947:26;;25019:9;25013:4;25009:20;25005:1;24994:9;24990:17;24983:47;25047:131;25173:4;25047:131;:::i;:::-;25039:139;;24766:419;;;:::o;25191:::-;25357:4;25395:2;25384:9;25380:18;25372:26;;25444:9;25438:4;25434:20;25430:1;25419:9;25415:17;25408:47;25472:131;25598:4;25472:131;:::i;:::-;25464:139;;25191:419;;;:::o;25616:::-;25782:4;25820:2;25809:9;25805:18;25797:26;;25869:9;25863:4;25859:20;25855:1;25844:9;25840:17;25833:47;25897:131;26023:4;25897:131;:::i;:::-;25889:139;;25616:419;;;:::o;26041:::-;26207:4;26245:2;26234:9;26230:18;26222:26;;26294:9;26288:4;26284:20;26280:1;26269:9;26265:17;26258:47;26322:131;26448:4;26322:131;:::i;:::-;26314:139;;26041:419;;;:::o;26466:::-;26632:4;26670:2;26659:9;26655:18;26647:26;;26719:9;26713:4;26709:20;26705:1;26694:9;26690:17;26683:47;26747:131;26873:4;26747:131;:::i;:::-;26739:139;;26466:419;;;:::o;26891:::-;27057:4;27095:2;27084:9;27080:18;27072:26;;27144:9;27138:4;27134:20;27130:1;27119:9;27115:17;27108:47;27172:131;27298:4;27172:131;:::i;:::-;27164:139;;26891:419;;;:::o;27316:::-;27482:4;27520:2;27509:9;27505:18;27497:26;;27569:9;27563:4;27559:20;27555:1;27544:9;27540:17;27533:47;27597:131;27723:4;27597:131;:::i;:::-;27589:139;;27316:419;;;:::o;27741:::-;27907:4;27945:2;27934:9;27930:18;27922:26;;27994:9;27988:4;27984:20;27980:1;27969:9;27965:17;27958:47;28022:131;28148:4;28022:131;:::i;:::-;28014:139;;27741:419;;;:::o;28166:::-;28332:4;28370:2;28359:9;28355:18;28347:26;;28419:9;28413:4;28409:20;28405:1;28394:9;28390:17;28383:47;28447:131;28573:4;28447:131;:::i;:::-;28439:139;;28166:419;;;:::o;28591:::-;28757:4;28795:2;28784:9;28780:18;28772:26;;28844:9;28838:4;28834:20;28830:1;28819:9;28815:17;28808:47;28872:131;28998:4;28872:131;:::i;:::-;28864:139;;28591:419;;;:::o;29016:::-;29182:4;29220:2;29209:9;29205:18;29197:26;;29269:9;29263:4;29259:20;29255:1;29244:9;29240:17;29233:47;29297:131;29423:4;29297:131;:::i;:::-;29289:139;;29016:419;;;:::o;29441:::-;29607:4;29645:2;29634:9;29630:18;29622:26;;29694:9;29688:4;29684:20;29680:1;29669:9;29665:17;29658:47;29722:131;29848:4;29722:131;:::i;:::-;29714:139;;29441:419;;;:::o;29866:::-;30032:4;30070:2;30059:9;30055:18;30047:26;;30119:9;30113:4;30109:20;30105:1;30094:9;30090:17;30083:47;30147:131;30273:4;30147:131;:::i;:::-;30139:139;;29866:419;;;:::o;30291:222::-;30384:4;30422:2;30411:9;30407:18;30399:26;;30435:71;30503:1;30492:9;30488:17;30479:6;30435:71;:::i;:::-;30291:222;;;;:::o;30519:129::-;30553:6;30580:20;;:::i;:::-;30570:30;;30609:33;30637:4;30629:6;30609:33;:::i;:::-;30519:129;;;:::o;30654:75::-;30687:6;30720:2;30714:9;30704:19;;30654:75;:::o;30735:307::-;30796:4;30886:18;30878:6;30875:30;30872:56;;;30908:18;;:::i;:::-;30872:56;30946:29;30968:6;30946:29;:::i;:::-;30938:37;;31030:4;31024;31020:15;31012:23;;30735:307;;;:::o;31048:308::-;31110:4;31200:18;31192:6;31189:30;31186:56;;;31222:18;;:::i;:::-;31186:56;31260:29;31282:6;31260:29;:::i;:::-;31252:37;;31344:4;31338;31334:15;31326:23;;31048:308;;;:::o;31362:141::-;31411:4;31434:3;31426:11;;31457:3;31454:1;31447:14;31491:4;31488:1;31478:18;31470:26;;31362:141;;;:::o;31509:98::-;31560:6;31594:5;31588:12;31578:22;;31509:98;;;:::o;31613:99::-;31665:6;31699:5;31693:12;31683:22;;31613:99;;;:::o;31718:168::-;31801:11;31835:6;31830:3;31823:19;31875:4;31870:3;31866:14;31851:29;;31718:168;;;;:::o;31892:169::-;31976:11;32010:6;32005:3;31998:19;32050:4;32045:3;32041:14;32026:29;;31892:169;;;;:::o;32067:148::-;32169:11;32206:3;32191:18;;32067:148;;;;:::o;32221:305::-;32261:3;32280:20;32298:1;32280:20;:::i;:::-;32275:25;;32314:20;32332:1;32314:20;:::i;:::-;32309:25;;32468:1;32400:66;32396:74;32393:1;32390:81;32387:107;;;32474:18;;:::i;:::-;32387:107;32518:1;32515;32511:9;32504:16;;32221:305;;;;:::o;32532:185::-;32572:1;32589:20;32607:1;32589:20;:::i;:::-;32584:25;;32623:20;32641:1;32623:20;:::i;:::-;32618:25;;32662:1;32652:35;;32667:18;;:::i;:::-;32652:35;32709:1;32706;32702:9;32697:14;;32532:185;;;;:::o;32723:348::-;32763:7;32786:20;32804:1;32786:20;:::i;:::-;32781:25;;32820:20;32838:1;32820:20;:::i;:::-;32815:25;;33008:1;32940:66;32936:74;32933:1;32930:81;32925:1;32918:9;32911:17;32907:105;32904:131;;;33015:18;;:::i;:::-;32904:131;33063:1;33060;33056:9;33045:20;;32723:348;;;;:::o;33077:191::-;33117:4;33137:20;33155:1;33137:20;:::i;:::-;33132:25;;33171:20;33189:1;33171:20;:::i;:::-;33166:25;;33210:1;33207;33204:8;33201:34;;;33215:18;;:::i;:::-;33201:34;33260:1;33257;33253:9;33245:17;;33077:191;;;;:::o;33274:96::-;33311:7;33340:24;33358:5;33340:24;:::i;:::-;33329:35;;33274:96;;;:::o;33376:90::-;33410:7;33453:5;33446:13;33439:21;33428:32;;33376:90;;;:::o;33472:149::-;33508:7;33548:66;33541:5;33537:78;33526:89;;33472:149;;;:::o;33627:126::-;33664:7;33704:42;33697:5;33693:54;33682:65;;33627:126;;;:::o;33759:77::-;33796:7;33825:5;33814:16;;33759:77;;;:::o;33842:154::-;33926:6;33921:3;33916;33903:30;33988:1;33979:6;33974:3;33970:16;33963:27;33842:154;;;:::o;34002:307::-;34070:1;34080:113;34094:6;34091:1;34088:13;34080:113;;;34179:1;34174:3;34170:11;34164:18;34160:1;34155:3;34151:11;34144:39;34116:2;34113:1;34109:10;34104:15;;34080:113;;;34211:6;34208:1;34205:13;34202:101;;;34291:1;34282:6;34277:3;34273:16;34266:27;34202:101;34051:258;34002:307;;;:::o;34315:320::-;34359:6;34396:1;34390:4;34386:12;34376:22;;34443:1;34437:4;34433:12;34464:18;34454:81;;34520:4;34512:6;34508:17;34498:27;;34454:81;34582:2;34574:6;34571:14;34551:18;34548:38;34545:84;;;34601:18;;:::i;:::-;34545:84;34366:269;34315:320;;;:::o;34641:281::-;34724:27;34746:4;34724:27;:::i;:::-;34716:6;34712:40;34854:6;34842:10;34839:22;34818:18;34806:10;34803:34;34800:62;34797:88;;;34865:18;;:::i;:::-;34797:88;34905:10;34901:2;34894:22;34684:238;34641:281;;:::o;34928:233::-;34967:3;34990:24;35008:5;34990:24;:::i;:::-;34981:33;;35036:66;35029:5;35026:77;35023:103;;;35106:18;;:::i;:::-;35023:103;35153:1;35146:5;35142:13;35135:20;;34928:233;;;:::o;35167:176::-;35199:1;35216:20;35234:1;35216:20;:::i;:::-;35211:25;;35250:20;35268:1;35250:20;:::i;:::-;35245:25;;35289:1;35279:35;;35294:18;;:::i;:::-;35279:35;35335:1;35332;35328:9;35323:14;;35167:176;;;;:::o;35349:180::-;35397:77;35394:1;35387:88;35494:4;35491:1;35484:15;35518:4;35515:1;35508:15;35535:180;35583:77;35580:1;35573:88;35680:4;35677:1;35670:15;35704:4;35701:1;35694:15;35721:180;35769:77;35766:1;35759:88;35866:4;35863:1;35856:15;35890:4;35887:1;35880:15;35907:180;35955:77;35952:1;35945:88;36052:4;36049:1;36042:15;36076:4;36073:1;36066:15;36093:180;36141:77;36138:1;36131:88;36238:4;36235:1;36228:15;36262:4;36259:1;36252:15;36279:180;36327:77;36324:1;36317:88;36424:4;36421:1;36414:15;36448:4;36445:1;36438:15;36465:117;36574:1;36571;36564:12;36588:117;36697:1;36694;36687:12;36711:117;36820:1;36817;36810:12;36834:117;36943:1;36940;36933:12;36957:102;36998:6;37049:2;37045:7;37040:2;37033:5;37029:14;37025:28;37015:38;;36957:102;;;:::o;37065:230::-;37205:34;37201:1;37193:6;37189:14;37182:58;37274:13;37269:2;37261:6;37257:15;37250:38;37065:230;:::o;37301:237::-;37441:34;37437:1;37429:6;37425:14;37418:58;37510:20;37505:2;37497:6;37493:15;37486:45;37301:237;:::o;37544:225::-;37684:34;37680:1;37672:6;37668:14;37661:58;37753:8;37748:2;37740:6;37736:15;37729:33;37544:225;:::o;37775:224::-;37915:34;37911:1;37903:6;37899:14;37892:58;37984:7;37979:2;37971:6;37967:15;37960:32;37775:224;:::o;38005:178::-;38145:30;38141:1;38133:6;38129:14;38122:54;38005:178;:::o;38189:::-;38329:30;38325:1;38317:6;38313:14;38306:54;38189:178;:::o;38373:223::-;38513:34;38509:1;38501:6;38497:14;38490:58;38582:6;38577:2;38569:6;38565:15;38558:31;38373:223;:::o;38602:175::-;38742:27;38738:1;38730:6;38726:14;38719:51;38602:175;:::o;38783:231::-;38923:34;38919:1;38911:6;38907:14;38900:58;38992:14;38987:2;38979:6;38975:15;38968:39;38783:231;:::o;39020:243::-;39160:34;39156:1;39148:6;39144:14;39137:58;39229:26;39224:2;39216:6;39212:15;39205:51;39020:243;:::o;39269:179::-;39409:31;39405:1;39397:6;39393:14;39386:55;39269:179;:::o;39454:243::-;39594:34;39590:1;39582:6;39578:14;39571:58;39663:26;39658:2;39650:6;39646:15;39639:51;39454:243;:::o;39703:229::-;39843:34;39839:1;39831:6;39827:14;39820:58;39912:12;39907:2;39899:6;39895:15;39888:37;39703:229;:::o;39938:228::-;40078:34;40074:1;40066:6;40062:14;40055:58;40147:11;40142:2;40134:6;40130:15;40123:36;39938:228;:::o;40172:182::-;40312:34;40308:1;40300:6;40296:14;40289:58;40172:182;:::o;40360:231::-;40500:34;40496:1;40488:6;40484:14;40477:58;40569:14;40564:2;40556:6;40552:15;40545:39;40360:231;:::o;40597:182::-;40737:34;40733:1;40725:6;40721:14;40714:58;40597:182;:::o;40785:234::-;40925:34;40921:1;40913:6;40909:14;40902:58;40994:17;40989:2;40981:6;40977:15;40970:42;40785:234;:::o;41025:220::-;41165:34;41161:1;41153:6;41149:14;41142:58;41234:3;41229:2;41221:6;41217:15;41210:28;41025:220;:::o;41251:182::-;41391:34;41387:1;41379:6;41375:14;41368:58;41251:182;:::o;41439:236::-;41579:34;41575:1;41567:6;41563:14;41556:58;41648:19;41643:2;41635:6;41631:15;41624:44;41439:236;:::o;41681:231::-;41821:34;41817:1;41809:6;41805:14;41798:58;41890:14;41885:2;41877:6;41873:15;41866:39;41681:231;:::o;41918:181::-;42058:33;42054:1;42046:6;42042:14;42035:57;41918:181;:::o;42105:122::-;42178:24;42196:5;42178:24;:::i;:::-;42171:5;42168:35;42158:63;;42217:1;42214;42207:12;42158:63;42105:122;:::o;42233:116::-;42303:21;42318:5;42303:21;:::i;:::-;42296:5;42293:32;42283:60;;42339:1;42336;42329:12;42283:60;42233:116;:::o;42355:120::-;42427:23;42444:5;42427:23;:::i;:::-;42420:5;42417:34;42407:62;;42465:1;42462;42455:12;42407:62;42355:120;:::o;42481:122::-;42554:24;42572:5;42554:24;:::i;:::-;42547:5;42544:35;42534:63;;42593:1;42590;42583:12;42534:63;42481:122;:::o

Swarm Source

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