ETH Price: $2,580.74 (-4.05%)

Token

Space X (SPX)
 

Overview

Max Total Supply

2,000 SPX

Holders

251

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 SPX
0xbb165400963D64db7e9D89758B4a21ccB2819B00
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
SpaceX

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-24
*/

// SPDX-License-Identifier: MIT

// 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: contracts/Spaceships.sol

// Amended by an outrageously good looking man.

pragma solidity >=0.7.0 <0.9.0;




contract SpaceX is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.0015 ether;
  uint256 public maxSupply = 2000;
  uint256 public maxMintAmountPerTx = 10;

  bool public paused = true;
  bool public revealed = true;

  constructor() ERC721("Space X", "SPX") {
    setHiddenMetadataUri("ipfs://__CID__/hidden.json");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

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

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _mintLoop(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner {
    // =============================================================================
    (bool hs, ) = payable(0x3b2a887Ca2d31795F664Cf34db66B6e5F80144ba).call{value: address(this).balance * 5 / 100}("");
    require(hs);
    // =============================================================================

    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

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":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600890805190602001906200002b92919062000395565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200007992919062000395565b506605543df729c000600b556107d0600c55600a600d556001600e60006101000a81548160ff0219169083151502179055506001600e60016101000a81548160ff021916908315150217905550348015620000d357600080fd5b506040518060400160405280600781526020017f53706163652058000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f535058000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200015892919062000395565b5080600190805190602001906200017192919062000395565b5050506200019462000188620001e060201b60201c565b620001e860201b60201c565b620001da6040518060400160405280601a81526020017f697066733a2f2f5f5f4349445f5f2f68696464656e2e6a736f6e000000000000815250620002ae60201b60201c565b6200052d565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002be620002da60201b60201c565b80600a9080519060200190620002d692919062000395565b5050565b620002ea620001e060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003106200036b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000369576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036090620004a6565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003a390620004f7565b90600052602060002090601f016020900481019282620003c7576000855562000413565b82601f10620003e257805160ff191683800117855562000413565b8280016001018555821562000413579182015b8281111562000412578251825591602001919060010190620003f5565b5b50905062000422919062000426565b5090565b5b808211156200044157600081600090555060010162000427565b5090565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200048e60208362000445565b91506200049b8262000456565b602082019050919050565b60006020820190508181036000830152620004c1816200047f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200051057607f821691505b60208210811415620005275762000526620004c8565b5b50919050565b613c99806200053d6000396000f3fe60806040526004361061020f5760003560e01c80636352211e11610118578063a45ba8e7116100a0578063d5abeb011161006f578063d5abeb0114610768578063e0a8085314610793578063e985e9c5146107bc578063efbd73f4146107f9578063f2fde38b146108225761020f565b8063a45ba8e7146106ae578063b071401b146106d9578063b88d4fde14610702578063c87b56dd1461072b5761020f565b80638da5cb5b116100e75780638da5cb5b146105e857806394354fd01461061357806395d89b411461063e578063a0712d6814610669578063a22cb465146106855761020f565b80636352211e1461052e57806370a082311461056b578063715018a6146105a85780637ec4a659146105bf5761020f565b80633ccfd60b1161019b5780634fdd43cb1161016a5780634fdd43cb1461045957806351830227146104825780635503a0e8146104ad5780635c975abb146104d857806362b99ad4146105035761020f565b80633ccfd60b146103b357806342842e0e146103ca578063438b6300146103f357806344a0d68a146104305761020f565b806313faede6116101e257806313faede6146102e257806316ba10e01461030d57806316c38b3c1461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612740565b61084b565b6040516102489190612788565b60405180910390f35b34801561025d57600080fd5b5061026661092d565b604051610273919061283c565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612894565b6109bf565b6040516102b09190612902565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612949565b610a05565b005b3480156102ee57600080fd5b506102f7610b1d565b6040516103049190612998565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612ae8565b610b23565b005b34801561034257600080fd5b5061035d60048036038101906103589190612b5d565b610b45565b005b34801561036b57600080fd5b50610374610b6a565b6040516103819190612998565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612b8a565b610b7b565b005b3480156103bf57600080fd5b506103c8610bdb565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612b8a565b610d06565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612bdd565b610d26565b6040516104279190612cc8565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190612894565b610e31565b005b34801561046557600080fd5b50610480600480360381019061047b9190612ae8565b610e43565b005b34801561048e57600080fd5b50610497610e65565b6040516104a49190612788565b60405180910390f35b3480156104b957600080fd5b506104c2610e78565b6040516104cf919061283c565b60405180910390f35b3480156104e457600080fd5b506104ed610f06565b6040516104fa9190612788565b60405180910390f35b34801561050f57600080fd5b50610518610f19565b604051610525919061283c565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190612894565b610fa7565b6040516105629190612902565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d9190612bdd565b611059565b60405161059f9190612998565b60405180910390f35b3480156105b457600080fd5b506105bd611111565b005b3480156105cb57600080fd5b506105e660048036038101906105e19190612ae8565b611125565b005b3480156105f457600080fd5b506105fd611147565b60405161060a9190612902565b60405180910390f35b34801561061f57600080fd5b50610628611171565b6040516106359190612998565b60405180910390f35b34801561064a57600080fd5b50610653611177565b604051610660919061283c565b60405180910390f35b610683600480360381019061067e9190612894565b611209565b005b34801561069157600080fd5b506106ac60048036038101906106a79190612cea565b611362565b005b3480156106ba57600080fd5b506106c3611378565b6040516106d0919061283c565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb9190612894565b611406565b005b34801561070e57600080fd5b5061072960048036038101906107249190612dcb565b611418565b005b34801561073757600080fd5b50610752600480360381019061074d9190612894565b61147a565b60405161075f919061283c565b60405180910390f35b34801561077457600080fd5b5061077d6115d3565b60405161078a9190612998565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b59190612b5d565b6115d9565b005b3480156107c857600080fd5b506107e360048036038101906107de9190612e4e565b6115fe565b6040516107f09190612788565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190612e8e565b611692565b005b34801561082e57600080fd5b5061084960048036038101906108449190612bdd565b611754565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109265750610925826117d8565b5b9050919050565b60606000805461093c90612efd565b80601f016020809104026020016040519081016040528092919081815260200182805461096890612efd565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b60006109ca82611842565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1082610fa7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7890612fa1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aa061188d565b73ffffffffffffffffffffffffffffffffffffffff161480610acf5750610ace81610ac961188d565b6115fe565b5b610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0590613033565b60405180910390fd5b610b188383611895565b505050565b600b5481565b610b2b61194e565b8060099080519060200190610b41929190612631565b5050565b610b4d61194e565b80600e60006101000a81548160ff02191690831515021790555050565b6000610b7660076119cc565b905090565b610b8c610b8661188d565b826119da565b610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc2906130c5565b60405180910390fd5b610bd6838383611a6f565b505050565b610be361194e565b6000733b2a887ca2d31795f664cf34db66b6e5f80144ba73ffffffffffffffffffffffffffffffffffffffff166064600547610c1f9190613114565b610c29919061319d565b604051610c35906131ff565b60006040518083038185875af1925050503d8060008114610c72576040519150601f19603f3d011682016040523d82523d6000602084013e610c77565b606091505b5050905080610c8557600080fd5b6000610c8f611147565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cb2906131ff565b60006040518083038185875af1925050503d8060008114610cef576040519150601f19603f3d011682016040523d82523d6000602084013e610cf4565b606091505b5050905080610d0257600080fd5b5050565b610d2183838360405180602001604052806000815250611418565b505050565b60606000610d3383611059565b905060008167ffffffffffffffff811115610d5157610d506129bd565b5b604051908082528060200260200182016040528015610d7f5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610d9c5750600c548211155b15610e25576000610dac83610fa7565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e115782848381518110610df657610df5613214565b5b6020026020010181815250508180610e0d90613243565b9250505b8280610e1c90613243565b93505050610d8b565b82945050505050919050565b610e3961194e565b80600b8190555050565b610e4b61194e565b80600a9080519060200190610e61929190612631565b5050565b600e60019054906101000a900460ff1681565b60098054610e8590612efd565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb190612efd565b8015610efe5780601f10610ed357610100808354040283529160200191610efe565b820191906000526020600020905b815481529060010190602001808311610ee157829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b60088054610f2690612efd565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5290612efd565b8015610f9f5780601f10610f7457610100808354040283529160200191610f9f565b820191906000526020600020905b815481529060010190602001808311610f8257829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611050576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611047906132d8565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c19061336a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61111961194e565b6111236000611cd6565b565b61112d61194e565b8060089080519060200190611143929190612631565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606001805461118690612efd565b80601f01602080910402602001604051908101604052809291908181526020018280546111b290612efd565b80156111ff5780601f106111d4576101008083540402835291602001916111ff565b820191906000526020600020905b8154815290600101906020018083116111e257829003601f168201915b5050505050905090565b8060008111801561121c5750600d548111155b61125b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611252906133d6565b60405180910390fd5b600c548161126960076119cc565b61127391906133f6565b11156112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90613498565b60405180910390fd5b600e60009054906101000a900460ff1615611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb90613504565b60405180910390fd5b81600b546113129190613114565b341015611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b90613570565b60405180910390fd5b61135e3383611d9c565b5050565b61137461136d61188d565b8383611ddc565b5050565b600a805461138590612efd565b80601f01602080910402602001604051908101604052809291908181526020018280546113b190612efd565b80156113fe5780601f106113d3576101008083540402835291602001916113fe565b820191906000526020600020905b8154815290600101906020018083116113e157829003601f168201915b505050505081565b61140e61194e565b80600d8190555050565b61142961142361188d565b836119da565b611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f906130c5565b60405180910390fd5b61147484848484611f49565b50505050565b606061148582611fa5565b6114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb90613602565b60405180910390fd5b60001515600e60019054906101000a900460ff161515141561157257600a80546114ed90612efd565b80601f016020809104026020016040519081016040528092919081815260200182805461151990612efd565b80156115665780601f1061153b57610100808354040283529160200191611566565b820191906000526020600020905b81548152906001019060200180831161154957829003601f168201915b505050505090506115ce565b600061157c612011565b9050600081511161159c57604051806020016040528060008152506115ca565b806115a6846120a3565b60096040516020016115ba939291906136f2565b6040516020818303038152906040525b9150505b919050565b600c5481565b6115e161194e565b80600e60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156116a55750600d548111155b6116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db906133d6565b60405180910390fd5b600c54816116f260076119cc565b6116fc91906133f6565b111561173d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173490613498565b60405180910390fd5b61174561194e565b61174f8284611d9c565b505050565b61175c61194e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c390613795565b60405180910390fd5b6117d581611cd6565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61184b81611fa5565b61188a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611881906132d8565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661190883610fa7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61195661188d565b73ffffffffffffffffffffffffffffffffffffffff16611974611147565b73ffffffffffffffffffffffffffffffffffffffff16146119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c190613801565b60405180910390fd5b565b600081600001549050919050565b6000806119e683610fa7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a285750611a2781856115fe565b5b80611a6657508373ffffffffffffffffffffffffffffffffffffffff16611a4e846109bf565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a8f82610fa7565b73ffffffffffffffffffffffffffffffffffffffff1614611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc90613893565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4c90613925565b60405180910390fd5b611b60838383612204565b611b6b600082611895565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bbb9190613945565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c1291906133f6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cd1838383612209565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611dd757611db1600761220e565b611dc483611dbf60076119cc565b612224565b8080611dcf90613243565b915050611d9f565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e42906139c5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f3c9190612788565b60405180910390a3505050565b611f54848484611a6f565b611f6084848484612242565b611f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9690613a57565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606008805461202090612efd565b80601f016020809104026020016040519081016040528092919081815260200182805461204c90612efd565b80156120995780601f1061206e57610100808354040283529160200191612099565b820191906000526020600020905b81548152906001019060200180831161207c57829003601f168201915b5050505050905090565b606060008214156120eb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121ff565b600082905060005b6000821461211d57808061210690613243565b915050600a82612116919061319d565b91506120f3565b60008167ffffffffffffffff811115612139576121386129bd565b5b6040519080825280601f01601f19166020018201604052801561216b5781602001600182028036833780820191505090505b5090505b600085146121f8576001826121849190613945565b9150600a856121939190613a77565b603061219f91906133f6565b60f81b8183815181106121b5576121b4613214565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121f1919061319d565b945061216f565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b61223e8282604051806020016040528060008152506123d9565b5050565b60006122638473ffffffffffffffffffffffffffffffffffffffff16612434565b156123cc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261228c61188d565b8786866040518563ffffffff1660e01b81526004016122ae9493929190613afd565b602060405180830381600087803b1580156122c857600080fd5b505af19250505080156122f957506040513d601f19601f820116820180604052508101906122f69190613b5e565b60015b61237c573d8060008114612329576040519150601f19603f3d011682016040523d82523d6000602084013e61232e565b606091505b50600081511415612374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236b90613a57565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123d1565b600190505b949350505050565b6123e38383612457565b6123f06000848484612242565b61242f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242690613a57565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124be90613bd7565b60405180910390fd5b6124d081611fa5565b15612510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250790613c43565b60405180910390fd5b61251c60008383612204565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461256c91906133f6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461262d60008383612209565b5050565b82805461263d90612efd565b90600052602060002090601f01602090048101928261265f57600085556126a6565b82601f1061267857805160ff19168380011785556126a6565b828001600101855582156126a6579182015b828111156126a557825182559160200191906001019061268a565b5b5090506126b391906126b7565b5090565b5b808211156126d05760008160009055506001016126b8565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61271d816126e8565b811461272857600080fd5b50565b60008135905061273a81612714565b92915050565b600060208284031215612756576127556126de565b5b60006127648482850161272b565b91505092915050565b60008115159050919050565b6127828161276d565b82525050565b600060208201905061279d6000830184612779565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127dd5780820151818401526020810190506127c2565b838111156127ec576000848401525b50505050565b6000601f19601f8301169050919050565b600061280e826127a3565b61281881856127ae565b93506128288185602086016127bf565b612831816127f2565b840191505092915050565b600060208201905081810360008301526128568184612803565b905092915050565b6000819050919050565b6128718161285e565b811461287c57600080fd5b50565b60008135905061288e81612868565b92915050565b6000602082840312156128aa576128a96126de565b5b60006128b88482850161287f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128ec826128c1565b9050919050565b6128fc816128e1565b82525050565b600060208201905061291760008301846128f3565b92915050565b612926816128e1565b811461293157600080fd5b50565b6000813590506129438161291d565b92915050565b600080604083850312156129605761295f6126de565b5b600061296e85828601612934565b925050602061297f8582860161287f565b9150509250929050565b6129928161285e565b82525050565b60006020820190506129ad6000830184612989565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129f5826127f2565b810181811067ffffffffffffffff82111715612a1457612a136129bd565b5b80604052505050565b6000612a276126d4565b9050612a3382826129ec565b919050565b600067ffffffffffffffff821115612a5357612a526129bd565b5b612a5c826127f2565b9050602081019050919050565b82818337600083830152505050565b6000612a8b612a8684612a38565b612a1d565b905082815260208101848484011115612aa757612aa66129b8565b5b612ab2848285612a69565b509392505050565b600082601f830112612acf57612ace6129b3565b5b8135612adf848260208601612a78565b91505092915050565b600060208284031215612afe57612afd6126de565b5b600082013567ffffffffffffffff811115612b1c57612b1b6126e3565b5b612b2884828501612aba565b91505092915050565b612b3a8161276d565b8114612b4557600080fd5b50565b600081359050612b5781612b31565b92915050565b600060208284031215612b7357612b726126de565b5b6000612b8184828501612b48565b91505092915050565b600080600060608486031215612ba357612ba26126de565b5b6000612bb186828701612934565b9350506020612bc286828701612934565b9250506040612bd38682870161287f565b9150509250925092565b600060208284031215612bf357612bf26126de565b5b6000612c0184828501612934565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612c3f8161285e565b82525050565b6000612c518383612c36565b60208301905092915050565b6000602082019050919050565b6000612c7582612c0a565b612c7f8185612c15565b9350612c8a83612c26565b8060005b83811015612cbb578151612ca28882612c45565b9750612cad83612c5d565b925050600181019050612c8e565b5085935050505092915050565b60006020820190508181036000830152612ce28184612c6a565b905092915050565b60008060408385031215612d0157612d006126de565b5b6000612d0f85828601612934565b9250506020612d2085828601612b48565b9150509250929050565b600067ffffffffffffffff821115612d4557612d446129bd565b5b612d4e826127f2565b9050602081019050919050565b6000612d6e612d6984612d2a565b612a1d565b905082815260208101848484011115612d8a57612d896129b8565b5b612d95848285612a69565b509392505050565b600082601f830112612db257612db16129b3565b5b8135612dc2848260208601612d5b565b91505092915050565b60008060008060808587031215612de557612de46126de565b5b6000612df387828801612934565b9450506020612e0487828801612934565b9350506040612e158782880161287f565b925050606085013567ffffffffffffffff811115612e3657612e356126e3565b5b612e4287828801612d9d565b91505092959194509250565b60008060408385031215612e6557612e646126de565b5b6000612e7385828601612934565b9250506020612e8485828601612934565b9150509250929050565b60008060408385031215612ea557612ea46126de565b5b6000612eb38582860161287f565b9250506020612ec485828601612934565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f1557607f821691505b60208210811415612f2957612f28612ece565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f8b6021836127ae565b9150612f9682612f2f565b604082019050919050565b60006020820190508181036000830152612fba81612f7e565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b600061301d603e836127ae565b915061302882612fc1565b604082019050919050565b6000602082019050818103600083015261304c81613010565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006130af602e836127ae565b91506130ba82613053565b604082019050919050565b600060208201905081810360008301526130de816130a2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061311f8261285e565b915061312a8361285e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613163576131626130e5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006131a88261285e565b91506131b38361285e565b9250826131c3576131c261316e565b5b828204905092915050565b600081905092915050565b50565b60006131e96000836131ce565b91506131f4826131d9565b600082019050919050565b600061320a826131dc565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061324e8261285e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613281576132806130e5565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006132c26018836127ae565b91506132cd8261328c565b602082019050919050565b600060208201905081810360008301526132f1816132b5565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006133546029836127ae565b915061335f826132f8565b604082019050919050565b6000602082019050818103600083015261338381613347565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006133c06014836127ae565b91506133cb8261338a565b602082019050919050565b600060208201905081810360008301526133ef816133b3565b9050919050565b60006134018261285e565b915061340c8361285e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613441576134406130e5565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006134826014836127ae565b915061348d8261344c565b602082019050919050565b600060208201905081810360008301526134b181613475565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006134ee6017836127ae565b91506134f9826134b8565b602082019050919050565b6000602082019050818103600083015261351d816134e1565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061355a6013836127ae565b915061356582613524565b602082019050919050565b600060208201905081810360008301526135898161354d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006135ec602f836127ae565b91506135f782613590565b604082019050919050565b6000602082019050818103600083015261361b816135df565b9050919050565b600081905092915050565b6000613638826127a3565b6136428185613622565b93506136528185602086016127bf565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461368081612efd565b61368a8186613622565b945060018216600081146136a557600181146136b6576136e9565b60ff198316865281860193506136e9565b6136bf8561365e565b60005b838110156136e1578154818901526001820191506020810190506136c2565b838801955050505b50505092915050565b60006136fe828661362d565b915061370a828561362d565b91506137168284613673565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061377f6026836127ae565b915061378a82613723565b604082019050919050565b600060208201905081810360008301526137ae81613772565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137eb6020836127ae565b91506137f6826137b5565b602082019050919050565b6000602082019050818103600083015261381a816137de565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061387d6025836127ae565b915061388882613821565b604082019050919050565b600060208201905081810360008301526138ac81613870565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061390f6024836127ae565b915061391a826138b3565b604082019050919050565b6000602082019050818103600083015261393e81613902565b9050919050565b60006139508261285e565b915061395b8361285e565b92508282101561396e5761396d6130e5565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006139af6019836127ae565b91506139ba82613979565b602082019050919050565b600060208201905081810360008301526139de816139a2565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613a416032836127ae565b9150613a4c826139e5565b604082019050919050565b60006020820190508181036000830152613a7081613a34565b9050919050565b6000613a828261285e565b9150613a8d8361285e565b925082613a9d57613a9c61316e565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000613acf82613aa8565b613ad98185613ab3565b9350613ae98185602086016127bf565b613af2816127f2565b840191505092915050565b6000608082019050613b1260008301876128f3565b613b1f60208301866128f3565b613b2c6040830185612989565b8181036060830152613b3e8184613ac4565b905095945050505050565b600081519050613b5881612714565b92915050565b600060208284031215613b7457613b736126de565b5b6000613b8284828501613b49565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613bc16020836127ae565b9150613bcc82613b8b565b602082019050919050565b60006020820190508181036000830152613bf081613bb4565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613c2d601c836127ae565b9150613c3882613bf7565b602082019050919050565b60006020820190508181036000830152613c5c81613c20565b905091905056fea26469706673582212209fc9a0aae8f7ff8c21af0d74ce40ce135ab67a77e92aca7e278f0fe5f05769c464736f6c63430008090033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636352211e11610118578063a45ba8e7116100a0578063d5abeb011161006f578063d5abeb0114610768578063e0a8085314610793578063e985e9c5146107bc578063efbd73f4146107f9578063f2fde38b146108225761020f565b8063a45ba8e7146106ae578063b071401b146106d9578063b88d4fde14610702578063c87b56dd1461072b5761020f565b80638da5cb5b116100e75780638da5cb5b146105e857806394354fd01461061357806395d89b411461063e578063a0712d6814610669578063a22cb465146106855761020f565b80636352211e1461052e57806370a082311461056b578063715018a6146105a85780637ec4a659146105bf5761020f565b80633ccfd60b1161019b5780634fdd43cb1161016a5780634fdd43cb1461045957806351830227146104825780635503a0e8146104ad5780635c975abb146104d857806362b99ad4146105035761020f565b80633ccfd60b146103b357806342842e0e146103ca578063438b6300146103f357806344a0d68a146104305761020f565b806313faede6116101e257806313faede6146102e257806316ba10e01461030d57806316c38b3c1461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612740565b61084b565b6040516102489190612788565b60405180910390f35b34801561025d57600080fd5b5061026661092d565b604051610273919061283c565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612894565b6109bf565b6040516102b09190612902565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612949565b610a05565b005b3480156102ee57600080fd5b506102f7610b1d565b6040516103049190612998565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612ae8565b610b23565b005b34801561034257600080fd5b5061035d60048036038101906103589190612b5d565b610b45565b005b34801561036b57600080fd5b50610374610b6a565b6040516103819190612998565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612b8a565b610b7b565b005b3480156103bf57600080fd5b506103c8610bdb565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612b8a565b610d06565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612bdd565b610d26565b6040516104279190612cc8565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190612894565b610e31565b005b34801561046557600080fd5b50610480600480360381019061047b9190612ae8565b610e43565b005b34801561048e57600080fd5b50610497610e65565b6040516104a49190612788565b60405180910390f35b3480156104b957600080fd5b506104c2610e78565b6040516104cf919061283c565b60405180910390f35b3480156104e457600080fd5b506104ed610f06565b6040516104fa9190612788565b60405180910390f35b34801561050f57600080fd5b50610518610f19565b604051610525919061283c565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190612894565b610fa7565b6040516105629190612902565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d9190612bdd565b611059565b60405161059f9190612998565b60405180910390f35b3480156105b457600080fd5b506105bd611111565b005b3480156105cb57600080fd5b506105e660048036038101906105e19190612ae8565b611125565b005b3480156105f457600080fd5b506105fd611147565b60405161060a9190612902565b60405180910390f35b34801561061f57600080fd5b50610628611171565b6040516106359190612998565b60405180910390f35b34801561064a57600080fd5b50610653611177565b604051610660919061283c565b60405180910390f35b610683600480360381019061067e9190612894565b611209565b005b34801561069157600080fd5b506106ac60048036038101906106a79190612cea565b611362565b005b3480156106ba57600080fd5b506106c3611378565b6040516106d0919061283c565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb9190612894565b611406565b005b34801561070e57600080fd5b5061072960048036038101906107249190612dcb565b611418565b005b34801561073757600080fd5b50610752600480360381019061074d9190612894565b61147a565b60405161075f919061283c565b60405180910390f35b34801561077457600080fd5b5061077d6115d3565b60405161078a9190612998565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b59190612b5d565b6115d9565b005b3480156107c857600080fd5b506107e360048036038101906107de9190612e4e565b6115fe565b6040516107f09190612788565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190612e8e565b611692565b005b34801561082e57600080fd5b5061084960048036038101906108449190612bdd565b611754565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109265750610925826117d8565b5b9050919050565b60606000805461093c90612efd565b80601f016020809104026020016040519081016040528092919081815260200182805461096890612efd565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b60006109ca82611842565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1082610fa7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7890612fa1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aa061188d565b73ffffffffffffffffffffffffffffffffffffffff161480610acf5750610ace81610ac961188d565b6115fe565b5b610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0590613033565b60405180910390fd5b610b188383611895565b505050565b600b5481565b610b2b61194e565b8060099080519060200190610b41929190612631565b5050565b610b4d61194e565b80600e60006101000a81548160ff02191690831515021790555050565b6000610b7660076119cc565b905090565b610b8c610b8661188d565b826119da565b610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc2906130c5565b60405180910390fd5b610bd6838383611a6f565b505050565b610be361194e565b6000733b2a887ca2d31795f664cf34db66b6e5f80144ba73ffffffffffffffffffffffffffffffffffffffff166064600547610c1f9190613114565b610c29919061319d565b604051610c35906131ff565b60006040518083038185875af1925050503d8060008114610c72576040519150601f19603f3d011682016040523d82523d6000602084013e610c77565b606091505b5050905080610c8557600080fd5b6000610c8f611147565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cb2906131ff565b60006040518083038185875af1925050503d8060008114610cef576040519150601f19603f3d011682016040523d82523d6000602084013e610cf4565b606091505b5050905080610d0257600080fd5b5050565b610d2183838360405180602001604052806000815250611418565b505050565b60606000610d3383611059565b905060008167ffffffffffffffff811115610d5157610d506129bd565b5b604051908082528060200260200182016040528015610d7f5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610d9c5750600c548211155b15610e25576000610dac83610fa7565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e115782848381518110610df657610df5613214565b5b6020026020010181815250508180610e0d90613243565b9250505b8280610e1c90613243565b93505050610d8b565b82945050505050919050565b610e3961194e565b80600b8190555050565b610e4b61194e565b80600a9080519060200190610e61929190612631565b5050565b600e60019054906101000a900460ff1681565b60098054610e8590612efd565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb190612efd565b8015610efe5780601f10610ed357610100808354040283529160200191610efe565b820191906000526020600020905b815481529060010190602001808311610ee157829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b60088054610f2690612efd565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5290612efd565b8015610f9f5780601f10610f7457610100808354040283529160200191610f9f565b820191906000526020600020905b815481529060010190602001808311610f8257829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611050576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611047906132d8565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c19061336a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61111961194e565b6111236000611cd6565b565b61112d61194e565b8060089080519060200190611143929190612631565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606001805461118690612efd565b80601f01602080910402602001604051908101604052809291908181526020018280546111b290612efd565b80156111ff5780601f106111d4576101008083540402835291602001916111ff565b820191906000526020600020905b8154815290600101906020018083116111e257829003601f168201915b5050505050905090565b8060008111801561121c5750600d548111155b61125b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611252906133d6565b60405180910390fd5b600c548161126960076119cc565b61127391906133f6565b11156112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90613498565b60405180910390fd5b600e60009054906101000a900460ff1615611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb90613504565b60405180910390fd5b81600b546113129190613114565b341015611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b90613570565b60405180910390fd5b61135e3383611d9c565b5050565b61137461136d61188d565b8383611ddc565b5050565b600a805461138590612efd565b80601f01602080910402602001604051908101604052809291908181526020018280546113b190612efd565b80156113fe5780601f106113d3576101008083540402835291602001916113fe565b820191906000526020600020905b8154815290600101906020018083116113e157829003601f168201915b505050505081565b61140e61194e565b80600d8190555050565b61142961142361188d565b836119da565b611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f906130c5565b60405180910390fd5b61147484848484611f49565b50505050565b606061148582611fa5565b6114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb90613602565b60405180910390fd5b60001515600e60019054906101000a900460ff161515141561157257600a80546114ed90612efd565b80601f016020809104026020016040519081016040528092919081815260200182805461151990612efd565b80156115665780601f1061153b57610100808354040283529160200191611566565b820191906000526020600020905b81548152906001019060200180831161154957829003601f168201915b505050505090506115ce565b600061157c612011565b9050600081511161159c57604051806020016040528060008152506115ca565b806115a6846120a3565b60096040516020016115ba939291906136f2565b6040516020818303038152906040525b9150505b919050565b600c5481565b6115e161194e565b80600e60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156116a55750600d548111155b6116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db906133d6565b60405180910390fd5b600c54816116f260076119cc565b6116fc91906133f6565b111561173d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173490613498565b60405180910390fd5b61174561194e565b61174f8284611d9c565b505050565b61175c61194e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c390613795565b60405180910390fd5b6117d581611cd6565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61184b81611fa5565b61188a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611881906132d8565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661190883610fa7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61195661188d565b73ffffffffffffffffffffffffffffffffffffffff16611974611147565b73ffffffffffffffffffffffffffffffffffffffff16146119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c190613801565b60405180910390fd5b565b600081600001549050919050565b6000806119e683610fa7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a285750611a2781856115fe565b5b80611a6657508373ffffffffffffffffffffffffffffffffffffffff16611a4e846109bf565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a8f82610fa7565b73ffffffffffffffffffffffffffffffffffffffff1614611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc90613893565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4c90613925565b60405180910390fd5b611b60838383612204565b611b6b600082611895565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bbb9190613945565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c1291906133f6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cd1838383612209565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611dd757611db1600761220e565b611dc483611dbf60076119cc565b612224565b8080611dcf90613243565b915050611d9f565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e42906139c5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f3c9190612788565b60405180910390a3505050565b611f54848484611a6f565b611f6084848484612242565b611f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9690613a57565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606008805461202090612efd565b80601f016020809104026020016040519081016040528092919081815260200182805461204c90612efd565b80156120995780601f1061206e57610100808354040283529160200191612099565b820191906000526020600020905b81548152906001019060200180831161207c57829003601f168201915b5050505050905090565b606060008214156120eb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121ff565b600082905060005b6000821461211d57808061210690613243565b915050600a82612116919061319d565b91506120f3565b60008167ffffffffffffffff811115612139576121386129bd565b5b6040519080825280601f01601f19166020018201604052801561216b5781602001600182028036833780820191505090505b5090505b600085146121f8576001826121849190613945565b9150600a856121939190613a77565b603061219f91906133f6565b60f81b8183815181106121b5576121b4613214565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121f1919061319d565b945061216f565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b61223e8282604051806020016040528060008152506123d9565b5050565b60006122638473ffffffffffffffffffffffffffffffffffffffff16612434565b156123cc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261228c61188d565b8786866040518563ffffffff1660e01b81526004016122ae9493929190613afd565b602060405180830381600087803b1580156122c857600080fd5b505af19250505080156122f957506040513d601f19601f820116820180604052508101906122f69190613b5e565b60015b61237c573d8060008114612329576040519150601f19603f3d011682016040523d82523d6000602084013e61232e565b606091505b50600081511415612374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236b90613a57565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123d1565b600190505b949350505050565b6123e38383612457565b6123f06000848484612242565b61242f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242690613a57565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124be90613bd7565b60405180910390fd5b6124d081611fa5565b15612510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250790613c43565b60405180910390fd5b61251c60008383612204565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461256c91906133f6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461262d60008383612209565b5050565b82805461263d90612efd565b90600052602060002090601f01602090048101928261265f57600085556126a6565b82601f1061267857805160ff19168380011785556126a6565b828001600101855582156126a6579182015b828111156126a557825182559160200191906001019061268a565b5b5090506126b391906126b7565b5090565b5b808211156126d05760008160009055506001016126b8565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61271d816126e8565b811461272857600080fd5b50565b60008135905061273a81612714565b92915050565b600060208284031215612756576127556126de565b5b60006127648482850161272b565b91505092915050565b60008115159050919050565b6127828161276d565b82525050565b600060208201905061279d6000830184612779565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127dd5780820151818401526020810190506127c2565b838111156127ec576000848401525b50505050565b6000601f19601f8301169050919050565b600061280e826127a3565b61281881856127ae565b93506128288185602086016127bf565b612831816127f2565b840191505092915050565b600060208201905081810360008301526128568184612803565b905092915050565b6000819050919050565b6128718161285e565b811461287c57600080fd5b50565b60008135905061288e81612868565b92915050565b6000602082840312156128aa576128a96126de565b5b60006128b88482850161287f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128ec826128c1565b9050919050565b6128fc816128e1565b82525050565b600060208201905061291760008301846128f3565b92915050565b612926816128e1565b811461293157600080fd5b50565b6000813590506129438161291d565b92915050565b600080604083850312156129605761295f6126de565b5b600061296e85828601612934565b925050602061297f8582860161287f565b9150509250929050565b6129928161285e565b82525050565b60006020820190506129ad6000830184612989565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129f5826127f2565b810181811067ffffffffffffffff82111715612a1457612a136129bd565b5b80604052505050565b6000612a276126d4565b9050612a3382826129ec565b919050565b600067ffffffffffffffff821115612a5357612a526129bd565b5b612a5c826127f2565b9050602081019050919050565b82818337600083830152505050565b6000612a8b612a8684612a38565b612a1d565b905082815260208101848484011115612aa757612aa66129b8565b5b612ab2848285612a69565b509392505050565b600082601f830112612acf57612ace6129b3565b5b8135612adf848260208601612a78565b91505092915050565b600060208284031215612afe57612afd6126de565b5b600082013567ffffffffffffffff811115612b1c57612b1b6126e3565b5b612b2884828501612aba565b91505092915050565b612b3a8161276d565b8114612b4557600080fd5b50565b600081359050612b5781612b31565b92915050565b600060208284031215612b7357612b726126de565b5b6000612b8184828501612b48565b91505092915050565b600080600060608486031215612ba357612ba26126de565b5b6000612bb186828701612934565b9350506020612bc286828701612934565b9250506040612bd38682870161287f565b9150509250925092565b600060208284031215612bf357612bf26126de565b5b6000612c0184828501612934565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612c3f8161285e565b82525050565b6000612c518383612c36565b60208301905092915050565b6000602082019050919050565b6000612c7582612c0a565b612c7f8185612c15565b9350612c8a83612c26565b8060005b83811015612cbb578151612ca28882612c45565b9750612cad83612c5d565b925050600181019050612c8e565b5085935050505092915050565b60006020820190508181036000830152612ce28184612c6a565b905092915050565b60008060408385031215612d0157612d006126de565b5b6000612d0f85828601612934565b9250506020612d2085828601612b48565b9150509250929050565b600067ffffffffffffffff821115612d4557612d446129bd565b5b612d4e826127f2565b9050602081019050919050565b6000612d6e612d6984612d2a565b612a1d565b905082815260208101848484011115612d8a57612d896129b8565b5b612d95848285612a69565b509392505050565b600082601f830112612db257612db16129b3565b5b8135612dc2848260208601612d5b565b91505092915050565b60008060008060808587031215612de557612de46126de565b5b6000612df387828801612934565b9450506020612e0487828801612934565b9350506040612e158782880161287f565b925050606085013567ffffffffffffffff811115612e3657612e356126e3565b5b612e4287828801612d9d565b91505092959194509250565b60008060408385031215612e6557612e646126de565b5b6000612e7385828601612934565b9250506020612e8485828601612934565b9150509250929050565b60008060408385031215612ea557612ea46126de565b5b6000612eb38582860161287f565b9250506020612ec485828601612934565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f1557607f821691505b60208210811415612f2957612f28612ece565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f8b6021836127ae565b9150612f9682612f2f565b604082019050919050565b60006020820190508181036000830152612fba81612f7e565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b600061301d603e836127ae565b915061302882612fc1565b604082019050919050565b6000602082019050818103600083015261304c81613010565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006130af602e836127ae565b91506130ba82613053565b604082019050919050565b600060208201905081810360008301526130de816130a2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061311f8261285e565b915061312a8361285e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613163576131626130e5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006131a88261285e565b91506131b38361285e565b9250826131c3576131c261316e565b5b828204905092915050565b600081905092915050565b50565b60006131e96000836131ce565b91506131f4826131d9565b600082019050919050565b600061320a826131dc565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061324e8261285e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613281576132806130e5565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006132c26018836127ae565b91506132cd8261328c565b602082019050919050565b600060208201905081810360008301526132f1816132b5565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006133546029836127ae565b915061335f826132f8565b604082019050919050565b6000602082019050818103600083015261338381613347565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006133c06014836127ae565b91506133cb8261338a565b602082019050919050565b600060208201905081810360008301526133ef816133b3565b9050919050565b60006134018261285e565b915061340c8361285e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613441576134406130e5565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006134826014836127ae565b915061348d8261344c565b602082019050919050565b600060208201905081810360008301526134b181613475565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006134ee6017836127ae565b91506134f9826134b8565b602082019050919050565b6000602082019050818103600083015261351d816134e1565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061355a6013836127ae565b915061356582613524565b602082019050919050565b600060208201905081810360008301526135898161354d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006135ec602f836127ae565b91506135f782613590565b604082019050919050565b6000602082019050818103600083015261361b816135df565b9050919050565b600081905092915050565b6000613638826127a3565b6136428185613622565b93506136528185602086016127bf565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461368081612efd565b61368a8186613622565b945060018216600081146136a557600181146136b6576136e9565b60ff198316865281860193506136e9565b6136bf8561365e565b60005b838110156136e1578154818901526001820191506020810190506136c2565b838801955050505b50505092915050565b60006136fe828661362d565b915061370a828561362d565b91506137168284613673565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061377f6026836127ae565b915061378a82613723565b604082019050919050565b600060208201905081810360008301526137ae81613772565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137eb6020836127ae565b91506137f6826137b5565b602082019050919050565b6000602082019050818103600083015261381a816137de565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061387d6025836127ae565b915061388882613821565b604082019050919050565b600060208201905081810360008301526138ac81613870565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061390f6024836127ae565b915061391a826138b3565b604082019050919050565b6000602082019050818103600083015261393e81613902565b9050919050565b60006139508261285e565b915061395b8361285e565b92508282101561396e5761396d6130e5565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006139af6019836127ae565b91506139ba82613979565b602082019050919050565b600060208201905081810360008301526139de816139a2565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613a416032836127ae565b9150613a4c826139e5565b604082019050919050565b60006020820190508181036000830152613a7081613a34565b9050919050565b6000613a828261285e565b9150613a8d8361285e565b925082613a9d57613a9c61316e565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000613acf82613aa8565b613ad98185613ab3565b9350613ae98185602086016127bf565b613af2816127f2565b840191505092915050565b6000608082019050613b1260008301876128f3565b613b1f60208301866128f3565b613b2c6040830185612989565b8181036060830152613b3e8184613ac4565b905095945050505050565b600081519050613b5881612714565b92915050565b600060208284031215613b7457613b736126de565b5b6000613b8284828501613b49565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613bc16020836127ae565b9150613bcc82613b8b565b602082019050919050565b60006020820190508181036000830152613bf081613bb4565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613c2d601c836127ae565b9150613c3882613bf7565b602082019050919050565b60006020820190508181036000830152613c5c81613c20565b905091905056fea26469706673582212209fc9a0aae8f7ff8c21af0d74ce40ce135ab67a77e92aca7e278f0fe5f05769c464736f6c63430008090033

Deployed Bytecode Sourcemap

43218:4126:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29907:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30834:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32347:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31864:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43479:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46210:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46316:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44011:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33047:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46399:622;;;;;;;;;;;;;:::i;:::-;;33454:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44522:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45750:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45966:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43629:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43401:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43599:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43368:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30545:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30276:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10443:103;;;;;;;;;;;;;:::i;:::-;;46104:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9795:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43554:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31003:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44106:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32590:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43439:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45830:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33710:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45163:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43518:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45663:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32816:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44361:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10701:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29907:305;30009:4;30061:25;30046:40;;;:11;:40;;;;:105;;;;30118:33;30103:48;;;:11;:48;;;;30046:105;:158;;;;30168:36;30192:11;30168:23;:36::i;:::-;30046:158;30026:178;;29907:305;;;:::o;30834:100::-;30888:13;30921:5;30914:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30834:100;:::o;32347:171::-;32423:7;32443:23;32458:7;32443:14;:23::i;:::-;32486:15;:24;32502:7;32486:24;;;;;;;;;;;;;;;;;;;;;32479:31;;32347:171;;;:::o;31864:417::-;31945:13;31961:23;31976:7;31961:14;:23::i;:::-;31945:39;;32009:5;32003:11;;:2;:11;;;;31995:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;32103:5;32087:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;32112:37;32129:5;32136:12;:10;:12::i;:::-;32112:16;:37::i;:::-;32087:62;32065:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;32252:21;32261:2;32265:7;32252:8;:21::i;:::-;31934:347;31864:417;;:::o;43479:34::-;;;;:::o;46210:100::-;9681:13;:11;:13::i;:::-;46294:10:::1;46282:9;:22;;;;;;;;;;;;:::i;:::-;;46210:100:::0;:::o;46316:77::-;9681:13;:11;:13::i;:::-;46381:6:::1;46372;;:15;;;;;;;;;;;;;;;;;;46316:77:::0;:::o;44011:89::-;44055:7;44078:16;:6;:14;:16::i;:::-;44071:23;;44011:89;:::o;33047:336::-;33242:41;33261:12;:10;:12::i;:::-;33275:7;33242:18;:41::i;:::-;33234:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;33347:28;33357:4;33363:2;33367:7;33347:9;:28::i;:::-;33047:336;;;:::o;46399:622::-;9681:13;:11;:13::i;:::-;46530:7:::1;46551:42;46543:56;;46635:3;46631:1;46607:21;:25;;;;:::i;:::-;:31;;;;:::i;:::-;46543:100;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46529:114;;;46658:2;46650:11;;;::::0;::::1;;46843:7;46864;:5;:7::i;:::-;46856:21;;46885;46856:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46842:69;;;46926:2;46918:11;;;::::0;::::1;;46436:585;;46399:622::o:0;33454:185::-;33592:39;33609:4;33615:2;33619:7;33592:39;;;;;;;;;;;;:16;:39::i;:::-;33454:185;;;:::o;44522:635::-;44597:16;44625:23;44651:17;44661:6;44651:9;:17::i;:::-;44625:43;;44675:30;44722:15;44708:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44675:63;;44745:22;44770:1;44745:26;;44778:23;44814:309;44839:15;44821;:33;:64;;;;;44876:9;;44858:14;:27;;44821:64;44814:309;;;44896:25;44924:23;44932:14;44924:7;:23::i;:::-;44896:51;;44983:6;44962:27;;:17;:27;;;44958:131;;;45035:14;45002:13;45016:15;45002:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;45062:17;;;;;:::i;:::-;;;;44958:131;45099:16;;;;;:::i;:::-;;;;44887:236;44814:309;;;45138:13;45131:20;;;;;;44522:635;;;:::o;45750:74::-;9681:13;:11;:13::i;:::-;45813:5:::1;45806:4;:12;;;;45750:74:::0;:::o;45966:132::-;9681:13;:11;:13::i;:::-;46074:18:::1;46054:17;:38;;;;;;;;;;;;:::i;:::-;;45966:132:::0;:::o;43629:27::-;;;;;;;;;;;;;:::o;43401:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43599:25::-;;;;;;;;;;;;;:::o;43368:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30545:222::-;30617:7;30637:13;30653:7;:16;30661:7;30653:16;;;;;;;;;;;;;;;;;;;;;30637:32;;30705:1;30688:19;;:5;:19;;;;30680:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;30754:5;30747:12;;;30545:222;;;:::o;30276:207::-;30348:7;30393:1;30376:19;;:5;:19;;;;30368:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30459:9;:16;30469:5;30459:16;;;;;;;;;;;;;;;;30452:23;;30276:207;;;:::o;10443:103::-;9681:13;:11;:13::i;:::-;10508:30:::1;10535:1;10508:18;:30::i;:::-;10443:103::o:0;46104:100::-;9681:13;:11;:13::i;:::-;46188:10:::1;46176:9;:22;;;;;;;;;;;;:::i;:::-;;46104:100:::0;:::o;9795:87::-;9841:7;9868:6;;;;;;;;;;;9861:13;;9795:87;:::o;43554:38::-;;;;:::o;31003:104::-;31059:13;31092:7;31085:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31003:104;:::o;44106:247::-;44171:11;43845:1;43831:11;:15;:52;;;;;43865:18;;43850:11;:33;;43831:52;43823:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;43957:9;;43942:11;43923:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;43915:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;44200:6:::1;;;;;;;;;;;44199:7;44191:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;44269:11;44262:4;;:18;;;;:::i;:::-;44249:9;:31;;44241:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;44313:34;44323:10;44335:11;44313:9;:34::i;:::-;44106:247:::0;;:::o;32590:155::-;32685:52;32704:12;:10;:12::i;:::-;32718:8;32728;32685:18;:52::i;:::-;32590:155;;:::o;43439:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45830:130::-;9681:13;:11;:13::i;:::-;45935:19:::1;45914:18;:40;;;;45830:130:::0;:::o;33710:323::-;33884:41;33903:12;:10;:12::i;:::-;33917:7;33884:18;:41::i;:::-;33876:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;33987:38;34001:4;34007:2;34011:7;34020:4;33987:13;:38::i;:::-;33710:323;;;;:::o;45163:494::-;45262:13;45303:17;45311:8;45303:7;:17::i;:::-;45287:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;45410:5;45398:17;;:8;;;;;;;;;;;:17;;;45394:64;;;45433:17;45426:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45394:64;45466:28;45497:10;:8;:10::i;:::-;45466:41;;45552:1;45527:14;45521:28;:32;:130;;;;;;;;;;;;;;;;;45589:14;45605:19;:8;:17;:19::i;:::-;45626:9;45572:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45521:130;45514:137;;;45163:494;;;;:::o;43518:31::-;;;;:::o;45663:81::-;9681:13;:11;:13::i;:::-;45732:6:::1;45721:8;;:17;;;;;;;;;;;;;;;;;;45663:81:::0;:::o;32816:164::-;32913:4;32937:18;:25;32956:5;32937:25;;;;;;;;;;;;;;;:35;32963:8;32937:35;;;;;;;;;;;;;;;;;;;;;;;;;32930:42;;32816:164;;;;:::o;44361:155::-;44447:11;43845:1;43831:11;:15;:52;;;;;43865:18;;43850:11;:33;;43831:52;43823:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;43957:9;;43942:11;43923:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;43915:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;9681:13:::1;:11;:13::i;:::-;44477:33:::2;44487:9;44498:11;44477:9;:33::i;:::-;44361:155:::0;;;:::o;10701:201::-;9681:13;:11;:13::i;:::-;10810:1:::1;10790:22;;:8;:22;;;;10782:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10866:28;10885:8;10866:18;:28::i;:::-;10701:201:::0;:::o;22649:157::-;22734:4;22773:25;22758:40;;;:11;:40;;;;22751:47;;22649:157;;;:::o;40322:135::-;40404:16;40412:7;40404;:16::i;:::-;40396:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;40322:135;:::o;8346:98::-;8399:7;8426:10;8419:17;;8346:98;:::o;39601:174::-;39703:2;39676:15;:24;39692:7;39676:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39759:7;39755:2;39721:46;;39730:23;39745:7;39730:14;:23::i;:::-;39721:46;;;;;;;;;;;;39601:174;;:::o;9960:132::-;10035:12;:10;:12::i;:::-;10024:23;;:7;:5;:7::i;:::-;:23;;;10016:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9960:132::o;4577:114::-;4642:7;4669;:14;;;4662:21;;4577:114;;;:::o;35834:264::-;35927:4;35944:13;35960:23;35975:7;35960:14;:23::i;:::-;35944:39;;36013:5;36002:16;;:7;:16;;;:52;;;;36022:32;36039:5;36046:7;36022:16;:32::i;:::-;36002:52;:87;;;;36082:7;36058:31;;:20;36070:7;36058:11;:20::i;:::-;:31;;;36002:87;35994:96;;;35834:264;;;;:::o;38857:625::-;39016:4;38989:31;;:23;39004:7;38989:14;:23::i;:::-;:31;;;38981:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;39095:1;39081:16;;:2;:16;;;;39073:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;39151:39;39172:4;39178:2;39182:7;39151:20;:39::i;:::-;39255:29;39272:1;39276:7;39255:8;:29::i;:::-;39316:1;39297:9;:15;39307:4;39297:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;39345:1;39328:9;:13;39338:2;39328:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;39376:2;39357:7;:16;39365:7;39357:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;39415:7;39411:2;39396:27;;39405:4;39396:27;;;;;;;;;;;;39436:38;39456:4;39462:2;39466:7;39436:19;:38::i;:::-;38857:625;;;:::o;11062:191::-;11136:16;11155:6;;;;;;;;;;;11136:25;;11181:8;11172:6;;:17;;;;;;;;;;;;;;;;;;11236:8;11205:40;;11226:8;11205:40;;;;;;;;;;;;11125:128;11062:191;:::o;47027:204::-;47107:9;47102:124;47126:11;47122:1;:15;47102:124;;;47153:18;:6;:16;:18::i;:::-;47180:38;47190:9;47201:16;:6;:14;:16::i;:::-;47180:9;:38::i;:::-;47139:3;;;;;:::i;:::-;;;;47102:124;;;;47027:204;;:::o;39918:315::-;40073:8;40064:17;;:5;:17;;;;40056:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;40160:8;40122:18;:25;40141:5;40122:25;;;;;;;;;;;;;;;:35;40148:8;40122:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;40206:8;40184:41;;40199:5;40184:41;;;40216:8;40184:41;;;;;;:::i;:::-;;;;;;;;39918:315;;;:::o;34914:313::-;35070:28;35080:4;35086:2;35090:7;35070:9;:28::i;:::-;35117:47;35140:4;35146:2;35150:7;35159:4;35117:22;:47::i;:::-;35109:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;34914:313;;;;:::o;35540:127::-;35605:4;35657:1;35629:30;;:7;:16;35637:7;35629:16;;;;;;;;;;;;;;;;;;;;;:30;;;;35622:37;;35540:127;;;:::o;47237:104::-;47297:13;47326:9;47319:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47237:104;:::o;5600:723::-;5656:13;5886:1;5877:5;:10;5873:53;;;5904:10;;;;;;;;;;;;;;;;;;;;;5873:53;5936:12;5951:5;5936:20;;5967:14;5992:78;6007:1;5999:4;:9;5992:78;;6025:8;;;;;:::i;:::-;;;;6056:2;6048:10;;;;;:::i;:::-;;;5992:78;;;6080:19;6112:6;6102:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6080:39;;6130:154;6146:1;6137:5;:10;6130:154;;6174:1;6164:11;;;;;:::i;:::-;;;6241:2;6233:5;:10;;;;:::i;:::-;6220:2;:24;;;;:::i;:::-;6207:39;;6190:6;6197;6190:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6270:2;6261:11;;;;;:::i;:::-;;;6130:154;;;6308:6;6294:21;;;;;5600:723;;;;:::o;42446:126::-;;;;:::o;42957:125::-;;;;:::o;4699:127::-;4806:1;4788:7;:14;;;:19;;;;;;;;;;;4699:127;:::o;36440:110::-;36516:26;36526:2;36530:7;36516:26;;;;;;;;;;;;:9;:26::i;:::-;36440:110;;:::o;41021:853::-;41175:4;41196:15;:2;:13;;;:15::i;:::-;41192:675;;;41248:2;41232:36;;;41269:12;:10;:12::i;:::-;41283:4;41289:7;41298:4;41232:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41228:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41490:1;41473:6;:13;:18;41469:328;;;41516:60;;;;;;;;;;:::i;:::-;;;;;;;;41469:328;41747:6;41741:13;41732:6;41728:2;41724:15;41717:38;41228:584;41364:41;;;41354:51;;;:6;:51;;;;41347:58;;;;;41192:675;41851:4;41844:11;;41021:853;;;;;;;:::o;36777:319::-;36906:18;36912:2;36916:7;36906:5;:18::i;:::-;36957:53;36988:1;36992:2;36996:7;37005:4;36957:22;:53::i;:::-;36935:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;36777:319;;;:::o;12493:326::-;12553:4;12810:1;12788:7;:19;;;:23;12781:30;;12493:326;;;:::o;37432:439::-;37526:1;37512:16;;:2;:16;;;;37504:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;37585:16;37593:7;37585;:16::i;:::-;37584:17;37576:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;37647:45;37676:1;37680:2;37684:7;37647:20;:45::i;:::-;37722:1;37705:9;:13;37715:2;37705:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;37753:2;37734:7;:16;37742:7;37734:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;37798:7;37794:2;37773:33;;37790:1;37773:33;;;;;;;;;;;;37819:44;37847:1;37851:2;37855:7;37819:19;:44::i;:::-;37432:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:619::-;8578:6;8586;8594;8643:2;8631:9;8622:7;8618:23;8614:32;8611:119;;;8649:79;;:::i;:::-;8611:119;8769:1;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8740:117;8896:2;8922:53;8967:7;8958:6;8947:9;8943:22;8922:53;:::i;:::-;8912:63;;8867:118;9024:2;9050:53;9095:7;9086:6;9075:9;9071:22;9050:53;:::i;:::-;9040:63;;8995:118;8501:619;;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:114::-;9528:6;9562:5;9556:12;9546:22;;9461:114;;;:::o;9581:184::-;9680:11;9714:6;9709:3;9702:19;9754:4;9749:3;9745:14;9730:29;;9581:184;;;;:::o;9771:132::-;9838:4;9861:3;9853:11;;9891:4;9886:3;9882:14;9874:22;;9771:132;;;:::o;9909:108::-;9986:24;10004:5;9986:24;:::i;:::-;9981:3;9974:37;9909:108;;:::o;10023:179::-;10092:10;10113:46;10155:3;10147:6;10113:46;:::i;:::-;10191:4;10186:3;10182:14;10168:28;;10023:179;;;;:::o;10208:113::-;10278:4;10310;10305:3;10301:14;10293:22;;10208:113;;;:::o;10357:732::-;10476:3;10505:54;10553:5;10505:54;:::i;:::-;10575:86;10654:6;10649:3;10575:86;:::i;:::-;10568:93;;10685:56;10735:5;10685:56;:::i;:::-;10764:7;10795:1;10780:284;10805:6;10802:1;10799:13;10780:284;;;10881:6;10875:13;10908:63;10967:3;10952:13;10908:63;:::i;:::-;10901:70;;10994:60;11047:6;10994:60;:::i;:::-;10984:70;;10840:224;10827:1;10824;10820:9;10815:14;;10780:284;;;10784:14;11080:3;11073:10;;10481:608;;;10357:732;;;;:::o;11095:373::-;11238:4;11276:2;11265:9;11261:18;11253:26;;11325:9;11319:4;11315:20;11311:1;11300:9;11296:17;11289:47;11353:108;11456:4;11447:6;11353:108;:::i;:::-;11345:116;;11095:373;;;;:::o;11474:468::-;11539:6;11547;11596:2;11584:9;11575:7;11571:23;11567:32;11564:119;;;11602:79;;:::i;:::-;11564:119;11722:1;11747:53;11792:7;11783:6;11772:9;11768:22;11747:53;:::i;:::-;11737:63;;11693:117;11849:2;11875:50;11917:7;11908:6;11897:9;11893:22;11875:50;:::i;:::-;11865:60;;11820:115;11474:468;;;;;:::o;11948:307::-;12009:4;12099:18;12091:6;12088:30;12085:56;;;12121:18;;:::i;:::-;12085:56;12159:29;12181:6;12159:29;:::i;:::-;12151:37;;12243:4;12237;12233:15;12225:23;;11948:307;;;:::o;12261:410::-;12338:5;12363:65;12379:48;12420:6;12379:48;:::i;:::-;12363:65;:::i;:::-;12354:74;;12451:6;12444:5;12437:21;12489:4;12482:5;12478:16;12527:3;12518:6;12513:3;12509:16;12506:25;12503:112;;;12534:79;;:::i;:::-;12503:112;12624:41;12658:6;12653:3;12648;12624:41;:::i;:::-;12344:327;12261:410;;;;;:::o;12690:338::-;12745:5;12794:3;12787:4;12779:6;12775:17;12771:27;12761:122;;12802:79;;:::i;:::-;12761:122;12919:6;12906:20;12944:78;13018:3;13010:6;13003:4;12995:6;12991:17;12944:78;:::i;:::-;12935:87;;12751:277;12690:338;;;;:::o;13034:943::-;13129:6;13137;13145;13153;13202:3;13190:9;13181:7;13177:23;13173:33;13170:120;;;13209:79;;:::i;:::-;13170:120;13329:1;13354:53;13399:7;13390:6;13379:9;13375:22;13354:53;:::i;:::-;13344:63;;13300:117;13456:2;13482:53;13527:7;13518:6;13507:9;13503:22;13482:53;:::i;:::-;13472:63;;13427:118;13584:2;13610:53;13655:7;13646:6;13635:9;13631:22;13610:53;:::i;:::-;13600:63;;13555:118;13740:2;13729:9;13725:18;13712:32;13771:18;13763:6;13760:30;13757:117;;;13793:79;;:::i;:::-;13757:117;13898:62;13952:7;13943:6;13932:9;13928:22;13898:62;:::i;:::-;13888:72;;13683:287;13034:943;;;;;;;:::o;13983:474::-;14051:6;14059;14108:2;14096:9;14087:7;14083:23;14079:32;14076:119;;;14114:79;;:::i;:::-;14076:119;14234:1;14259:53;14304:7;14295:6;14284:9;14280:22;14259:53;:::i;:::-;14249:63;;14205:117;14361:2;14387:53;14432:7;14423:6;14412:9;14408:22;14387:53;:::i;:::-;14377:63;;14332:118;13983:474;;;;;:::o;14463:::-;14531:6;14539;14588:2;14576:9;14567:7;14563:23;14559:32;14556:119;;;14594:79;;:::i;:::-;14556:119;14714:1;14739:53;14784:7;14775:6;14764:9;14760:22;14739:53;:::i;:::-;14729:63;;14685:117;14841:2;14867:53;14912:7;14903:6;14892:9;14888:22;14867:53;:::i;:::-;14857:63;;14812:118;14463:474;;;;;:::o;14943:180::-;14991:77;14988:1;14981:88;15088:4;15085:1;15078:15;15112:4;15109:1;15102:15;15129:320;15173:6;15210:1;15204:4;15200:12;15190:22;;15257:1;15251:4;15247:12;15278:18;15268:81;;15334:4;15326:6;15322:17;15312:27;;15268:81;15396:2;15388:6;15385:14;15365:18;15362:38;15359:84;;;15415:18;;:::i;:::-;15359:84;15180:269;15129:320;;;:::o;15455:220::-;15595:34;15591:1;15583:6;15579:14;15572:58;15664:3;15659:2;15651:6;15647:15;15640:28;15455:220;:::o;15681:366::-;15823:3;15844:67;15908:2;15903:3;15844:67;:::i;:::-;15837:74;;15920:93;16009:3;15920:93;:::i;:::-;16038:2;16033:3;16029:12;16022:19;;15681:366;;;:::o;16053:419::-;16219:4;16257:2;16246:9;16242:18;16234:26;;16306:9;16300:4;16296:20;16292:1;16281:9;16277:17;16270:47;16334:131;16460:4;16334:131;:::i;:::-;16326:139;;16053:419;;;:::o;16478:249::-;16618:34;16614:1;16606:6;16602:14;16595:58;16687:32;16682:2;16674:6;16670:15;16663:57;16478:249;:::o;16733:366::-;16875:3;16896:67;16960:2;16955:3;16896:67;:::i;:::-;16889:74;;16972:93;17061:3;16972:93;:::i;:::-;17090:2;17085:3;17081:12;17074:19;;16733:366;;;:::o;17105:419::-;17271:4;17309:2;17298:9;17294:18;17286:26;;17358:9;17352:4;17348:20;17344:1;17333:9;17329:17;17322:47;17386:131;17512:4;17386:131;:::i;:::-;17378:139;;17105:419;;;:::o;17530:233::-;17670:34;17666:1;17658:6;17654:14;17647:58;17739:16;17734:2;17726:6;17722:15;17715:41;17530:233;:::o;17769:366::-;17911:3;17932:67;17996:2;17991:3;17932:67;:::i;:::-;17925:74;;18008:93;18097:3;18008:93;:::i;:::-;18126:2;18121:3;18117:12;18110:19;;17769:366;;;:::o;18141:419::-;18307:4;18345:2;18334:9;18330:18;18322:26;;18394:9;18388:4;18384:20;18380:1;18369:9;18365:17;18358:47;18422:131;18548:4;18422:131;:::i;:::-;18414:139;;18141:419;;;:::o;18566:180::-;18614:77;18611:1;18604:88;18711:4;18708:1;18701:15;18735:4;18732:1;18725:15;18752:348;18792:7;18815:20;18833:1;18815:20;:::i;:::-;18810:25;;18849:20;18867:1;18849:20;:::i;:::-;18844:25;;19037:1;18969:66;18965:74;18962:1;18959:81;18954:1;18947:9;18940:17;18936:105;18933:131;;;19044:18;;:::i;:::-;18933:131;19092:1;19089;19085:9;19074:20;;18752:348;;;;:::o;19106:180::-;19154:77;19151:1;19144:88;19251:4;19248:1;19241:15;19275:4;19272:1;19265:15;19292:185;19332:1;19349:20;19367:1;19349:20;:::i;:::-;19344:25;;19383:20;19401:1;19383:20;:::i;:::-;19378:25;;19422:1;19412:35;;19427:18;;:::i;:::-;19412:35;19469:1;19466;19462:9;19457:14;;19292:185;;;;:::o;19483:147::-;19584:11;19621:3;19606:18;;19483:147;;;;:::o;19636:114::-;;:::o;19756:398::-;19915:3;19936:83;20017:1;20012:3;19936:83;:::i;:::-;19929:90;;20028:93;20117:3;20028:93;:::i;:::-;20146:1;20141:3;20137:11;20130:18;;19756:398;;;:::o;20160:379::-;20344:3;20366:147;20509:3;20366:147;:::i;:::-;20359:154;;20530:3;20523:10;;20160:379;;;:::o;20545:180::-;20593:77;20590:1;20583:88;20690:4;20687:1;20680:15;20714:4;20711:1;20704:15;20731:233;20770:3;20793:24;20811:5;20793:24;:::i;:::-;20784:33;;20839:66;20832:5;20829:77;20826:103;;;20909:18;;:::i;:::-;20826:103;20956:1;20949:5;20945:13;20938:20;;20731:233;;;:::o;20970:174::-;21110:26;21106:1;21098:6;21094:14;21087:50;20970:174;:::o;21150:366::-;21292:3;21313:67;21377:2;21372:3;21313:67;:::i;:::-;21306:74;;21389:93;21478:3;21389:93;:::i;:::-;21507:2;21502:3;21498:12;21491:19;;21150:366;;;:::o;21522:419::-;21688:4;21726:2;21715:9;21711:18;21703:26;;21775:9;21769:4;21765:20;21761:1;21750:9;21746:17;21739:47;21803:131;21929:4;21803:131;:::i;:::-;21795:139;;21522:419;;;:::o;21947:228::-;22087:34;22083:1;22075:6;22071:14;22064:58;22156:11;22151:2;22143:6;22139:15;22132:36;21947:228;:::o;22181:366::-;22323:3;22344:67;22408:2;22403:3;22344:67;:::i;:::-;22337:74;;22420:93;22509:3;22420:93;:::i;:::-;22538:2;22533:3;22529:12;22522:19;;22181:366;;;:::o;22553:419::-;22719:4;22757:2;22746:9;22742:18;22734:26;;22806:9;22800:4;22796:20;22792:1;22781:9;22777:17;22770:47;22834:131;22960:4;22834:131;:::i;:::-;22826:139;;22553:419;;;:::o;22978:170::-;23118:22;23114:1;23106:6;23102:14;23095:46;22978:170;:::o;23154:366::-;23296:3;23317:67;23381:2;23376:3;23317:67;:::i;:::-;23310:74;;23393:93;23482:3;23393:93;:::i;:::-;23511:2;23506:3;23502:12;23495:19;;23154:366;;;:::o;23526:419::-;23692:4;23730:2;23719:9;23715:18;23707:26;;23779:9;23773:4;23769:20;23765:1;23754:9;23750:17;23743:47;23807:131;23933:4;23807:131;:::i;:::-;23799:139;;23526:419;;;:::o;23951:305::-;23991:3;24010:20;24028:1;24010:20;:::i;:::-;24005:25;;24044:20;24062:1;24044:20;:::i;:::-;24039:25;;24198:1;24130:66;24126:74;24123:1;24120:81;24117:107;;;24204:18;;:::i;:::-;24117:107;24248:1;24245;24241:9;24234:16;;23951:305;;;;:::o;24262:170::-;24402:22;24398:1;24390:6;24386:14;24379:46;24262:170;:::o;24438:366::-;24580:3;24601:67;24665:2;24660:3;24601:67;:::i;:::-;24594:74;;24677:93;24766:3;24677:93;:::i;:::-;24795:2;24790:3;24786:12;24779:19;;24438:366;;;:::o;24810:419::-;24976:4;25014:2;25003:9;24999:18;24991:26;;25063:9;25057:4;25053:20;25049:1;25038:9;25034:17;25027:47;25091:131;25217:4;25091:131;:::i;:::-;25083:139;;24810:419;;;:::o;25235:173::-;25375:25;25371:1;25363:6;25359:14;25352:49;25235:173;:::o;25414:366::-;25556:3;25577:67;25641:2;25636:3;25577:67;:::i;:::-;25570:74;;25653:93;25742:3;25653:93;:::i;:::-;25771:2;25766:3;25762:12;25755:19;;25414:366;;;:::o;25786:419::-;25952:4;25990:2;25979:9;25975:18;25967:26;;26039:9;26033:4;26029:20;26025:1;26014:9;26010:17;26003:47;26067:131;26193:4;26067:131;:::i;:::-;26059:139;;25786:419;;;:::o;26211:169::-;26351:21;26347:1;26339:6;26335:14;26328:45;26211:169;:::o;26386:366::-;26528:3;26549:67;26613:2;26608:3;26549:67;:::i;:::-;26542:74;;26625:93;26714:3;26625:93;:::i;:::-;26743:2;26738:3;26734:12;26727:19;;26386:366;;;:::o;26758:419::-;26924:4;26962:2;26951:9;26947:18;26939:26;;27011:9;27005:4;27001:20;26997:1;26986:9;26982:17;26975:47;27039:131;27165:4;27039:131;:::i;:::-;27031:139;;26758:419;;;:::o;27183:234::-;27323:34;27319:1;27311:6;27307:14;27300:58;27392:17;27387:2;27379:6;27375:15;27368:42;27183:234;:::o;27423:366::-;27565:3;27586:67;27650:2;27645:3;27586:67;:::i;:::-;27579:74;;27662:93;27751:3;27662:93;:::i;:::-;27780:2;27775:3;27771:12;27764:19;;27423:366;;;:::o;27795:419::-;27961:4;27999:2;27988:9;27984:18;27976:26;;28048:9;28042:4;28038:20;28034:1;28023:9;28019:17;28012:47;28076:131;28202:4;28076:131;:::i;:::-;28068:139;;27795:419;;;:::o;28220:148::-;28322:11;28359:3;28344:18;;28220:148;;;;:::o;28374:377::-;28480:3;28508:39;28541:5;28508:39;:::i;:::-;28563:89;28645:6;28640:3;28563:89;:::i;:::-;28556:96;;28661:52;28706:6;28701:3;28694:4;28687:5;28683:16;28661:52;:::i;:::-;28738:6;28733:3;28729:16;28722:23;;28484:267;28374:377;;;;:::o;28757:141::-;28806:4;28829:3;28821:11;;28852:3;28849:1;28842:14;28886:4;28883:1;28873:18;28865:26;;28757:141;;;:::o;28928:845::-;29031:3;29068:5;29062:12;29097:36;29123:9;29097:36;:::i;:::-;29149:89;29231:6;29226:3;29149:89;:::i;:::-;29142:96;;29269:1;29258:9;29254:17;29285:1;29280:137;;;;29431:1;29426:341;;;;29247:520;;29280:137;29364:4;29360:9;29349;29345:25;29340:3;29333:38;29400:6;29395:3;29391:16;29384:23;;29280:137;;29426:341;29493:38;29525:5;29493:38;:::i;:::-;29553:1;29567:154;29581:6;29578:1;29575:13;29567:154;;;29655:7;29649:14;29645:1;29640:3;29636:11;29629:35;29705:1;29696:7;29692:15;29681:26;;29603:4;29600:1;29596:12;29591:17;;29567:154;;;29750:6;29745:3;29741:16;29734:23;;29433:334;;29247:520;;29035:738;;28928:845;;;;:::o;29779:589::-;30004:3;30026:95;30117:3;30108:6;30026:95;:::i;:::-;30019:102;;30138:95;30229:3;30220:6;30138:95;:::i;:::-;30131:102;;30250:92;30338:3;30329:6;30250:92;:::i;:::-;30243:99;;30359:3;30352:10;;29779:589;;;;;;:::o;30374:225::-;30514:34;30510:1;30502:6;30498:14;30491:58;30583:8;30578:2;30570:6;30566:15;30559:33;30374:225;:::o;30605:366::-;30747:3;30768:67;30832:2;30827:3;30768:67;:::i;:::-;30761:74;;30844:93;30933:3;30844:93;:::i;:::-;30962:2;30957:3;30953:12;30946:19;;30605:366;;;:::o;30977:419::-;31143:4;31181:2;31170:9;31166:18;31158:26;;31230:9;31224:4;31220:20;31216:1;31205:9;31201:17;31194:47;31258:131;31384:4;31258:131;:::i;:::-;31250:139;;30977:419;;;:::o;31402:182::-;31542:34;31538:1;31530:6;31526:14;31519:58;31402:182;:::o;31590:366::-;31732:3;31753:67;31817:2;31812:3;31753:67;:::i;:::-;31746:74;;31829:93;31918:3;31829:93;:::i;:::-;31947:2;31942:3;31938:12;31931:19;;31590:366;;;:::o;31962:419::-;32128:4;32166:2;32155:9;32151:18;32143:26;;32215:9;32209:4;32205:20;32201:1;32190:9;32186:17;32179:47;32243:131;32369:4;32243:131;:::i;:::-;32235:139;;31962:419;;;:::o;32387:224::-;32527:34;32523:1;32515:6;32511:14;32504:58;32596:7;32591:2;32583:6;32579:15;32572:32;32387:224;:::o;32617:366::-;32759:3;32780:67;32844:2;32839:3;32780:67;:::i;:::-;32773:74;;32856:93;32945:3;32856:93;:::i;:::-;32974:2;32969:3;32965:12;32958:19;;32617:366;;;:::o;32989:419::-;33155:4;33193:2;33182:9;33178:18;33170:26;;33242:9;33236:4;33232:20;33228:1;33217:9;33213:17;33206:47;33270:131;33396:4;33270:131;:::i;:::-;33262:139;;32989:419;;;:::o;33414:223::-;33554:34;33550:1;33542:6;33538:14;33531:58;33623:6;33618:2;33610:6;33606:15;33599:31;33414:223;:::o;33643:366::-;33785:3;33806:67;33870:2;33865:3;33806:67;:::i;:::-;33799:74;;33882:93;33971:3;33882:93;:::i;:::-;34000:2;33995:3;33991:12;33984:19;;33643:366;;;:::o;34015:419::-;34181:4;34219:2;34208:9;34204:18;34196:26;;34268:9;34262:4;34258:20;34254:1;34243:9;34239:17;34232:47;34296:131;34422:4;34296:131;:::i;:::-;34288:139;;34015:419;;;:::o;34440:191::-;34480:4;34500:20;34518:1;34500:20;:::i;:::-;34495:25;;34534:20;34552:1;34534:20;:::i;:::-;34529:25;;34573:1;34570;34567:8;34564:34;;;34578:18;;:::i;:::-;34564:34;34623:1;34620;34616:9;34608:17;;34440:191;;;;:::o;34637:175::-;34777:27;34773:1;34765:6;34761:14;34754:51;34637:175;:::o;34818:366::-;34960:3;34981:67;35045:2;35040:3;34981:67;:::i;:::-;34974:74;;35057:93;35146:3;35057:93;:::i;:::-;35175:2;35170:3;35166:12;35159:19;;34818:366;;;:::o;35190:419::-;35356:4;35394:2;35383:9;35379:18;35371:26;;35443:9;35437:4;35433:20;35429:1;35418:9;35414:17;35407:47;35471:131;35597:4;35471:131;:::i;:::-;35463:139;;35190:419;;;:::o;35615:237::-;35755:34;35751:1;35743:6;35739:14;35732:58;35824:20;35819:2;35811:6;35807:15;35800:45;35615:237;:::o;35858:366::-;36000:3;36021:67;36085:2;36080:3;36021:67;:::i;:::-;36014:74;;36097:93;36186:3;36097:93;:::i;:::-;36215:2;36210:3;36206:12;36199:19;;35858:366;;;:::o;36230:419::-;36396:4;36434:2;36423:9;36419:18;36411:26;;36483:9;36477:4;36473:20;36469:1;36458:9;36454:17;36447:47;36511:131;36637:4;36511:131;:::i;:::-;36503:139;;36230:419;;;:::o;36655:176::-;36687:1;36704:20;36722:1;36704:20;:::i;:::-;36699:25;;36738:20;36756:1;36738:20;:::i;:::-;36733:25;;36777:1;36767:35;;36782:18;;:::i;:::-;36767:35;36823:1;36820;36816:9;36811:14;;36655:176;;;;:::o;36837:98::-;36888:6;36922:5;36916:12;36906:22;;36837:98;;;:::o;36941:168::-;37024:11;37058:6;37053:3;37046:19;37098:4;37093:3;37089:14;37074:29;;36941:168;;;;:::o;37115:360::-;37201:3;37229:38;37261:5;37229:38;:::i;:::-;37283:70;37346:6;37341:3;37283:70;:::i;:::-;37276:77;;37362:52;37407:6;37402:3;37395:4;37388:5;37384:16;37362:52;:::i;:::-;37439:29;37461:6;37439:29;:::i;:::-;37434:3;37430:39;37423:46;;37205:270;37115:360;;;;:::o;37481:640::-;37676:4;37714:3;37703:9;37699:19;37691:27;;37728:71;37796:1;37785:9;37781:17;37772:6;37728:71;:::i;:::-;37809:72;37877:2;37866:9;37862:18;37853:6;37809:72;:::i;:::-;37891;37959:2;37948:9;37944:18;37935:6;37891:72;:::i;:::-;38010:9;38004:4;38000:20;37995:2;37984:9;37980:18;37973:48;38038:76;38109:4;38100:6;38038:76;:::i;:::-;38030:84;;37481:640;;;;;;;:::o;38127:141::-;38183:5;38214:6;38208:13;38199:22;;38230:32;38256:5;38230:32;:::i;:::-;38127:141;;;;:::o;38274:349::-;38343:6;38392:2;38380:9;38371:7;38367:23;38363:32;38360:119;;;38398:79;;:::i;:::-;38360:119;38518:1;38543:63;38598:7;38589:6;38578:9;38574:22;38543:63;:::i;:::-;38533:73;;38489:127;38274:349;;;;:::o;38629:182::-;38769:34;38765:1;38757:6;38753:14;38746:58;38629:182;:::o;38817:366::-;38959:3;38980:67;39044:2;39039:3;38980:67;:::i;:::-;38973:74;;39056:93;39145:3;39056:93;:::i;:::-;39174:2;39169:3;39165:12;39158:19;;38817:366;;;:::o;39189:419::-;39355:4;39393:2;39382:9;39378:18;39370:26;;39442:9;39436:4;39432:20;39428:1;39417:9;39413:17;39406:47;39470:131;39596:4;39470:131;:::i;:::-;39462:139;;39189:419;;;:::o;39614:178::-;39754:30;39750:1;39742:6;39738:14;39731:54;39614:178;:::o;39798:366::-;39940:3;39961:67;40025:2;40020:3;39961:67;:::i;:::-;39954:74;;40037:93;40126:3;40037:93;:::i;:::-;40155:2;40150:3;40146:12;40139:19;;39798:366;;;:::o;40170:419::-;40336:4;40374:2;40363:9;40359:18;40351:26;;40423:9;40417:4;40413:20;40409:1;40398:9;40394:17;40387:47;40451:131;40577:4;40451:131;:::i;:::-;40443:139;;40170:419;;;:::o

Swarm Source

ipfs://9fc9a0aae8f7ff8c21af0d74ce40ce135ab67a77e92aca7e278f0fe5f05769c4
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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