POL Price: $0.64418 (+4.28%)
 

Overview

Max Total Supply

500 MOONDIAMONDS

Holders

160

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
MoonshotDiamonds

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 polygonscan.com on 2022-10-06
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

        return super.tokenURI(tokenId);
    }

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

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

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: moondiamonds.sol

// contracts/GameItem.sol

pragma solidity ^0.8.0;





contract MoonshotDiamonds is ERC721URIStorage, Ownable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;
    uint public constant maxPurchase = 10;
    uint public constant maxNFTs = 500;
    uint256 public constant purchasePrice = 10000000000000000000; // 10 MATIC

    constructor() ERC721("MoonshotDiamonds", "MOONDIAMONDS") {}

    function withdraw(address _recipient) public payable onlyOwner {
        payable(_recipient).transfer(address(this).balance);
    }

    function totalSupply() public view returns (uint256) {
        return _tokenIds.current();
    }

    function awardmint(address wallet)
        internal virtual 
        returns (uint256)
    {
        _tokenIds.increment();
        
        uint256 newItemId = _tokenIds.current();
        _mint(wallet, newItemId);
        _setTokenURI(newItemId, string(abi.encodePacked(
                "https://moondiamonds.s3.us-east-2.amazonaws.com/",
                Strings.toString(newItemId),
                ".json"
            )));

        return newItemId;
    }

    function mintDiamonds(uint numberOfTokens) public payable {
        require(numberOfTokens <= maxPurchase, "Can only mint 10 tokens at a time");
        require(_tokenIds.current().add(numberOfTokens) <= maxNFTs, "Purchase would exceed max supply of NFTs");
        require(purchasePrice.mul(numberOfTokens) == msg.value, "Matic value sent is not correct");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            if (_tokenIds.current() < maxNFTs) {
                awardmint(msg.sender);
            }
        }
    }

    function ownerMint(address wallet, uint numberOfTokens) public onlyOwner {
        require(numberOfTokens <= maxPurchase, "Can only mint 10 tokens at a time");
        require(_tokenIds.current().add(numberOfTokens) <= maxNFTs, "Purchase would exceed max supply of NFTs");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            if (_tokenIds.current() < maxNFTs) {
                awardmint(wallet);
            }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":[{"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":"maxNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintDiamonds","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchasePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"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":"_recipient","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601081526020017f4d6f6f6e73686f744469616d6f6e6473000000000000000000000000000000008152506040518060400160405280600c81526020017f4d4f4f4e4449414d4f4e44530000000000000000000000000000000000000000815250816000908051906020019062000096929190620001a6565b508060019080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000256565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b600060028204905060018216806200026f57607f821691505b602082108114156200028657620002856200028c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6132c480620002cb6000396000f3fe6080604052600436106101405760003560e01c806370a08231116100b6578063aa2f0e931161006f578063aa2f0e931461043b578063b88d4fde14610457578063c87b56dd14610480578063defd6c5f146104bd578063e985e9c5146104e8578063f2fde38b1461052557610140565b806370a082311461033d578063715018a61461037a5780638da5cb5b1461039157806395d89b41146103bc578063977b055b146103e7578063a22cb4651461041257610140565b806323b872dd1161010857806323b872dd1461023e57806342842e0e14610267578063484b973c146102905780634e9e1ec6146102b957806351cff8d9146102e45780636352211e1461030057610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea57806318160ddd14610213575b600080fd5b34801561015157600080fd5b5061016c600480360381019061016791906121ee565b61054e565b6040516101799190612696565b60405180910390f35b34801561018e57600080fd5b50610197610630565b6040516101a491906126b1565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf9190612248565b6106c2565b6040516101e1919061262f565b60405180910390f35b3480156101f657600080fd5b50610211600480360381019061020c91906121ae565b610708565b005b34801561021f57600080fd5b50610228610820565b60405161023591906128f3565b60405180910390f35b34801561024a57600080fd5b5061026560048036038101906102609190612098565b610831565b005b34801561027357600080fd5b5061028e60048036038101906102899190612098565b610891565b005b34801561029c57600080fd5b506102b760048036038101906102b291906121ae565b6108b1565b005b3480156102c557600080fd5b506102ce61099e565b6040516102db91906128f3565b60405180910390f35b6102fe60048036038101906102f9919061202b565b6109a4565b005b34801561030c57600080fd5b5061032760048036038101906103229190612248565b6109f6565b604051610334919061262f565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f919061202b565b610aa8565b60405161037191906128f3565b60405180910390f35b34801561038657600080fd5b5061038f610b60565b005b34801561039d57600080fd5b506103a6610b74565b6040516103b3919061262f565b60405180910390f35b3480156103c857600080fd5b506103d1610b9e565b6040516103de91906126b1565b60405180910390f35b3480156103f357600080fd5b506103fc610c30565b60405161040991906128f3565b60405180910390f35b34801561041e57600080fd5b506104396004803603810190610434919061216e565b610c35565b005b61045560048036038101906104509190612248565b610c4b565b005b34801561046357600080fd5b5061047e600480360381019061047991906120eb565b610d8b565b005b34801561048c57600080fd5b506104a760048036038101906104a29190612248565b610ded565b6040516104b491906126b1565b60405180910390f35b3480156104c957600080fd5b506104d2610f00565b6040516104df91906128f3565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190612058565b610f0c565b60405161051c9190612696565b60405180910390f35b34801561053157600080fd5b5061054c6004803603810190610547919061202b565b610fa0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061061957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610629575061062882611024565b5b9050919050565b60606000805461063f90612b72565b80601f016020809104026020016040519081016040528092919081815260200182805461066b90612b72565b80156106b85780601f1061068d576101008083540402835291602001916106b8565b820191906000526020600020905b81548152906001019060200180831161069b57829003601f168201915b5050505050905090565b60006106cd8261108e565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610713826109f6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077b90612893565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107a36110d9565b73ffffffffffffffffffffffffffffffffffffffff1614806107d257506107d1816107cc6110d9565b610f0c565b5b610811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080890612813565b60405180910390fd5b61081b83836110e1565b505050565b600061082c600861119a565b905090565b61084261083c6110d9565b826111a8565b610881576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610878906128b3565b60405180910390fd5b61088c83838361123d565b505050565b6108ac83838360405180602001604052806000815250610d8b565b505050565b6108b96114a4565b600a8111156108fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f4906128d3565b60405180910390fd5b6101f461091c8261090e600861119a565b61152290919063ffffffff16565b111561095d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610954906126f3565b60405180910390fd5b60005b81811015610999576101f4610975600861119a565b10156109865761098483611538565b505b808061099190612bd5565b915050610960565b505050565b6101f481565b6109ac6114a4565b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156109f2573d6000803e3d6000fd5b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9690612873565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b10906127d3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b686114a4565b610b726000611596565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610bad90612b72565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd990612b72565b8015610c265780601f10610bfb57610100808354040283529160200191610c26565b820191906000526020600020905b815481529060010190602001808311610c0957829003601f168201915b5050505050905090565b600a81565b610c47610c406110d9565b838361165c565b5050565b600a811115610c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c86906128d3565b60405180910390fd5b6101f4610cae82610ca0600861119a565b61152290919063ffffffff16565b1115610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce6906126f3565b60405180910390fd5b34610d0b82678ac7230489e800006117c990919063ffffffff16565b14610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d42906127b3565b60405180910390fd5b60005b81811015610d87576101f4610d63600861119a565b1015610d7457610d7233611538565b505b8080610d7f90612bd5565b915050610d4e565b5050565b610d9c610d966110d9565b836111a8565b610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd2906128b3565b60405180910390fd5b610de7848484846117df565b50505050565b6060610df88261108e565b6000600660008481526020019081526020016000208054610e1890612b72565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4490612b72565b8015610e915780601f10610e6657610100808354040283529160200191610e91565b820191906000526020600020905b815481529060010190602001808311610e7457829003601f168201915b505050505090506000610ea261183b565b9050600081511415610eb8578192505050610efb565b600082511115610eed578082604051602001610ed59291906125de565b60405160208183030381529060405292505050610efb565b610ef684611852565b925050505b919050565b678ac7230489e8000081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610fa86114a4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90612713565b60405180910390fd5b61102181611596565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611097816118ba565b6110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90612873565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611154836109f6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000806111b4836109f6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806111f657506111f58185610f0c565b5b8061123457508373ffffffffffffffffffffffffffffffffffffffff1661121c846106c2565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661125d826109f6565b73ffffffffffffffffffffffffffffffffffffffff16146112b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112aa90612733565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90612773565b60405180910390fd5b61132e838383611926565b6113396000826110e1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113899190612a88565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113e091906129a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461149f83838361192b565b505050565b6114ac6110d9565b73ffffffffffffffffffffffffffffffffffffffff166114ca610b74565b73ffffffffffffffffffffffffffffffffffffffff1614611520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151790612853565b60405180910390fd5b565b6000818361153091906129a7565b905092915050565b60006115446008611930565b6000611550600861119a565b905061155c8382611946565b61158d8161156983611b20565b6040516020016115799190612602565b604051602081830303815290604052611c81565b80915050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c290612793565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117bc9190612696565b60405180910390a3505050565b600081836117d79190612a2e565b905092915050565b6117ea84848461123d565b6117f684848484611cf5565b611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c906126d3565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061185d8261108e565b600061186761183b565b9050600081511161188757604051806020016040528060008152506118b2565b8061189184611b20565b6040516020016118a29291906125de565b6040516020818303038152906040525b915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ad90612833565b60405180910390fd5b6119bf816118ba565b156119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f690612753565b60405180910390fd5b611a0b60008383611926565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a5b91906129a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b1c6000838361192b565b5050565b60606000821415611b68576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c7c565b600082905060005b60008214611b9a578080611b8390612bd5565b915050600a82611b9391906129fd565b9150611b70565b60008167ffffffffffffffff811115611bb657611bb5612d0b565b5b6040519080825280601f01601f191660200182016040528015611be85781602001600182028036833780820191505090505b5090505b60008514611c7557600182611c019190612a88565b9150600a85611c109190612c1e565b6030611c1c91906129a7565b60f81b818381518110611c3257611c31612cdc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c6e91906129fd565b9450611bec565b8093505050505b919050565b611c8a826118ba565b611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc0906127f3565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611cf0929190611eaf565b505050565b6000611d168473ffffffffffffffffffffffffffffffffffffffff16611e8c565b15611e7f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d3f6110d9565b8786866040518563ffffffff1660e01b8152600401611d61949392919061264a565b602060405180830381600087803b158015611d7b57600080fd5b505af1925050508015611dac57506040513d601f19601f82011682018060405250810190611da9919061221b565b60015b611e2f573d8060008114611ddc576040519150601f19603f3d011682016040523d82523d6000602084013e611de1565b606091505b50600081511415611e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1e906126d3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e84565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611ebb90612b72565b90600052602060002090601f016020900481019282611edd5760008555611f24565b82601f10611ef657805160ff1916838001178555611f24565b82800160010185558215611f24579182015b82811115611f23578251825591602001919060010190611f08565b5b509050611f319190611f35565b5090565b5b80821115611f4e576000816000905550600101611f36565b5090565b6000611f65611f6084612933565b61290e565b905082815260208101848484011115611f8157611f80612d3f565b5b611f8c848285612b30565b509392505050565b600081359050611fa381613232565b92915050565b600081359050611fb881613249565b92915050565b600081359050611fcd81613260565b92915050565b600081519050611fe281613260565b92915050565b600082601f830112611ffd57611ffc612d3a565b5b813561200d848260208601611f52565b91505092915050565b60008135905061202581613277565b92915050565b60006020828403121561204157612040612d49565b5b600061204f84828501611f94565b91505092915050565b6000806040838503121561206f5761206e612d49565b5b600061207d85828601611f94565b925050602061208e85828601611f94565b9150509250929050565b6000806000606084860312156120b1576120b0612d49565b5b60006120bf86828701611f94565b93505060206120d086828701611f94565b92505060406120e186828701612016565b9150509250925092565b6000806000806080858703121561210557612104612d49565b5b600061211387828801611f94565b945050602061212487828801611f94565b935050604061213587828801612016565b925050606085013567ffffffffffffffff81111561215657612155612d44565b5b61216287828801611fe8565b91505092959194509250565b6000806040838503121561218557612184612d49565b5b600061219385828601611f94565b92505060206121a485828601611fa9565b9150509250929050565b600080604083850312156121c5576121c4612d49565b5b60006121d385828601611f94565b92505060206121e485828601612016565b9150509250929050565b60006020828403121561220457612203612d49565b5b600061221284828501611fbe565b91505092915050565b60006020828403121561223157612230612d49565b5b600061223f84828501611fd3565b91505092915050565b60006020828403121561225e5761225d612d49565b5b600061226c84828501612016565b91505092915050565b61227e81612abc565b82525050565b61228d81612ace565b82525050565b600061229e82612964565b6122a8818561297a565b93506122b8818560208601612b3f565b6122c181612d4e565b840191505092915050565b60006122d78261296f565b6122e1818561298b565b93506122f1818560208601612b3f565b6122fa81612d4e565b840191505092915050565b60006123108261296f565b61231a818561299c565b935061232a818560208601612b3f565b80840191505092915050565b600061234360328361298b565b915061234e82612d5f565b604082019050919050565b600061236660288361298b565b915061237182612dae565b604082019050919050565b600061238960268361298b565b915061239482612dfd565b604082019050919050565b60006123ac60258361298b565b91506123b782612e4c565b604082019050919050565b60006123cf601c8361298b565b91506123da82612e9b565b602082019050919050565b60006123f260248361298b565b91506123fd82612ec4565b604082019050919050565b600061241560198361298b565b915061242082612f13565b602082019050919050565b600061243860308361299c565b915061244382612f3c565b603082019050919050565b600061245b601f8361298b565b915061246682612f8b565b602082019050919050565b600061247e60298361298b565b915061248982612fb4565b604082019050919050565b60006124a1602e8361298b565b91506124ac82613003565b604082019050919050565b60006124c4603e8361298b565b91506124cf82613052565b604082019050919050565b60006124e760208361298b565b91506124f2826130a1565b602082019050919050565b600061250a60058361299c565b9150612515826130ca565b600582019050919050565b600061252d60208361298b565b9150612538826130f3565b602082019050919050565b600061255060188361298b565b915061255b8261311c565b602082019050919050565b600061257360218361298b565b915061257e82613145565b604082019050919050565b6000612596602e8361298b565b91506125a182613194565b604082019050919050565b60006125b960218361298b565b91506125c4826131e3565b604082019050919050565b6125d881612b26565b82525050565b60006125ea8285612305565b91506125f68284612305565b91508190509392505050565b600061260d8261242b565b91506126198284612305565b9150612624826124fd565b915081905092915050565b60006020820190506126446000830184612275565b92915050565b600060808201905061265f6000830187612275565b61266c6020830186612275565b61267960408301856125cf565b818103606083015261268b8184612293565b905095945050505050565b60006020820190506126ab6000830184612284565b92915050565b600060208201905081810360008301526126cb81846122cc565b905092915050565b600060208201905081810360008301526126ec81612336565b9050919050565b6000602082019050818103600083015261270c81612359565b9050919050565b6000602082019050818103600083015261272c8161237c565b9050919050565b6000602082019050818103600083015261274c8161239f565b9050919050565b6000602082019050818103600083015261276c816123c2565b9050919050565b6000602082019050818103600083015261278c816123e5565b9050919050565b600060208201905081810360008301526127ac81612408565b9050919050565b600060208201905081810360008301526127cc8161244e565b9050919050565b600060208201905081810360008301526127ec81612471565b9050919050565b6000602082019050818103600083015261280c81612494565b9050919050565b6000602082019050818103600083015261282c816124b7565b9050919050565b6000602082019050818103600083015261284c816124da565b9050919050565b6000602082019050818103600083015261286c81612520565b9050919050565b6000602082019050818103600083015261288c81612543565b9050919050565b600060208201905081810360008301526128ac81612566565b9050919050565b600060208201905081810360008301526128cc81612589565b9050919050565b600060208201905081810360008301526128ec816125ac565b9050919050565b600060208201905061290860008301846125cf565b92915050565b6000612918612929565b90506129248282612ba4565b919050565b6000604051905090565b600067ffffffffffffffff82111561294e5761294d612d0b565b5b61295782612d4e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006129b282612b26565b91506129bd83612b26565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129f2576129f1612c4f565b5b828201905092915050565b6000612a0882612b26565b9150612a1383612b26565b925082612a2357612a22612c7e565b5b828204905092915050565b6000612a3982612b26565b9150612a4483612b26565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a7d57612a7c612c4f565b5b828202905092915050565b6000612a9382612b26565b9150612a9e83612b26565b925082821015612ab157612ab0612c4f565b5b828203905092915050565b6000612ac782612b06565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612b5d578082015181840152602081019050612b42565b83811115612b6c576000848401525b50505050565b60006002820490506001821680612b8a57607f821691505b60208210811415612b9e57612b9d612cad565b5b50919050565b612bad82612d4e565b810181811067ffffffffffffffff82111715612bcc57612bcb612d0b565b5b80604052505050565b6000612be082612b26565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c1357612c12612c4f565b5b600182019050919050565b6000612c2982612b26565b9150612c3483612b26565b925082612c4457612c43612c7e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66204e465473000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f68747470733a2f2f6d6f6f6e6469616d6f6e64732e73332e75732d656173742d60008201527f322e616d617a6f6e6177732e636f6d2f00000000000000000000000000000000602082015250565b7f4d617469632076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b61323b81612abc565b811461324657600080fd5b50565b61325281612ace565b811461325d57600080fd5b50565b61326981612ada565b811461327457600080fd5b50565b61328081612b26565b811461328b57600080fd5b5056fea2646970667358221220788083649fe7694b26ac9f68c924c9c80761bc2c3aebf23cafd094f7b0873db964736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101405760003560e01c806370a08231116100b6578063aa2f0e931161006f578063aa2f0e931461043b578063b88d4fde14610457578063c87b56dd14610480578063defd6c5f146104bd578063e985e9c5146104e8578063f2fde38b1461052557610140565b806370a082311461033d578063715018a61461037a5780638da5cb5b1461039157806395d89b41146103bc578063977b055b146103e7578063a22cb4651461041257610140565b806323b872dd1161010857806323b872dd1461023e57806342842e0e14610267578063484b973c146102905780634e9e1ec6146102b957806351cff8d9146102e45780636352211e1461030057610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea57806318160ddd14610213575b600080fd5b34801561015157600080fd5b5061016c600480360381019061016791906121ee565b61054e565b6040516101799190612696565b60405180910390f35b34801561018e57600080fd5b50610197610630565b6040516101a491906126b1565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf9190612248565b6106c2565b6040516101e1919061262f565b60405180910390f35b3480156101f657600080fd5b50610211600480360381019061020c91906121ae565b610708565b005b34801561021f57600080fd5b50610228610820565b60405161023591906128f3565b60405180910390f35b34801561024a57600080fd5b5061026560048036038101906102609190612098565b610831565b005b34801561027357600080fd5b5061028e60048036038101906102899190612098565b610891565b005b34801561029c57600080fd5b506102b760048036038101906102b291906121ae565b6108b1565b005b3480156102c557600080fd5b506102ce61099e565b6040516102db91906128f3565b60405180910390f35b6102fe60048036038101906102f9919061202b565b6109a4565b005b34801561030c57600080fd5b5061032760048036038101906103229190612248565b6109f6565b604051610334919061262f565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f919061202b565b610aa8565b60405161037191906128f3565b60405180910390f35b34801561038657600080fd5b5061038f610b60565b005b34801561039d57600080fd5b506103a6610b74565b6040516103b3919061262f565b60405180910390f35b3480156103c857600080fd5b506103d1610b9e565b6040516103de91906126b1565b60405180910390f35b3480156103f357600080fd5b506103fc610c30565b60405161040991906128f3565b60405180910390f35b34801561041e57600080fd5b506104396004803603810190610434919061216e565b610c35565b005b61045560048036038101906104509190612248565b610c4b565b005b34801561046357600080fd5b5061047e600480360381019061047991906120eb565b610d8b565b005b34801561048c57600080fd5b506104a760048036038101906104a29190612248565b610ded565b6040516104b491906126b1565b60405180910390f35b3480156104c957600080fd5b506104d2610f00565b6040516104df91906128f3565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190612058565b610f0c565b60405161051c9190612696565b60405180910390f35b34801561053157600080fd5b5061054c6004803603810190610547919061202b565b610fa0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061061957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610629575061062882611024565b5b9050919050565b60606000805461063f90612b72565b80601f016020809104026020016040519081016040528092919081815260200182805461066b90612b72565b80156106b85780601f1061068d576101008083540402835291602001916106b8565b820191906000526020600020905b81548152906001019060200180831161069b57829003601f168201915b5050505050905090565b60006106cd8261108e565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610713826109f6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077b90612893565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107a36110d9565b73ffffffffffffffffffffffffffffffffffffffff1614806107d257506107d1816107cc6110d9565b610f0c565b5b610811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080890612813565b60405180910390fd5b61081b83836110e1565b505050565b600061082c600861119a565b905090565b61084261083c6110d9565b826111a8565b610881576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610878906128b3565b60405180910390fd5b61088c83838361123d565b505050565b6108ac83838360405180602001604052806000815250610d8b565b505050565b6108b96114a4565b600a8111156108fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f4906128d3565b60405180910390fd5b6101f461091c8261090e600861119a565b61152290919063ffffffff16565b111561095d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610954906126f3565b60405180910390fd5b60005b81811015610999576101f4610975600861119a565b10156109865761098483611538565b505b808061099190612bd5565b915050610960565b505050565b6101f481565b6109ac6114a4565b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156109f2573d6000803e3d6000fd5b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9690612873565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b10906127d3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b686114a4565b610b726000611596565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610bad90612b72565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd990612b72565b8015610c265780601f10610bfb57610100808354040283529160200191610c26565b820191906000526020600020905b815481529060010190602001808311610c0957829003601f168201915b5050505050905090565b600a81565b610c47610c406110d9565b838361165c565b5050565b600a811115610c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c86906128d3565b60405180910390fd5b6101f4610cae82610ca0600861119a565b61152290919063ffffffff16565b1115610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce6906126f3565b60405180910390fd5b34610d0b82678ac7230489e800006117c990919063ffffffff16565b14610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d42906127b3565b60405180910390fd5b60005b81811015610d87576101f4610d63600861119a565b1015610d7457610d7233611538565b505b8080610d7f90612bd5565b915050610d4e565b5050565b610d9c610d966110d9565b836111a8565b610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd2906128b3565b60405180910390fd5b610de7848484846117df565b50505050565b6060610df88261108e565b6000600660008481526020019081526020016000208054610e1890612b72565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4490612b72565b8015610e915780601f10610e6657610100808354040283529160200191610e91565b820191906000526020600020905b815481529060010190602001808311610e7457829003601f168201915b505050505090506000610ea261183b565b9050600081511415610eb8578192505050610efb565b600082511115610eed578082604051602001610ed59291906125de565b60405160208183030381529060405292505050610efb565b610ef684611852565b925050505b919050565b678ac7230489e8000081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610fa86114a4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90612713565b60405180910390fd5b61102181611596565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611097816118ba565b6110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90612873565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611154836109f6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000806111b4836109f6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806111f657506111f58185610f0c565b5b8061123457508373ffffffffffffffffffffffffffffffffffffffff1661121c846106c2565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661125d826109f6565b73ffffffffffffffffffffffffffffffffffffffff16146112b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112aa90612733565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90612773565b60405180910390fd5b61132e838383611926565b6113396000826110e1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113899190612a88565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113e091906129a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461149f83838361192b565b505050565b6114ac6110d9565b73ffffffffffffffffffffffffffffffffffffffff166114ca610b74565b73ffffffffffffffffffffffffffffffffffffffff1614611520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151790612853565b60405180910390fd5b565b6000818361153091906129a7565b905092915050565b60006115446008611930565b6000611550600861119a565b905061155c8382611946565b61158d8161156983611b20565b6040516020016115799190612602565b604051602081830303815290604052611c81565b80915050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c290612793565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117bc9190612696565b60405180910390a3505050565b600081836117d79190612a2e565b905092915050565b6117ea84848461123d565b6117f684848484611cf5565b611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c906126d3565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061185d8261108e565b600061186761183b565b9050600081511161188757604051806020016040528060008152506118b2565b8061189184611b20565b6040516020016118a29291906125de565b6040516020818303038152906040525b915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ad90612833565b60405180910390fd5b6119bf816118ba565b156119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f690612753565b60405180910390fd5b611a0b60008383611926565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a5b91906129a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b1c6000838361192b565b5050565b60606000821415611b68576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c7c565b600082905060005b60008214611b9a578080611b8390612bd5565b915050600a82611b9391906129fd565b9150611b70565b60008167ffffffffffffffff811115611bb657611bb5612d0b565b5b6040519080825280601f01601f191660200182016040528015611be85781602001600182028036833780820191505090505b5090505b60008514611c7557600182611c019190612a88565b9150600a85611c109190612c1e565b6030611c1c91906129a7565b60f81b818381518110611c3257611c31612cdc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c6e91906129fd565b9450611bec565b8093505050505b919050565b611c8a826118ba565b611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc0906127f3565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611cf0929190611eaf565b505050565b6000611d168473ffffffffffffffffffffffffffffffffffffffff16611e8c565b15611e7f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d3f6110d9565b8786866040518563ffffffff1660e01b8152600401611d61949392919061264a565b602060405180830381600087803b158015611d7b57600080fd5b505af1925050508015611dac57506040513d601f19601f82011682018060405250810190611da9919061221b565b60015b611e2f573d8060008114611ddc576040519150601f19603f3d011682016040523d82523d6000602084013e611de1565b606091505b50600081511415611e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1e906126d3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e84565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611ebb90612b72565b90600052602060002090601f016020900481019282611edd5760008555611f24565b82601f10611ef657805160ff1916838001178555611f24565b82800160010185558215611f24579182015b82811115611f23578251825591602001919060010190611f08565b5b509050611f319190611f35565b5090565b5b80821115611f4e576000816000905550600101611f36565b5090565b6000611f65611f6084612933565b61290e565b905082815260208101848484011115611f8157611f80612d3f565b5b611f8c848285612b30565b509392505050565b600081359050611fa381613232565b92915050565b600081359050611fb881613249565b92915050565b600081359050611fcd81613260565b92915050565b600081519050611fe281613260565b92915050565b600082601f830112611ffd57611ffc612d3a565b5b813561200d848260208601611f52565b91505092915050565b60008135905061202581613277565b92915050565b60006020828403121561204157612040612d49565b5b600061204f84828501611f94565b91505092915050565b6000806040838503121561206f5761206e612d49565b5b600061207d85828601611f94565b925050602061208e85828601611f94565b9150509250929050565b6000806000606084860312156120b1576120b0612d49565b5b60006120bf86828701611f94565b93505060206120d086828701611f94565b92505060406120e186828701612016565b9150509250925092565b6000806000806080858703121561210557612104612d49565b5b600061211387828801611f94565b945050602061212487828801611f94565b935050604061213587828801612016565b925050606085013567ffffffffffffffff81111561215657612155612d44565b5b61216287828801611fe8565b91505092959194509250565b6000806040838503121561218557612184612d49565b5b600061219385828601611f94565b92505060206121a485828601611fa9565b9150509250929050565b600080604083850312156121c5576121c4612d49565b5b60006121d385828601611f94565b92505060206121e485828601612016565b9150509250929050565b60006020828403121561220457612203612d49565b5b600061221284828501611fbe565b91505092915050565b60006020828403121561223157612230612d49565b5b600061223f84828501611fd3565b91505092915050565b60006020828403121561225e5761225d612d49565b5b600061226c84828501612016565b91505092915050565b61227e81612abc565b82525050565b61228d81612ace565b82525050565b600061229e82612964565b6122a8818561297a565b93506122b8818560208601612b3f565b6122c181612d4e565b840191505092915050565b60006122d78261296f565b6122e1818561298b565b93506122f1818560208601612b3f565b6122fa81612d4e565b840191505092915050565b60006123108261296f565b61231a818561299c565b935061232a818560208601612b3f565b80840191505092915050565b600061234360328361298b565b915061234e82612d5f565b604082019050919050565b600061236660288361298b565b915061237182612dae565b604082019050919050565b600061238960268361298b565b915061239482612dfd565b604082019050919050565b60006123ac60258361298b565b91506123b782612e4c565b604082019050919050565b60006123cf601c8361298b565b91506123da82612e9b565b602082019050919050565b60006123f260248361298b565b91506123fd82612ec4565b604082019050919050565b600061241560198361298b565b915061242082612f13565b602082019050919050565b600061243860308361299c565b915061244382612f3c565b603082019050919050565b600061245b601f8361298b565b915061246682612f8b565b602082019050919050565b600061247e60298361298b565b915061248982612fb4565b604082019050919050565b60006124a1602e8361298b565b91506124ac82613003565b604082019050919050565b60006124c4603e8361298b565b91506124cf82613052565b604082019050919050565b60006124e760208361298b565b91506124f2826130a1565b602082019050919050565b600061250a60058361299c565b9150612515826130ca565b600582019050919050565b600061252d60208361298b565b9150612538826130f3565b602082019050919050565b600061255060188361298b565b915061255b8261311c565b602082019050919050565b600061257360218361298b565b915061257e82613145565b604082019050919050565b6000612596602e8361298b565b91506125a182613194565b604082019050919050565b60006125b960218361298b565b91506125c4826131e3565b604082019050919050565b6125d881612b26565b82525050565b60006125ea8285612305565b91506125f68284612305565b91508190509392505050565b600061260d8261242b565b91506126198284612305565b9150612624826124fd565b915081905092915050565b60006020820190506126446000830184612275565b92915050565b600060808201905061265f6000830187612275565b61266c6020830186612275565b61267960408301856125cf565b818103606083015261268b8184612293565b905095945050505050565b60006020820190506126ab6000830184612284565b92915050565b600060208201905081810360008301526126cb81846122cc565b905092915050565b600060208201905081810360008301526126ec81612336565b9050919050565b6000602082019050818103600083015261270c81612359565b9050919050565b6000602082019050818103600083015261272c8161237c565b9050919050565b6000602082019050818103600083015261274c8161239f565b9050919050565b6000602082019050818103600083015261276c816123c2565b9050919050565b6000602082019050818103600083015261278c816123e5565b9050919050565b600060208201905081810360008301526127ac81612408565b9050919050565b600060208201905081810360008301526127cc8161244e565b9050919050565b600060208201905081810360008301526127ec81612471565b9050919050565b6000602082019050818103600083015261280c81612494565b9050919050565b6000602082019050818103600083015261282c816124b7565b9050919050565b6000602082019050818103600083015261284c816124da565b9050919050565b6000602082019050818103600083015261286c81612520565b9050919050565b6000602082019050818103600083015261288c81612543565b9050919050565b600060208201905081810360008301526128ac81612566565b9050919050565b600060208201905081810360008301526128cc81612589565b9050919050565b600060208201905081810360008301526128ec816125ac565b9050919050565b600060208201905061290860008301846125cf565b92915050565b6000612918612929565b90506129248282612ba4565b919050565b6000604051905090565b600067ffffffffffffffff82111561294e5761294d612d0b565b5b61295782612d4e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006129b282612b26565b91506129bd83612b26565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129f2576129f1612c4f565b5b828201905092915050565b6000612a0882612b26565b9150612a1383612b26565b925082612a2357612a22612c7e565b5b828204905092915050565b6000612a3982612b26565b9150612a4483612b26565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a7d57612a7c612c4f565b5b828202905092915050565b6000612a9382612b26565b9150612a9e83612b26565b925082821015612ab157612ab0612c4f565b5b828203905092915050565b6000612ac782612b06565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612b5d578082015181840152602081019050612b42565b83811115612b6c576000848401525b50505050565b60006002820490506001821680612b8a57607f821691505b60208210811415612b9e57612b9d612cad565b5b50919050565b612bad82612d4e565b810181811067ffffffffffffffff82111715612bcc57612bcb612d0b565b5b80604052505050565b6000612be082612b26565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c1357612c12612c4f565b5b600182019050919050565b6000612c2982612b26565b9150612c3483612b26565b925082612c4457612c43612c7e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66204e465473000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f68747470733a2f2f6d6f6f6e6469616d6f6e64732e73332e75732d656173742d60008201527f322e616d617a6f6e6177732e636f6d2f00000000000000000000000000000000602082015250565b7f4d617469632076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b61323b81612abc565b811461324657600080fd5b50565b61325281612ace565b811461325d57600080fd5b50565b61326981612ada565b811461327457600080fd5b50565b61328081612b26565b811461328b57600080fd5b5056fea2646970667358221220788083649fe7694b26ac9f68c924c9c80761bc2c3aebf23cafd094f7b0873db964736f6c63430008070033

Deployed Bytecode Sourcemap

48479:2151:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26202:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27129:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28642:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28159:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49031:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29342:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29749:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50172:455;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48701:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48890:133;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26840:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26571:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6738:103;;;;;;;;;;;;;:::i;:::-;;6090:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27298:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48657:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28885:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49619:545;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30005:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39910:624;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48742:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29111:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6996:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26202:305;26304:4;26356:25;26341:40;;;:11;:40;;;;:105;;;;26413:33;26398:48;;;:11;:48;;;;26341:105;:158;;;;26463:36;26487:11;26463:23;:36::i;:::-;26341:158;26321:178;;26202:305;;;:::o;27129:100::-;27183:13;27216:5;27209:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27129:100;:::o;28642:171::-;28718:7;28738:23;28753:7;28738:14;:23::i;:::-;28781:15;:24;28797:7;28781:24;;;;;;;;;;;;;;;;;;;;;28774:31;;28642:171;;;:::o;28159:417::-;28240:13;28256:23;28271:7;28256:14;:23::i;:::-;28240:39;;28304:5;28298:11;;:2;:11;;;;28290:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28398:5;28382:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28407:37;28424:5;28431:12;:10;:12::i;:::-;28407:16;:37::i;:::-;28382:62;28360:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;28547:21;28556:2;28560:7;28547:8;:21::i;:::-;28229:347;28159:417;;:::o;49031:98::-;49075:7;49102:19;:9;:17;:19::i;:::-;49095:26;;49031:98;:::o;29342:336::-;29537:41;29556:12;:10;:12::i;:::-;29570:7;29537:18;:41::i;:::-;29529:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;29642:28;29652:4;29658:2;29662:7;29642:9;:28::i;:::-;29342:336;;;:::o;29749:185::-;29887:39;29904:4;29910:2;29914:7;29887:39;;;;;;;;;;;;:16;:39::i;:::-;29749:185;;;:::o;50172:455::-;5976:13;:11;:13::i;:::-;48692:2:::1;50264:14;:29;;50256:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;48732:3;50350:39;50374:14;50350:19;:9;:17;:19::i;:::-;:23;;:39;;;;:::i;:::-;:50;;50342:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;50470:6;50466:154;50486:14;50482:1;:18;50466:154;;;48732:3;50526:19;:9;:17;:19::i;:::-;:29;50522:87;;;50576:17;50586:6;50576:9;:17::i;:::-;;50522:87;50502:3;;;;;:::i;:::-;;;;50466:154;;;;50172:455:::0;;:::o;48701:34::-;48732:3;48701:34;:::o;48890:133::-;5976:13;:11;:13::i;:::-;48972:10:::1;48964:28;;:51;48993:21;48964:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48890:133:::0;:::o;26840:222::-;26912:7;26932:13;26948:7;:16;26956:7;26948:16;;;;;;;;;;;;;;;;;;;;;26932:32;;27000:1;26983:19;;:5;:19;;;;26975:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;27049:5;27042:12;;;26840:222;;;:::o;26571:207::-;26643:7;26688:1;26671:19;;:5;:19;;;;26663:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26754:9;:16;26764:5;26754:16;;;;;;;;;;;;;;;;26747:23;;26571:207;;;:::o;6738:103::-;5976:13;:11;:13::i;:::-;6803:30:::1;6830:1;6803:18;:30::i;:::-;6738:103::o:0;6090:87::-;6136:7;6163:6;;;;;;;;;;;6156:13;;6090:87;:::o;27298:104::-;27354:13;27387:7;27380:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27298:104;:::o;48657:37::-;48692:2;48657:37;:::o;28885:155::-;28980:52;28999:12;:10;:12::i;:::-;29013:8;29023;28980:18;:52::i;:::-;28885:155;;:::o;49619:545::-;48692:2;49696:14;:29;;49688:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;48732:3;49782:39;49806:14;49782:19;:9;:17;:19::i;:::-;:23;;:39;;;;:::i;:::-;:50;;49774:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;49933:9;49896:33;49914:14;48782:20;49896:17;;:33;;;;:::i;:::-;:46;49888:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;50003:6;49999:158;50019:14;50015:1;:18;49999:158;;;48732:3;50059:19;:9;:17;:19::i;:::-;:29;50055:91;;;50109:21;50119:10;50109:9;:21::i;:::-;;50055:91;50035:3;;;;;:::i;:::-;;;;49999:158;;;;49619:545;:::o;30005:323::-;30179:41;30198:12;:10;:12::i;:::-;30212:7;30179:18;:41::i;:::-;30171:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;30282:38;30296:4;30302:2;30306:7;30315:4;30282:13;:38::i;:::-;30005:323;;;;:::o;39910:624::-;39983:13;40009:23;40024:7;40009:14;:23::i;:::-;40045;40071:10;:19;40082:7;40071:19;;;;;;;;;;;40045:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40101:18;40122:10;:8;:10::i;:::-;40101:31;;40230:1;40214:4;40208:18;:23;40204:72;;;40255:9;40248:16;;;;;;40204:72;40406:1;40386:9;40380:23;:27;40376:108;;;40455:4;40461:9;40438:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40424:48;;;;;;40376:108;40503:23;40518:7;40503:14;:23::i;:::-;40496:30;;;;39910:624;;;;:::o;48742:60::-;48782:20;48742:60;:::o;29111:164::-;29208:4;29232:18;:25;29251:5;29232:25;;;;;;;;;;;;;;;:35;29258:8;29232:35;;;;;;;;;;;;;;;;;;;;;;;;;29225:42;;29111:164;;;;:::o;6996:201::-;5976:13;:11;:13::i;:::-;7105:1:::1;7085:22;;:8;:22;;;;7077:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7161:28;7180:8;7161:18;:28::i;:::-;6996:201:::0;:::o;18944:157::-;19029:4;19068:25;19053:40;;;:11;:40;;;;19046:47;;18944:157;;;:::o;36617:135::-;36699:16;36707:7;36699;:16::i;:::-;36691:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;36617:135;:::o;4641:98::-;4694:7;4721:10;4714:17;;4641:98;:::o;35896:174::-;35998:2;35971:15;:24;35987:7;35971:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36054:7;36050:2;36016:46;;36025:23;36040:7;36025:14;:23::i;:::-;36016:46;;;;;;;;;;;;35896:174;;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;32129:264::-;32222:4;32239:13;32255:23;32270:7;32255:14;:23::i;:::-;32239:39;;32308:5;32297:16;;:7;:16;;;:52;;;;32317:32;32334:5;32341:7;32317:16;:32::i;:::-;32297:52;:87;;;;32377:7;32353:31;;:20;32365:7;32353:11;:20::i;:::-;:31;;;32297:87;32289:96;;;32129:264;;;;:::o;35152:625::-;35311:4;35284:31;;:23;35299:7;35284:14;:23::i;:::-;:31;;;35276:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35390:1;35376:16;;:2;:16;;;;35368:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35446:39;35467:4;35473:2;35477:7;35446:20;:39::i;:::-;35550:29;35567:1;35571:7;35550:8;:29::i;:::-;35611:1;35592:9;:15;35602:4;35592:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35640:1;35623:9;:13;35633:2;35623:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35671:2;35652:7;:16;35660:7;35652:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35710:7;35706:2;35691:27;;35700:4;35691:27;;;;;;;;;;;;35731:38;35751:4;35757:2;35761:7;35731:19;:38::i;:::-;35152:625;;;:::o;6255:132::-;6330:12;:10;:12::i;:::-;6319:23;;:7;:5;:7::i;:::-;:23;;;6311:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6255:132::o;44221:98::-;44279:7;44310:1;44306;:5;;;;:::i;:::-;44299:12;;44221:98;;;;:::o;49137:474::-;49217:7;49242:21;:9;:19;:21::i;:::-;49284:17;49304:19;:9;:17;:19::i;:::-;49284:39;;49334:24;49340:6;49348:9;49334:5;:24::i;:::-;49369:205;49382:9;49504:27;49521:9;49504:16;:27::i;:::-;49400:172;;;;;;;;:::i;:::-;;;;;;;;;;;;;49369:12;:205::i;:::-;49594:9;49587:16;;;49137:474;;;:::o;7357:191::-;7431:16;7450:6;;;;;;;;;;;7431:25;;7476:8;7467:6;;:17;;;;;;;;;;;;;;;;;;7531:8;7500:40;;7521:8;7500:40;;;;;;;;;;;;7420:128;7357:191;:::o;36213:315::-;36368:8;36359:17;;:5;:17;;;;36351:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36455:8;36417:18;:25;36436:5;36417:25;;;;;;;;;;;;;;;:35;36443:8;36417:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36501:8;36479:41;;36494:5;36479:41;;;36511:8;36479:41;;;;;;:::i;:::-;;;;;;;;36213:315;;;:::o;44959:98::-;45017:7;45048:1;45044;:5;;;;:::i;:::-;45037:12;;44959:98;;;;:::o;31209:313::-;31365:28;31375:4;31381:2;31385:7;31365:9;:28::i;:::-;31412:47;31435:4;31441:2;31445:7;31454:4;31412:22;:47::i;:::-;31404:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;31209:313;;;;:::o;28003:94::-;28054:13;28080:9;;;;;;;;;;;;;;28003:94;:::o;27473:281::-;27546:13;27572:23;27587:7;27572:14;:23::i;:::-;27608:21;27632:10;:8;:10::i;:::-;27608:34;;27684:1;27666:7;27660:21;:25;:86;;;;;;;;;;;;;;;;;27712:7;27721:18;:7;:16;:18::i;:::-;27695:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27660:86;27653:93;;;27473:281;;;:::o;31835:127::-;31900:4;31952:1;31924:30;;:7;:16;31932:7;31924:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31917:37;;31835:127;;;:::o;38741:126::-;;;;:::o;39252:125::-;;;;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;33727:439::-;33821:1;33807:16;;:2;:16;;;;33799:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33880:16;33888:7;33880;:16::i;:::-;33879:17;33871:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33942:45;33971:1;33975:2;33979:7;33942:20;:45::i;:::-;34017:1;34000:9;:13;34010:2;34000:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34048:2;34029:7;:16;34037:7;34029:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34093:7;34089:2;34068:33;;34085:1;34068:33;;;;;;;;;;;;34114:44;34142:1;34146:2;34150:7;34114:19;:44::i;:::-;33727:439;;:::o;1895:723::-;1951:13;2181:1;2172:5;:10;2168:53;;;2199:10;;;;;;;;;;;;;;;;;;;;;2168:53;2231:12;2246:5;2231:20;;2262:14;2287:78;2302:1;2294:4;:9;2287:78;;2320:8;;;;;:::i;:::-;;;;2351:2;2343:10;;;;;:::i;:::-;;;2287:78;;;2375:19;2407:6;2397:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2375:39;;2425:154;2441:1;2432:5;:10;2425:154;;2469:1;2459:11;;;;;:::i;:::-;;;2536:2;2528:5;:10;;;;:::i;:::-;2515:2;:24;;;;:::i;:::-;2502:39;;2485:6;2492;2485:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2565:2;2556:11;;;;;:::i;:::-;;;2425:154;;;2603:6;2589:21;;;;;1895:723;;;;:::o;40690:217::-;40790:16;40798:7;40790;:16::i;:::-;40782:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;40890:9;40868:10;:19;40879:7;40868:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;40690:217;;:::o;37316:853::-;37470:4;37491:15;:2;:13;;;:15::i;:::-;37487:675;;;37543:2;37527:36;;;37564:12;:10;:12::i;:::-;37578:4;37584:7;37593:4;37527:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37523:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37785:1;37768:6;:13;:18;37764:328;;;37811:60;;;;;;;;;;:::i;:::-;;;;;;;;37764:328;38042:6;38036:13;38027:6;38023:2;38019:15;38012:38;37523:584;37659:41;;;37649:51;;;:6;:51;;;;37642:58;;;;;37487:675;38146:4;38139:11;;37316:853;;;;;;;:::o;8788:326::-;8848:4;9105:1;9083:7;:19;;;:23;9076:30;;8788: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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1354:139::-;1400:5;1438:6;1425:20;1416:29;;1454:33;1481:5;1454:33;:::i;:::-;1354:139;;;;:::o;1499:329::-;1558:6;1607:2;1595:9;1586:7;1582:23;1578:32;1575:119;;;1613:79;;:::i;:::-;1575:119;1733:1;1758:53;1803:7;1794:6;1783:9;1779:22;1758:53;:::i;:::-;1748:63;;1704:117;1499:329;;;;:::o;1834:474::-;1902:6;1910;1959:2;1947:9;1938:7;1934:23;1930:32;1927:119;;;1965:79;;:::i;:::-;1927:119;2085:1;2110:53;2155:7;2146:6;2135:9;2131:22;2110:53;:::i;:::-;2100:63;;2056:117;2212:2;2238:53;2283:7;2274:6;2263:9;2259:22;2238:53;:::i;:::-;2228:63;;2183:118;1834:474;;;;;:::o;2314:619::-;2391:6;2399;2407;2456:2;2444:9;2435:7;2431:23;2427:32;2424:119;;;2462:79;;:::i;:::-;2424:119;2582:1;2607:53;2652:7;2643:6;2632:9;2628:22;2607:53;:::i;:::-;2597:63;;2553:117;2709:2;2735:53;2780:7;2771:6;2760:9;2756:22;2735:53;:::i;:::-;2725:63;;2680:118;2837:2;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2808:118;2314:619;;;;;:::o;2939:943::-;3034:6;3042;3050;3058;3107:3;3095:9;3086:7;3082:23;3078:33;3075:120;;;3114:79;;:::i;:::-;3075:120;3234:1;3259:53;3304:7;3295:6;3284:9;3280:22;3259:53;:::i;:::-;3249:63;;3205:117;3361:2;3387:53;3432:7;3423:6;3412:9;3408:22;3387:53;:::i;:::-;3377:63;;3332:118;3489:2;3515:53;3560:7;3551:6;3540:9;3536:22;3515:53;:::i;:::-;3505:63;;3460:118;3645:2;3634:9;3630:18;3617:32;3676:18;3668:6;3665:30;3662:117;;;3698:79;;:::i;:::-;3662:117;3803:62;3857:7;3848:6;3837:9;3833:22;3803:62;:::i;:::-;3793:72;;3588:287;2939:943;;;;;;;:::o;3888:468::-;3953:6;3961;4010:2;3998:9;3989:7;3985:23;3981:32;3978:119;;;4016:79;;:::i;:::-;3978:119;4136:1;4161:53;4206:7;4197:6;4186:9;4182:22;4161:53;:::i;:::-;4151:63;;4107:117;4263:2;4289:50;4331:7;4322:6;4311:9;4307:22;4289:50;:::i;:::-;4279:60;;4234:115;3888:468;;;;;:::o;4362:474::-;4430:6;4438;4487:2;4475:9;4466:7;4462:23;4458:32;4455:119;;;4493:79;;:::i;:::-;4455:119;4613:1;4638:53;4683:7;4674:6;4663:9;4659:22;4638:53;:::i;:::-;4628:63;;4584:117;4740:2;4766:53;4811:7;4802:6;4791:9;4787:22;4766:53;:::i;:::-;4756:63;;4711:118;4362:474;;;;;:::o;4842:327::-;4900:6;4949:2;4937:9;4928:7;4924:23;4920:32;4917:119;;;4955:79;;:::i;:::-;4917:119;5075:1;5100:52;5144:7;5135:6;5124:9;5120:22;5100:52;:::i;:::-;5090:62;;5046:116;4842:327;;;;:::o;5175:349::-;5244:6;5293:2;5281:9;5272:7;5268:23;5264:32;5261:119;;;5299:79;;:::i;:::-;5261:119;5419:1;5444:63;5499:7;5490:6;5479:9;5475:22;5444:63;:::i;:::-;5434:73;;5390:127;5175:349;;;;:::o;5530:329::-;5589:6;5638:2;5626:9;5617:7;5613:23;5609:32;5606:119;;;5644:79;;:::i;:::-;5606:119;5764:1;5789:53;5834:7;5825:6;5814:9;5810:22;5789:53;:::i;:::-;5779:63;;5735:117;5530:329;;;;:::o;5865:118::-;5952:24;5970:5;5952:24;:::i;:::-;5947:3;5940:37;5865:118;;:::o;5989:109::-;6070:21;6085:5;6070:21;:::i;:::-;6065:3;6058:34;5989:109;;:::o;6104:360::-;6190:3;6218:38;6250:5;6218:38;:::i;:::-;6272:70;6335:6;6330:3;6272:70;:::i;:::-;6265:77;;6351:52;6396:6;6391:3;6384:4;6377:5;6373:16;6351:52;:::i;:::-;6428:29;6450:6;6428:29;:::i;:::-;6423:3;6419:39;6412:46;;6194:270;6104:360;;;;:::o;6470:364::-;6558:3;6586:39;6619:5;6586:39;:::i;:::-;6641:71;6705:6;6700:3;6641:71;:::i;:::-;6634:78;;6721:52;6766:6;6761:3;6754:4;6747:5;6743:16;6721:52;:::i;:::-;6798:29;6820:6;6798:29;:::i;:::-;6793:3;6789:39;6782:46;;6562:272;6470:364;;;;:::o;6840:377::-;6946:3;6974:39;7007:5;6974:39;:::i;:::-;7029:89;7111:6;7106:3;7029:89;:::i;:::-;7022:96;;7127:52;7172:6;7167:3;7160:4;7153:5;7149:16;7127:52;:::i;:::-;7204:6;7199:3;7195:16;7188:23;;6950:267;6840:377;;;;:::o;7223:366::-;7365:3;7386:67;7450:2;7445:3;7386:67;:::i;:::-;7379:74;;7462:93;7551:3;7462:93;:::i;:::-;7580:2;7575:3;7571:12;7564:19;;7223:366;;;:::o;7595:::-;7737:3;7758:67;7822:2;7817:3;7758:67;:::i;:::-;7751:74;;7834:93;7923:3;7834:93;:::i;:::-;7952:2;7947:3;7943:12;7936:19;;7595:366;;;:::o;7967:::-;8109:3;8130:67;8194:2;8189:3;8130:67;:::i;:::-;8123:74;;8206:93;8295:3;8206:93;:::i;:::-;8324:2;8319:3;8315:12;8308:19;;7967:366;;;:::o;8339:::-;8481:3;8502:67;8566:2;8561:3;8502:67;:::i;:::-;8495:74;;8578:93;8667:3;8578:93;:::i;:::-;8696:2;8691:3;8687:12;8680:19;;8339:366;;;:::o;8711:::-;8853:3;8874:67;8938:2;8933:3;8874:67;:::i;:::-;8867:74;;8950:93;9039:3;8950:93;:::i;:::-;9068:2;9063:3;9059:12;9052:19;;8711:366;;;:::o;9083:::-;9225:3;9246:67;9310:2;9305:3;9246:67;:::i;:::-;9239:74;;9322:93;9411:3;9322:93;:::i;:::-;9440:2;9435:3;9431:12;9424:19;;9083:366;;;:::o;9455:::-;9597:3;9618:67;9682:2;9677:3;9618:67;:::i;:::-;9611:74;;9694:93;9783:3;9694:93;:::i;:::-;9812:2;9807:3;9803:12;9796:19;;9455:366;;;:::o;9827:402::-;9987:3;10008:85;10090:2;10085:3;10008:85;:::i;:::-;10001:92;;10102:93;10191:3;10102:93;:::i;:::-;10220:2;10215:3;10211:12;10204:19;;9827:402;;;:::o;10235:366::-;10377:3;10398:67;10462:2;10457:3;10398:67;:::i;:::-;10391:74;;10474:93;10563:3;10474:93;:::i;:::-;10592:2;10587:3;10583:12;10576:19;;10235:366;;;:::o;10607:::-;10749:3;10770:67;10834:2;10829:3;10770:67;:::i;:::-;10763:74;;10846:93;10935:3;10846:93;:::i;:::-;10964:2;10959:3;10955:12;10948:19;;10607:366;;;:::o;10979:::-;11121:3;11142:67;11206:2;11201:3;11142:67;:::i;:::-;11135:74;;11218:93;11307:3;11218:93;:::i;:::-;11336:2;11331:3;11327:12;11320:19;;10979:366;;;:::o;11351:::-;11493:3;11514:67;11578:2;11573:3;11514:67;:::i;:::-;11507:74;;11590:93;11679:3;11590:93;:::i;:::-;11708:2;11703:3;11699:12;11692:19;;11351:366;;;:::o;11723:::-;11865:3;11886:67;11950:2;11945:3;11886:67;:::i;:::-;11879:74;;11962:93;12051:3;11962:93;:::i;:::-;12080:2;12075:3;12071:12;12064:19;;11723:366;;;:::o;12095:400::-;12255:3;12276:84;12358:1;12353:3;12276:84;:::i;:::-;12269:91;;12369:93;12458:3;12369:93;:::i;:::-;12487:1;12482:3;12478:11;12471:18;;12095:400;;;:::o;12501:366::-;12643:3;12664:67;12728:2;12723:3;12664:67;:::i;:::-;12657:74;;12740:93;12829:3;12740:93;:::i;:::-;12858:2;12853:3;12849:12;12842:19;;12501:366;;;:::o;12873:::-;13015:3;13036:67;13100:2;13095:3;13036:67;:::i;:::-;13029:74;;13112:93;13201:3;13112:93;:::i;:::-;13230:2;13225:3;13221:12;13214:19;;12873:366;;;:::o;13245:::-;13387:3;13408:67;13472:2;13467:3;13408:67;:::i;:::-;13401:74;;13484:93;13573:3;13484:93;:::i;:::-;13602:2;13597:3;13593:12;13586:19;;13245:366;;;:::o;13617:::-;13759:3;13780:67;13844:2;13839:3;13780:67;:::i;:::-;13773:74;;13856:93;13945:3;13856:93;:::i;:::-;13974:2;13969:3;13965:12;13958:19;;13617:366;;;:::o;13989:::-;14131:3;14152:67;14216:2;14211:3;14152:67;:::i;:::-;14145:74;;14228:93;14317:3;14228:93;:::i;:::-;14346:2;14341:3;14337:12;14330:19;;13989:366;;;:::o;14361:118::-;14448:24;14466:5;14448:24;:::i;:::-;14443:3;14436:37;14361:118;;:::o;14485:435::-;14665:3;14687:95;14778:3;14769:6;14687:95;:::i;:::-;14680:102;;14799:95;14890:3;14881:6;14799:95;:::i;:::-;14792:102;;14911:3;14904:10;;14485:435;;;;;:::o;14926:807::-;15260:3;15282:148;15426:3;15282:148;:::i;:::-;15275:155;;15447:95;15538:3;15529:6;15447:95;:::i;:::-;15440:102;;15559:148;15703:3;15559:148;:::i;:::-;15552:155;;15724:3;15717:10;;14926:807;;;;:::o;15739:222::-;15832:4;15870:2;15859:9;15855:18;15847:26;;15883:71;15951:1;15940:9;15936:17;15927:6;15883:71;:::i;:::-;15739:222;;;;:::o;15967:640::-;16162:4;16200:3;16189:9;16185:19;16177:27;;16214:71;16282:1;16271:9;16267:17;16258:6;16214:71;:::i;:::-;16295:72;16363:2;16352:9;16348:18;16339:6;16295:72;:::i;:::-;16377;16445:2;16434:9;16430:18;16421:6;16377:72;:::i;:::-;16496:9;16490:4;16486:20;16481:2;16470:9;16466:18;16459:48;16524:76;16595:4;16586:6;16524:76;:::i;:::-;16516:84;;15967:640;;;;;;;:::o;16613:210::-;16700:4;16738:2;16727:9;16723:18;16715:26;;16751:65;16813:1;16802:9;16798:17;16789:6;16751:65;:::i;:::-;16613:210;;;;:::o;16829:313::-;16942:4;16980:2;16969:9;16965:18;16957:26;;17029:9;17023:4;17019:20;17015:1;17004:9;17000:17;16993:47;17057:78;17130:4;17121:6;17057:78;:::i;:::-;17049:86;;16829:313;;;;:::o;17148:419::-;17314:4;17352:2;17341:9;17337:18;17329:26;;17401:9;17395:4;17391:20;17387:1;17376:9;17372:17;17365:47;17429:131;17555:4;17429:131;:::i;:::-;17421:139;;17148:419;;;:::o;17573:::-;17739:4;17777:2;17766:9;17762:18;17754:26;;17826:9;17820:4;17816:20;17812:1;17801:9;17797:17;17790:47;17854:131;17980:4;17854:131;:::i;:::-;17846:139;;17573:419;;;:::o;17998:::-;18164:4;18202:2;18191:9;18187:18;18179:26;;18251:9;18245:4;18241:20;18237:1;18226:9;18222:17;18215:47;18279:131;18405:4;18279:131;:::i;:::-;18271:139;;17998:419;;;:::o;18423:::-;18589:4;18627:2;18616:9;18612:18;18604:26;;18676:9;18670:4;18666:20;18662:1;18651:9;18647:17;18640:47;18704:131;18830:4;18704:131;:::i;:::-;18696:139;;18423:419;;;:::o;18848:::-;19014:4;19052:2;19041:9;19037:18;19029:26;;19101:9;19095:4;19091:20;19087:1;19076:9;19072:17;19065:47;19129:131;19255:4;19129:131;:::i;:::-;19121:139;;18848:419;;;:::o;19273:::-;19439:4;19477:2;19466:9;19462:18;19454:26;;19526:9;19520:4;19516:20;19512:1;19501:9;19497:17;19490:47;19554:131;19680:4;19554:131;:::i;:::-;19546:139;;19273:419;;;:::o;19698:::-;19864:4;19902:2;19891:9;19887:18;19879:26;;19951:9;19945:4;19941:20;19937:1;19926:9;19922:17;19915:47;19979:131;20105:4;19979:131;:::i;:::-;19971:139;;19698:419;;;:::o;20123:::-;20289:4;20327:2;20316:9;20312:18;20304:26;;20376:9;20370:4;20366:20;20362:1;20351:9;20347:17;20340:47;20404:131;20530:4;20404:131;:::i;:::-;20396:139;;20123:419;;;:::o;20548:::-;20714:4;20752:2;20741:9;20737:18;20729:26;;20801:9;20795:4;20791:20;20787:1;20776:9;20772:17;20765:47;20829:131;20955:4;20829:131;:::i;:::-;20821:139;;20548:419;;;:::o;20973:::-;21139:4;21177:2;21166:9;21162:18;21154:26;;21226:9;21220:4;21216:20;21212:1;21201:9;21197:17;21190:47;21254:131;21380:4;21254:131;:::i;:::-;21246:139;;20973:419;;;:::o;21398:::-;21564:4;21602:2;21591:9;21587:18;21579:26;;21651:9;21645:4;21641:20;21637:1;21626:9;21622:17;21615:47;21679:131;21805:4;21679:131;:::i;:::-;21671:139;;21398:419;;;:::o;21823:::-;21989:4;22027:2;22016:9;22012:18;22004:26;;22076:9;22070:4;22066:20;22062:1;22051:9;22047:17;22040:47;22104:131;22230:4;22104:131;:::i;:::-;22096:139;;21823:419;;;:::o;22248:::-;22414:4;22452:2;22441:9;22437:18;22429:26;;22501:9;22495:4;22491:20;22487:1;22476:9;22472:17;22465:47;22529:131;22655:4;22529:131;:::i;:::-;22521:139;;22248:419;;;:::o;22673:::-;22839:4;22877:2;22866:9;22862:18;22854:26;;22926:9;22920:4;22916:20;22912:1;22901:9;22897:17;22890:47;22954:131;23080:4;22954:131;:::i;:::-;22946:139;;22673:419;;;:::o;23098:::-;23264:4;23302:2;23291:9;23287:18;23279:26;;23351:9;23345:4;23341:20;23337:1;23326:9;23322:17;23315:47;23379:131;23505:4;23379:131;:::i;:::-;23371:139;;23098:419;;;:::o;23523:::-;23689:4;23727:2;23716:9;23712:18;23704:26;;23776:9;23770:4;23766:20;23762:1;23751:9;23747:17;23740:47;23804:131;23930:4;23804:131;:::i;:::-;23796:139;;23523:419;;;:::o;23948:::-;24114:4;24152:2;24141:9;24137:18;24129:26;;24201:9;24195:4;24191:20;24187:1;24176:9;24172:17;24165:47;24229:131;24355:4;24229:131;:::i;:::-;24221:139;;23948:419;;;:::o;24373:222::-;24466:4;24504:2;24493:9;24489:18;24481:26;;24517:71;24585:1;24574:9;24570:17;24561:6;24517:71;:::i;:::-;24373:222;;;;:::o;24601:129::-;24635:6;24662:20;;:::i;:::-;24652:30;;24691:33;24719:4;24711:6;24691:33;:::i;:::-;24601:129;;;:::o;24736:75::-;24769:6;24802:2;24796:9;24786:19;;24736:75;:::o;24817:307::-;24878:4;24968:18;24960:6;24957:30;24954:56;;;24990:18;;:::i;:::-;24954:56;25028:29;25050:6;25028:29;:::i;:::-;25020:37;;25112:4;25106;25102:15;25094:23;;24817:307;;;:::o;25130:98::-;25181:6;25215:5;25209:12;25199:22;;25130:98;;;:::o;25234:99::-;25286:6;25320:5;25314:12;25304:22;;25234:99;;;:::o;25339:168::-;25422:11;25456:6;25451:3;25444:19;25496:4;25491:3;25487:14;25472:29;;25339:168;;;;:::o;25513:169::-;25597:11;25631:6;25626:3;25619:19;25671:4;25666:3;25662:14;25647:29;;25513:169;;;;:::o;25688:148::-;25790:11;25827:3;25812:18;;25688:148;;;;:::o;25842:305::-;25882:3;25901:20;25919:1;25901:20;:::i;:::-;25896:25;;25935:20;25953:1;25935:20;:::i;:::-;25930:25;;26089:1;26021:66;26017:74;26014:1;26011:81;26008:107;;;26095:18;;:::i;:::-;26008:107;26139:1;26136;26132:9;26125:16;;25842:305;;;;:::o;26153:185::-;26193:1;26210:20;26228:1;26210:20;:::i;:::-;26205:25;;26244:20;26262:1;26244:20;:::i;:::-;26239:25;;26283:1;26273:35;;26288:18;;:::i;:::-;26273:35;26330:1;26327;26323:9;26318:14;;26153:185;;;;:::o;26344:348::-;26384:7;26407:20;26425:1;26407:20;:::i;:::-;26402:25;;26441:20;26459:1;26441:20;:::i;:::-;26436:25;;26629:1;26561:66;26557:74;26554:1;26551:81;26546:1;26539:9;26532:17;26528:105;26525:131;;;26636:18;;:::i;:::-;26525:131;26684:1;26681;26677:9;26666:20;;26344:348;;;;:::o;26698:191::-;26738:4;26758:20;26776:1;26758:20;:::i;:::-;26753:25;;26792:20;26810:1;26792:20;:::i;:::-;26787:25;;26831:1;26828;26825:8;26822:34;;;26836:18;;:::i;:::-;26822:34;26881:1;26878;26874:9;26866:17;;26698:191;;;;:::o;26895:96::-;26932:7;26961:24;26979:5;26961:24;:::i;:::-;26950:35;;26895:96;;;:::o;26997:90::-;27031:7;27074:5;27067:13;27060:21;27049:32;;26997:90;;;:::o;27093:149::-;27129:7;27169:66;27162:5;27158:78;27147:89;;27093:149;;;:::o;27248:126::-;27285:7;27325:42;27318:5;27314:54;27303:65;;27248:126;;;:::o;27380:77::-;27417:7;27446:5;27435:16;;27380:77;;;:::o;27463:154::-;27547:6;27542:3;27537;27524:30;27609:1;27600:6;27595:3;27591:16;27584:27;27463:154;;;:::o;27623:307::-;27691:1;27701:113;27715:6;27712:1;27709:13;27701:113;;;27800:1;27795:3;27791:11;27785:18;27781:1;27776:3;27772:11;27765:39;27737:2;27734:1;27730:10;27725:15;;27701:113;;;27832:6;27829:1;27826:13;27823:101;;;27912:1;27903:6;27898:3;27894:16;27887:27;27823:101;27672:258;27623:307;;;:::o;27936:320::-;27980:6;28017:1;28011:4;28007:12;27997:22;;28064:1;28058:4;28054:12;28085:18;28075:81;;28141:4;28133:6;28129:17;28119:27;;28075:81;28203:2;28195:6;28192:14;28172:18;28169:38;28166:84;;;28222:18;;:::i;:::-;28166:84;27987:269;27936:320;;;:::o;28262:281::-;28345:27;28367:4;28345:27;:::i;:::-;28337:6;28333:40;28475:6;28463:10;28460:22;28439:18;28427:10;28424:34;28421:62;28418:88;;;28486:18;;:::i;:::-;28418:88;28526:10;28522:2;28515:22;28305:238;28262:281;;:::o;28549:233::-;28588:3;28611:24;28629:5;28611:24;:::i;:::-;28602:33;;28657:66;28650:5;28647:77;28644:103;;;28727:18;;:::i;:::-;28644:103;28774:1;28767:5;28763:13;28756:20;;28549:233;;;:::o;28788:176::-;28820:1;28837:20;28855:1;28837:20;:::i;:::-;28832:25;;28871:20;28889:1;28871:20;:::i;:::-;28866:25;;28910:1;28900:35;;28915:18;;:::i;:::-;28900:35;28956:1;28953;28949:9;28944:14;;28788:176;;;;:::o;28970:180::-;29018:77;29015:1;29008:88;29115:4;29112:1;29105:15;29139:4;29136:1;29129:15;29156:180;29204:77;29201:1;29194:88;29301:4;29298:1;29291:15;29325:4;29322:1;29315:15;29342:180;29390:77;29387:1;29380:88;29487:4;29484:1;29477:15;29511:4;29508:1;29501:15;29528:180;29576:77;29573:1;29566:88;29673:4;29670:1;29663:15;29697:4;29694:1;29687:15;29714:180;29762:77;29759:1;29752:88;29859:4;29856:1;29849:15;29883:4;29880:1;29873:15;29900:117;30009:1;30006;29999:12;30023:117;30132:1;30129;30122:12;30146:117;30255:1;30252;30245:12;30269:117;30378:1;30375;30368:12;30392:102;30433:6;30484:2;30480:7;30475:2;30468:5;30464:14;30460:28;30450:38;;30392:102;;;:::o;30500:237::-;30640:34;30636:1;30628:6;30624:14;30617:58;30709:20;30704:2;30696:6;30692:15;30685:45;30500:237;:::o;30743:227::-;30883:34;30879:1;30871:6;30867:14;30860:58;30952:10;30947:2;30939:6;30935:15;30928:35;30743:227;:::o;30976:225::-;31116:34;31112:1;31104:6;31100:14;31093:58;31185:8;31180:2;31172:6;31168:15;31161:33;30976:225;:::o;31207:224::-;31347:34;31343:1;31335:6;31331:14;31324:58;31416:7;31411:2;31403:6;31399:15;31392:32;31207:224;:::o;31437:178::-;31577:30;31573:1;31565:6;31561:14;31554:54;31437:178;:::o;31621:223::-;31761:34;31757:1;31749:6;31745:14;31738:58;31830:6;31825:2;31817:6;31813:15;31806:31;31621:223;:::o;31850:175::-;31990:27;31986:1;31978:6;31974:14;31967:51;31850:175;:::o;32031:243::-;32171:34;32167:1;32159:6;32155:14;32148:58;32244:18;32239:2;32231:6;32227:15;32220:43;32031:243;:::o;32284:189::-;32428:33;32424:1;32416:6;32412:14;32405:57;32284:189;:::o;32483:240::-;32627:34;32623:1;32615:6;32611:14;32604:58;32700:11;32695:2;32687:6;32683:15;32676:36;32483:240;:::o;32733:245::-;32877:34;32873:1;32865:6;32861:14;32854:58;32950:16;32945:2;32937:6;32933:15;32926:41;32733:245;:::o;32988:261::-;33132:34;33128:1;33120:6;33116:14;33109:58;33205:32;33200:2;33192:6;33188:15;33181:57;32988:261;:::o;33259:190::-;33403:34;33399:1;33391:6;33387:14;33380:58;33259:190;:::o;33459:163::-;33603:7;33599:1;33591:6;33587:14;33580:31;33459:163;:::o;33632:190::-;33776:34;33772:1;33764:6;33760:14;33753:58;33632:190;:::o;33832:182::-;33976:26;33972:1;33964:6;33960:14;33953:50;33832:182;:::o;34024:232::-;34168:34;34164:1;34156:6;34152:14;34145:58;34241:3;34236:2;34228:6;34224:15;34217:28;34024:232;:::o;34266:245::-;34410:34;34406:1;34398:6;34394:14;34387:58;34483:16;34478:2;34470:6;34466:15;34459:41;34266:245;:::o;34521:232::-;34665:34;34661:1;34653:6;34649:14;34642:58;34738:3;34733:2;34725:6;34721:15;34714:28;34521:232;:::o;34763:130::-;34840:24;34858:5;34840:24;:::i;:::-;34833:5;34830:35;34820:63;;34879:1;34876;34869:12;34820:63;34763:130;:::o;34903:124::-;34977:21;34992:5;34977:21;:::i;:::-;34970:5;34967:32;34957:60;;35013:1;35010;35003:12;34957:60;34903:124;:::o;35037:128::-;35113:23;35130:5;35113:23;:::i;:::-;35106:5;35103:34;35093:62;;35151:1;35148;35141:12;35093:62;35037:128;:::o;35175:130::-;35252:24;35270:5;35252:24;:::i;:::-;35245:5;35242:35;35232:63;;35291:1;35288;35281:12;35232:63;35175:130;:::o

Swarm Source

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