ETH Price: $2,389.26 (-0.58%)
Gas: 2.85 Gwei

Token

WoF Game Ball (WoFGB)
 

Overview

Max Total Supply

444 WoFGB

Holders

438

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WoFGB
0x0c70c309536dE9Aa4957cc78483fAeD8B51534C3
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:
WoFGameBall

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-01
*/

//  SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

/**
 * @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/token/ERC721/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

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

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

//  
// 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/utils/[email protected]

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

//  
// 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/utils/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]

//  
// 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/[email protected]

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

pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/security/[email protected]

//  
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

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

    bool private _paused;

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

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

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

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

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

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


// File @openzeppelin/contracts/access/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File contracts/EvilWizards.sol

//  
pragma solidity ^0.8.4;
contract WoFGameBall is ERC721, ERC721Enumerable, Pausable, Ownable {
    using Strings for uint256;

    string public baseURI =
        "https://gateway.pinata.cloud/ipfs/QmaKmT3kpsvfAgTN7U8Qg3qQ8XfaNRJQAhxiY6kA3humRC/";
    string public baseExtension = ".json";
    uint256 public cost = 0 ether;
    uint256 public maxSupply = 444;
    uint256 public maxMintPerAddress = 1;
    bool public revealed = true;
    bool private startSale = false;
    string public notRevealedUri =
        "ipfs://QmaKmT3kpsvfAgTN7U8Qg3qQ8XfaNRJQAhxiY6kA3humRC";

    mapping (address => uint256) private mintCountPerAddress;

    constructor() ERC721("WoF Game Ball", "WoFGB") {}

    fallback() external payable {}

    receive() external payable {}

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

    function setBaseURI(string memory _baseuri) external onlyOwner {
        baseURI = _baseuri;
    }

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

        if (!revealed) {
            return notRevealedUri;
        }

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

    function reveal() public onlyOwner {
        revealed = true;
    }

    function setRevealed() external onlyOwner {
        revealed = !revealed;
    }

    function setNFTPrice(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function getNFTPrice() external view returns(uint256) {
        return cost;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

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

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) whenNotPaused {
        super._beforeTokenTransfer(from, to, tokenId);
    }

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

    function withdraw() external onlyOwner whenNotPaused returns(uint256){
        uint balance = address(this).balance;
        require(balance > 0, "NFT: No ether left to withdraw");

        (bool success, ) = payable(owner()).call{ value: balance } ("");
        require(success, "NFT: Transfer failed.");
        return balance;
    }

    function lastTokenID() external view returns(uint256) {
        return totalSupply();
    }

    function contractBalance() external view returns(uint256) {
        return address(this).balance;
    }

    function mint(address _to, uint256 _mintAmount) public payable whenNotPaused {
      uint256 supply = totalSupply();
      require(_mintAmount > 0);
      require(supply + _mintAmount <= maxSupply);
      if (msg.sender != owner()) {
        require(msg.value >= cost * _mintAmount);
      }

      for (uint256 i = 1; i <= _mintAmount; i++) {
          mintCountPerAddress[_to] = mintCountPerAddress[_to] + 1;
          require(mintCountPerAddress[_to] <= maxMintPerAddress, "Minting Limit exceeds.");
        _safeMint(_to, supply + i);
      }
    }

    function walletOfOwner(address _owner)
      public
      view
      returns (uint256[] memory)
    {
      uint256 ownerTokenCount = balanceOf(_owner);
      uint256[] memory tokenIds = new uint256[](ownerTokenCount);
      for (uint256 i; i < ownerTokenCount; i++) {
        tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
      }
      return tokenIds;
    }

    function _maxSupply() external view returns(uint256) {
        return maxSupply;
    }

    function safeMint(address to, uint256 tokenId) public onlyOwner {
        _safeMint(to, tokenId);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractBalance","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":"getNFTPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"lastTokenID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerAddress","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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseuri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setNFTPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052604051806080016040528060518152602001620050b560519139600b908051906020019062000035929190620002b9565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000083929190620002b9565b506000600d556101bc600e556001600f556001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff021916908315150217905550604051806060016040528060358152602001620051066035913960119080519060200190620000fb929190620002b9565b503480156200010957600080fd5b506040518060400160405280600d81526020017f576f462047616d652042616c6c000000000000000000000000000000000000008152506040518060400160405280600581526020017f576f46474200000000000000000000000000000000000000000000000000000081525081600090805190602001906200018e929190620002b9565b508060019080519060200190620001a7929190620002b9565b5050506000600a60006101000a81548160ff021916908315150217905550620001e5620001d9620001eb60201b60201c565b620001f360201b60201c565b620003cd565b600033905090565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002c79062000398565b90600052602060002090601f016020900481019282620002eb576000855562000337565b82601f106200030657805160ff191683800117855562000337565b8280016001018555821562000337579182015b828111156200033657825182559160200191906001019062000319565b5b5090506200034691906200034a565b5090565b5b80821115620003655760008160009055506001016200034b565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003b157607f821691505b602082108103620003c757620003c662000369565b5b50919050565b614cd880620003dd6000396000f3fe6080604052600436106102605760003560e01c80635c975abb11610144578063a22cb465116100b6578063d5abeb011161007a578063d5abeb01146108ad578063da3ef23f146108d8578063e985e9c514610901578063f2c4ce1e1461093e578063f2fde38b14610967578063fb107a4f1461099057610267565b8063a22cb465146107dc578063a475b5dd14610805578063b88d4fde1461081c578063c668286214610845578063c87b56dd1461087057610267565b806381530b681161010857806381530b68146106f25780638456cb591461071b5780638b7afe2e146107325780638da5cb5b1461075d57806395d89b4114610788578063a1448194146107b357610267565b80635c975abb1461060b5780636352211e146106365780636c0360eb1461067357806370a082311461069e578063715018a6146106db57610267565b80633521bd7e116101dd57806342842e0e116101a157806342842e0e146104e9578063438b6300146105125780634f6ccce71461054f578063518302271461058c57806355f804b3146105b7578063572849c4146105e057610267565b80633521bd7e146104495780633bd64968146104745780633ccfd60b1461048b5780633f4ba83a146104b657806340c10f19146104cd57610267565b806313faede61161022457806313faede61461036257806318160ddd1461038d57806322f4596f146103b857806323b872dd146103e35780632f745c591461040c57610267565b806301ffc9a71461026957806306fdde03146102a6578063081812fc146102d1578063081c8c441461030e578063095ea7b31461033957610267565b3661026757005b005b34801561027557600080fd5b50610290600480360381019061028b91906134e5565b6109bb565b60405161029d919061352d565b60405180910390f35b3480156102b257600080fd5b506102bb6109cd565b6040516102c891906135e1565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190613639565b610a5f565b60405161030591906136a7565b60405180910390f35b34801561031a57600080fd5b50610323610ae4565b60405161033091906135e1565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b91906136ee565b610b72565b005b34801561036e57600080fd5b50610377610c89565b604051610384919061373d565b60405180910390f35b34801561039957600080fd5b506103a2610c8f565b6040516103af919061373d565b60405180910390f35b3480156103c457600080fd5b506103cd610c9c565b6040516103da919061373d565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190613758565b610ca6565b005b34801561041857600080fd5b50610433600480360381019061042e91906136ee565b610d06565b604051610440919061373d565b60405180910390f35b34801561045557600080fd5b5061045e610dab565b60405161046b919061373d565b60405180910390f35b34801561048057600080fd5b50610489610dba565b005b34801561049757600080fd5b506104a0610e62565b6040516104ad919061373d565b60405180910390f35b3480156104c257600080fd5b506104cb61102b565b005b6104e760048036038101906104e291906136ee565b6110b1565b005b3480156104f557600080fd5b50610510600480360381019061050b9190613758565b6112d0565b005b34801561051e57600080fd5b50610539600480360381019061053491906137ab565b6112f0565b6040516105469190613896565b60405180910390f35b34801561055b57600080fd5b5061057660048036038101906105719190613639565b61139e565b604051610583919061373d565b60405180910390f35b34801561059857600080fd5b506105a161140f565b6040516105ae919061352d565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d991906139ed565b611422565b005b3480156105ec57600080fd5b506105f56114b8565b604051610602919061373d565b60405180910390f35b34801561061757600080fd5b506106206114be565b60405161062d919061352d565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190613639565b6114d5565b60405161066a91906136a7565b60405180910390f35b34801561067f57600080fd5b50610688611586565b60405161069591906135e1565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c091906137ab565b611614565b6040516106d2919061373d565b60405180910390f35b3480156106e757600080fd5b506106f06116cb565b005b3480156106fe57600080fd5b5061071960048036038101906107149190613639565b611753565b005b34801561072757600080fd5b506107306117d9565b005b34801561073e57600080fd5b5061074761185f565b604051610754919061373d565b60405180910390f35b34801561076957600080fd5b50610772611867565b60405161077f91906136a7565b60405180910390f35b34801561079457600080fd5b5061079d611891565b6040516107aa91906135e1565b60405180910390f35b3480156107bf57600080fd5b506107da60048036038101906107d591906136ee565b611923565b005b3480156107e857600080fd5b5061080360048036038101906107fe9190613a62565b6119ad565b005b34801561081157600080fd5b5061081a6119c3565b005b34801561082857600080fd5b50610843600480360381019061083e9190613b43565b611a5c565b005b34801561085157600080fd5b5061085a611abe565b60405161086791906135e1565b60405180910390f35b34801561087c57600080fd5b5061089760048036038101906108929190613639565b611b4c565b6040516108a491906135e1565b60405180910390f35b3480156108b957600080fd5b506108c2611c9d565b6040516108cf919061373d565b60405180910390f35b3480156108e457600080fd5b506108ff60048036038101906108fa91906139ed565b611ca3565b005b34801561090d57600080fd5b5061092860048036038101906109239190613bc6565b611d39565b604051610935919061352d565b60405180910390f35b34801561094a57600080fd5b50610965600480360381019061096091906139ed565b611dcd565b005b34801561097357600080fd5b5061098e600480360381019061098991906137ab565b611e63565b005b34801561099c57600080fd5b506109a5611f5a565b6040516109b2919061373d565b60405180910390f35b60006109c682611f64565b9050919050565b6060600080546109dc90613c35565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0890613c35565b8015610a555780601f10610a2a57610100808354040283529160200191610a55565b820191906000526020600020905b815481529060010190602001808311610a3857829003601f168201915b5050505050905090565b6000610a6a82611fde565b610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa090613cd8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60118054610af190613c35565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1d90613c35565b8015610b6a5780601f10610b3f57610100808354040283529160200191610b6a565b820191906000526020600020905b815481529060010190602001808311610b4d57829003601f168201915b505050505081565b6000610b7d826114d5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be490613d6a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c0c61204a565b73ffffffffffffffffffffffffffffffffffffffff161480610c3b5750610c3a81610c3561204a565b611d39565b5b610c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7190613dfc565b60405180910390fd5b610c848383612052565b505050565b600d5481565b6000600880549050905090565b6000600e54905090565b610cb7610cb161204a565b8261210b565b610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced90613e8e565b60405180910390fd5b610d018383836121e9565b505050565b6000610d1183611614565b8210610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4990613f20565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000610db5610c8f565b905090565b610dc261204a565b73ffffffffffffffffffffffffffffffffffffffff16610de0611867565b73ffffffffffffffffffffffffffffffffffffffff1614610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d90613f8c565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000610e6c61204a565b73ffffffffffffffffffffffffffffffffffffffff16610e8a611867565b73ffffffffffffffffffffffffffffffffffffffff1614610ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed790613f8c565b60405180910390fd5b610ee86114be565b15610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f90613ff8565b60405180910390fd5b600047905060008111610f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6790614064565b60405180910390fd5b6000610f7a611867565b73ffffffffffffffffffffffffffffffffffffffff1682604051610f9d906140b5565b60006040518083038185875af1925050503d8060008114610fda576040519150601f19603f3d011682016040523d82523d6000602084013e610fdf565b606091505b5050905080611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a90614116565b60405180910390fd5b819250505090565b61103361204a565b73ffffffffffffffffffffffffffffffffffffffff16611051611867565b73ffffffffffffffffffffffffffffffffffffffff16146110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e90613f8c565b60405180910390fd5b6110af61244f565b565b6110b96114be565b156110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f090613ff8565b60405180910390fd5b6000611103610c8f565b90506000821161111257600080fd5b600e5482826111219190614165565b111561112c57600080fd5b611134611867565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111815781600d5461117491906141bb565b34101561118057600080fd5b5b6000600190505b8281116112ca576001601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111db9190614165565b601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f54601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990614261565b60405180910390fd5b6112b78482846112b29190614165565b6124f1565b80806112c290614281565b915050611188565b50505050565b6112eb83838360405180602001604052806000815250611a5c565b505050565b606060006112fd83611614565b905060008167ffffffffffffffff81111561131b5761131a6138c2565b5b6040519080825280602002602001820160405280156113495781602001602082028036833780820191505090505b50905060005b82811015611393576113618582610d06565b828281518110611374576113736142c9565b5b602002602001018181525050808061138b90614281565b91505061134f565b508092505050919050565b60006113a8610c8f565b82106113e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e09061436a565b60405180910390fd5b600882815481106113fd576113fc6142c9565b5b90600052602060002001549050919050565b601060009054906101000a900460ff1681565b61142a61204a565b73ffffffffffffffffffffffffffffffffffffffff16611448611867565b73ffffffffffffffffffffffffffffffffffffffff161461149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149590613f8c565b60405180910390fd5b80600b90805190602001906114b49291906133d6565b5050565b600f5481565b6000600a60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361157d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611574906143fc565b60405180910390fd5b80915050919050565b600b805461159390613c35565b80601f01602080910402602001604051908101604052809291908181526020018280546115bf90613c35565b801561160c5780601f106115e15761010080835404028352916020019161160c565b820191906000526020600020905b8154815290600101906020018083116115ef57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b9061448e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116d361204a565b73ffffffffffffffffffffffffffffffffffffffff166116f1611867565b73ffffffffffffffffffffffffffffffffffffffff1614611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e90613f8c565b60405180910390fd5b611751600061250f565b565b61175b61204a565b73ffffffffffffffffffffffffffffffffffffffff16611779611867565b73ffffffffffffffffffffffffffffffffffffffff16146117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c690613f8c565b60405180910390fd5b80600d8190555050565b6117e161204a565b73ffffffffffffffffffffffffffffffffffffffff166117ff611867565b73ffffffffffffffffffffffffffffffffffffffff1614611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c90613f8c565b60405180910390fd5b61185d6125d5565b565b600047905090565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546118a090613c35565b80601f01602080910402602001604051908101604052809291908181526020018280546118cc90613c35565b80156119195780601f106118ee57610100808354040283529160200191611919565b820191906000526020600020905b8154815290600101906020018083116118fc57829003601f168201915b5050505050905090565b61192b61204a565b73ffffffffffffffffffffffffffffffffffffffff16611949611867565b73ffffffffffffffffffffffffffffffffffffffff161461199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199690613f8c565b60405180910390fd5b6119a982826124f1565b5050565b6119bf6119b861204a565b8383612678565b5050565b6119cb61204a565b73ffffffffffffffffffffffffffffffffffffffff166119e9611867565b73ffffffffffffffffffffffffffffffffffffffff1614611a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3690613f8c565b60405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b611a6d611a6761204a565b8361210b565b611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390613e8e565b60405180910390fd5b611ab8848484846127e4565b50505050565b600c8054611acb90613c35565b80601f0160208091040260200160405190810160405280929190818152602001828054611af790613c35565b8015611b445780601f10611b1957610100808354040283529160200191611b44565b820191906000526020600020905b815481529060010190602001808311611b2757829003601f168201915b505050505081565b6060611b5782611fde565b611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90614520565b60405180910390fd5b601060009054906101000a900460ff16611c3c5760118054611bb790613c35565b80601f0160208091040260200160405190810160405280929190818152602001828054611be390613c35565b8015611c305780601f10611c0557610100808354040283529160200191611c30565b820191906000526020600020905b815481529060010190602001808311611c1357829003601f168201915b50505050509050611c98565b6000611c46612840565b90506000815111611c665760405180602001604052806000815250611c94565b80611c70846128d2565b600c604051602001611c8493929190614610565b6040516020818303038152906040525b9150505b919050565b600e5481565b611cab61204a565b73ffffffffffffffffffffffffffffffffffffffff16611cc9611867565b73ffffffffffffffffffffffffffffffffffffffff1614611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1690613f8c565b60405180910390fd5b80600c9080519060200190611d359291906133d6565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dd561204a565b73ffffffffffffffffffffffffffffffffffffffff16611df3611867565b73ffffffffffffffffffffffffffffffffffffffff1614611e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4090613f8c565b60405180910390fd5b8060119080519060200190611e5f9291906133d6565b5050565b611e6b61204a565b73ffffffffffffffffffffffffffffffffffffffff16611e89611867565b73ffffffffffffffffffffffffffffffffffffffff1614611edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed690613f8c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f45906146b3565b60405180910390fd5b611f578161250f565b50565b6000600d54905090565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fd75750611fd682612a32565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120c5836114d5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061211682611fde565b612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c90614745565b60405180910390fd5b6000612160836114d5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121cf57508373ffffffffffffffffffffffffffffffffffffffff166121b784610a5f565b73ffffffffffffffffffffffffffffffffffffffff16145b806121e057506121df8185611d39565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612209826114d5565b73ffffffffffffffffffffffffffffffffffffffff161461225f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612256906147d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c590614869565b60405180910390fd5b6122d9838383612b14565b6122e4600082612052565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123349190614889565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461238b9190614165565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461244a838383612b6c565b505050565b6124576114be565b612496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248d90614909565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6124da61204a565b6040516124e791906136a7565b60405180910390a1565b61250b828260405180602001604052806000815250612b71565b5050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125dd6114be565b1561261d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261490613ff8565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861266161204a565b60405161266e91906136a7565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dd90614975565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127d7919061352d565b60405180910390a3505050565b6127ef8484846121e9565b6127fb84848484612bcc565b61283a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283190614a07565b60405180910390fd5b50505050565b6060600b805461284f90613c35565b80601f016020809104026020016040519081016040528092919081815260200182805461287b90613c35565b80156128c85780601f1061289d576101008083540402835291602001916128c8565b820191906000526020600020905b8154815290600101906020018083116128ab57829003601f168201915b5050505050905090565b606060008203612919576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a2d565b600082905060005b6000821461294b57808061293490614281565b915050600a826129449190614a56565b9150612921565b60008167ffffffffffffffff811115612967576129666138c2565b5b6040519080825280601f01601f1916602001820160405280156129995781602001600182028036833780820191505090505b5090505b60008514612a26576001826129b29190614889565b9150600a856129c19190614a87565b60306129cd9190614165565b60f81b8183815181106129e3576129e26142c9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a1f9190614a56565b945061299d565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612afd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b0d5750612b0c82612d53565b5b9050919050565b612b1c6114be565b15612b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5390613ff8565b60405180910390fd5b612b67838383612dbd565b505050565b505050565b612b7b8383612ecf565b612b886000848484612bcc565b612bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbe90614a07565b60405180910390fd5b505050565b6000612bed8473ffffffffffffffffffffffffffffffffffffffff166130a8565b15612d46578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c1661204a565b8786866040518563ffffffff1660e01b8152600401612c389493929190614b0d565b6020604051808303816000875af1925050508015612c7457506040513d601f19601f82011682018060405250810190612c719190614b6e565b60015b612cf6573d8060008114612ca4576040519150601f19603f3d011682016040523d82523d6000602084013e612ca9565b606091505b506000815103612cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce590614a07565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d4b565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612dc88383836130cb565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e0a57612e05816130d0565b612e49565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e4857612e478382613119565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e8b57612e8681613286565b612eca565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ec957612ec88282613357565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3590614be7565b60405180910390fd5b612f4781611fde565b15612f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7e90614c53565b60405180910390fd5b612f9360008383612b14565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fe39190614165565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130a460008383612b6c565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161312684611614565b6131309190614889565b9050600060076000848152602001908152602001600020549050818114613215576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061329a9190614889565b90506000600960008481526020019081526020016000205490506000600883815481106132ca576132c96142c9565b5b9060005260206000200154905080600883815481106132ec576132eb6142c9565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061333b5761333a614c73565b5b6001900381819060005260206000200160009055905550505050565b600061336283611614565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546133e290613c35565b90600052602060002090601f016020900481019282613404576000855561344b565b82601f1061341d57805160ff191683800117855561344b565b8280016001018555821561344b579182015b8281111561344a57825182559160200191906001019061342f565b5b509050613458919061345c565b5090565b5b8082111561347557600081600090555060010161345d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134c28161348d565b81146134cd57600080fd5b50565b6000813590506134df816134b9565b92915050565b6000602082840312156134fb576134fa613483565b5b6000613509848285016134d0565b91505092915050565b60008115159050919050565b61352781613512565b82525050565b6000602082019050613542600083018461351e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613582578082015181840152602081019050613567565b83811115613591576000848401525b50505050565b6000601f19601f8301169050919050565b60006135b382613548565b6135bd8185613553565b93506135cd818560208601613564565b6135d681613597565b840191505092915050565b600060208201905081810360008301526135fb81846135a8565b905092915050565b6000819050919050565b61361681613603565b811461362157600080fd5b50565b6000813590506136338161360d565b92915050565b60006020828403121561364f5761364e613483565b5b600061365d84828501613624565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061369182613666565b9050919050565b6136a181613686565b82525050565b60006020820190506136bc6000830184613698565b92915050565b6136cb81613686565b81146136d657600080fd5b50565b6000813590506136e8816136c2565b92915050565b6000806040838503121561370557613704613483565b5b6000613713858286016136d9565b925050602061372485828601613624565b9150509250929050565b61373781613603565b82525050565b6000602082019050613752600083018461372e565b92915050565b60008060006060848603121561377157613770613483565b5b600061377f868287016136d9565b9350506020613790868287016136d9565b92505060406137a186828701613624565b9150509250925092565b6000602082840312156137c1576137c0613483565b5b60006137cf848285016136d9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61380d81613603565b82525050565b600061381f8383613804565b60208301905092915050565b6000602082019050919050565b6000613843826137d8565b61384d81856137e3565b9350613858836137f4565b8060005b838110156138895781516138708882613813565b975061387b8361382b565b92505060018101905061385c565b5085935050505092915050565b600060208201905081810360008301526138b08184613838565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138fa82613597565b810181811067ffffffffffffffff82111715613919576139186138c2565b5b80604052505050565b600061392c613479565b905061393882826138f1565b919050565b600067ffffffffffffffff821115613958576139576138c2565b5b61396182613597565b9050602081019050919050565b82818337600083830152505050565b600061399061398b8461393d565b613922565b9050828152602081018484840111156139ac576139ab6138bd565b5b6139b784828561396e565b509392505050565b600082601f8301126139d4576139d36138b8565b5b81356139e484826020860161397d565b91505092915050565b600060208284031215613a0357613a02613483565b5b600082013567ffffffffffffffff811115613a2157613a20613488565b5b613a2d848285016139bf565b91505092915050565b613a3f81613512565b8114613a4a57600080fd5b50565b600081359050613a5c81613a36565b92915050565b60008060408385031215613a7957613a78613483565b5b6000613a87858286016136d9565b9250506020613a9885828601613a4d565b9150509250929050565b600067ffffffffffffffff821115613abd57613abc6138c2565b5b613ac682613597565b9050602081019050919050565b6000613ae6613ae184613aa2565b613922565b905082815260208101848484011115613b0257613b016138bd565b5b613b0d84828561396e565b509392505050565b600082601f830112613b2a57613b296138b8565b5b8135613b3a848260208601613ad3565b91505092915050565b60008060008060808587031215613b5d57613b5c613483565b5b6000613b6b878288016136d9565b9450506020613b7c878288016136d9565b9350506040613b8d87828801613624565b925050606085013567ffffffffffffffff811115613bae57613bad613488565b5b613bba87828801613b15565b91505092959194509250565b60008060408385031215613bdd57613bdc613483565b5b6000613beb858286016136d9565b9250506020613bfc858286016136d9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c4d57607f821691505b602082108103613c6057613c5f613c06565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613cc2602c83613553565b9150613ccd82613c66565b604082019050919050565b60006020820190508181036000830152613cf181613cb5565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d54602183613553565b9150613d5f82613cf8565b604082019050919050565b60006020820190508181036000830152613d8381613d47565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613de6603883613553565b9150613df182613d8a565b604082019050919050565b60006020820190508181036000830152613e1581613dd9565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613e78603183613553565b9150613e8382613e1c565b604082019050919050565b60006020820190508181036000830152613ea781613e6b565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613f0a602b83613553565b9150613f1582613eae565b604082019050919050565b60006020820190508181036000830152613f3981613efd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f76602083613553565b9150613f8182613f40565b602082019050919050565b60006020820190508181036000830152613fa581613f69565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613fe2601083613553565b9150613fed82613fac565b602082019050919050565b6000602082019050818103600083015261401181613fd5565b9050919050565b7f4e46543a204e6f206574686572206c65667420746f2077697468647261770000600082015250565b600061404e601e83613553565b915061405982614018565b602082019050919050565b6000602082019050818103600083015261407d81614041565b9050919050565b600081905092915050565b50565b600061409f600083614084565b91506140aa8261408f565b600082019050919050565b60006140c082614092565b9150819050919050565b7f4e46543a205472616e73666572206661696c65642e0000000000000000000000600082015250565b6000614100601583613553565b915061410b826140ca565b602082019050919050565b6000602082019050818103600083015261412f816140f3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061417082613603565b915061417b83613603565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141b0576141af614136565b5b828201905092915050565b60006141c682613603565b91506141d183613603565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561420a57614209614136565b5b828202905092915050565b7f4d696e74696e67204c696d697420657863656564732e00000000000000000000600082015250565b600061424b601683613553565b915061425682614215565b602082019050919050565b6000602082019050818103600083015261427a8161423e565b9050919050565b600061428c82613603565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036142be576142bd614136565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614354602c83613553565b915061435f826142f8565b604082019050919050565b6000602082019050818103600083015261438381614347565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006143e6602983613553565b91506143f18261438a565b604082019050919050565b60006020820190508181036000830152614415816143d9565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614478602a83613553565b91506144838261441c565b604082019050919050565b600060208201905081810360008301526144a78161446b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061450a602f83613553565b9150614515826144ae565b604082019050919050565b60006020820190508181036000830152614539816144fd565b9050919050565b600081905092915050565b600061455682613548565b6145608185614540565b9350614570818560208601613564565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461459e81613c35565b6145a88186614540565b945060018216600081146145c357600181146145d457614607565b60ff19831686528186019350614607565b6145dd8561457c565b60005b838110156145ff578154818901526001820191506020810190506145e0565b838801955050505b50505092915050565b600061461c828661454b565b9150614628828561454b565b91506146348284614591565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061469d602683613553565b91506146a882614641565b604082019050919050565b600060208201905081810360008301526146cc81614690565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061472f602c83613553565b915061473a826146d3565b604082019050919050565b6000602082019050818103600083015261475e81614722565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006147c1602583613553565b91506147cc82614765565b604082019050919050565b600060208201905081810360008301526147f0816147b4565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614853602483613553565b915061485e826147f7565b604082019050919050565b6000602082019050818103600083015261488281614846565b9050919050565b600061489482613603565b915061489f83613603565b9250828210156148b2576148b1614136565b5b828203905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006148f3601483613553565b91506148fe826148bd565b602082019050919050565b60006020820190508181036000830152614922816148e6565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061495f601983613553565b915061496a82614929565b602082019050919050565b6000602082019050818103600083015261498e81614952565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006149f1603283613553565b91506149fc82614995565b604082019050919050565b60006020820190508181036000830152614a20816149e4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a6182613603565b9150614a6c83613603565b925082614a7c57614a7b614a27565b5b828204905092915050565b6000614a9282613603565b9150614a9d83613603565b925082614aad57614aac614a27565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614adf82614ab8565b614ae98185614ac3565b9350614af9818560208601613564565b614b0281613597565b840191505092915050565b6000608082019050614b226000830187613698565b614b2f6020830186613698565b614b3c604083018561372e565b8181036060830152614b4e8184614ad4565b905095945050505050565b600081519050614b68816134b9565b92915050565b600060208284031215614b8457614b83613483565b5b6000614b9284828501614b59565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614bd1602083613553565b9150614bdc82614b9b565b602082019050919050565b60006020820190508181036000830152614c0081614bc4565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614c3d601c83613553565b9150614c4882614c07565b602082019050919050565b60006020820190508181036000830152614c6c81614c30565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea264697066735822122015127aa551e7536a86cce3d191fe6daf9119ea832bbc5f3aba124955d92711db64736f6c634300080d003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d614b6d54336b707376664167544e3755385167337151385866614e524a514168786959366b413368756d52432f697066733a2f2f516d614b6d54336b707376664167544e3755385167337151385866614e524a514168786959366b413368756d5243

Deployed Bytecode

0x6080604052600436106102605760003560e01c80635c975abb11610144578063a22cb465116100b6578063d5abeb011161007a578063d5abeb01146108ad578063da3ef23f146108d8578063e985e9c514610901578063f2c4ce1e1461093e578063f2fde38b14610967578063fb107a4f1461099057610267565b8063a22cb465146107dc578063a475b5dd14610805578063b88d4fde1461081c578063c668286214610845578063c87b56dd1461087057610267565b806381530b681161010857806381530b68146106f25780638456cb591461071b5780638b7afe2e146107325780638da5cb5b1461075d57806395d89b4114610788578063a1448194146107b357610267565b80635c975abb1461060b5780636352211e146106365780636c0360eb1461067357806370a082311461069e578063715018a6146106db57610267565b80633521bd7e116101dd57806342842e0e116101a157806342842e0e146104e9578063438b6300146105125780634f6ccce71461054f578063518302271461058c57806355f804b3146105b7578063572849c4146105e057610267565b80633521bd7e146104495780633bd64968146104745780633ccfd60b1461048b5780633f4ba83a146104b657806340c10f19146104cd57610267565b806313faede61161022457806313faede61461036257806318160ddd1461038d57806322f4596f146103b857806323b872dd146103e35780632f745c591461040c57610267565b806301ffc9a71461026957806306fdde03146102a6578063081812fc146102d1578063081c8c441461030e578063095ea7b31461033957610267565b3661026757005b005b34801561027557600080fd5b50610290600480360381019061028b91906134e5565b6109bb565b60405161029d919061352d565b60405180910390f35b3480156102b257600080fd5b506102bb6109cd565b6040516102c891906135e1565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190613639565b610a5f565b60405161030591906136a7565b60405180910390f35b34801561031a57600080fd5b50610323610ae4565b60405161033091906135e1565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b91906136ee565b610b72565b005b34801561036e57600080fd5b50610377610c89565b604051610384919061373d565b60405180910390f35b34801561039957600080fd5b506103a2610c8f565b6040516103af919061373d565b60405180910390f35b3480156103c457600080fd5b506103cd610c9c565b6040516103da919061373d565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190613758565b610ca6565b005b34801561041857600080fd5b50610433600480360381019061042e91906136ee565b610d06565b604051610440919061373d565b60405180910390f35b34801561045557600080fd5b5061045e610dab565b60405161046b919061373d565b60405180910390f35b34801561048057600080fd5b50610489610dba565b005b34801561049757600080fd5b506104a0610e62565b6040516104ad919061373d565b60405180910390f35b3480156104c257600080fd5b506104cb61102b565b005b6104e760048036038101906104e291906136ee565b6110b1565b005b3480156104f557600080fd5b50610510600480360381019061050b9190613758565b6112d0565b005b34801561051e57600080fd5b50610539600480360381019061053491906137ab565b6112f0565b6040516105469190613896565b60405180910390f35b34801561055b57600080fd5b5061057660048036038101906105719190613639565b61139e565b604051610583919061373d565b60405180910390f35b34801561059857600080fd5b506105a161140f565b6040516105ae919061352d565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d991906139ed565b611422565b005b3480156105ec57600080fd5b506105f56114b8565b604051610602919061373d565b60405180910390f35b34801561061757600080fd5b506106206114be565b60405161062d919061352d565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190613639565b6114d5565b60405161066a91906136a7565b60405180910390f35b34801561067f57600080fd5b50610688611586565b60405161069591906135e1565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c091906137ab565b611614565b6040516106d2919061373d565b60405180910390f35b3480156106e757600080fd5b506106f06116cb565b005b3480156106fe57600080fd5b5061071960048036038101906107149190613639565b611753565b005b34801561072757600080fd5b506107306117d9565b005b34801561073e57600080fd5b5061074761185f565b604051610754919061373d565b60405180910390f35b34801561076957600080fd5b50610772611867565b60405161077f91906136a7565b60405180910390f35b34801561079457600080fd5b5061079d611891565b6040516107aa91906135e1565b60405180910390f35b3480156107bf57600080fd5b506107da60048036038101906107d591906136ee565b611923565b005b3480156107e857600080fd5b5061080360048036038101906107fe9190613a62565b6119ad565b005b34801561081157600080fd5b5061081a6119c3565b005b34801561082857600080fd5b50610843600480360381019061083e9190613b43565b611a5c565b005b34801561085157600080fd5b5061085a611abe565b60405161086791906135e1565b60405180910390f35b34801561087c57600080fd5b5061089760048036038101906108929190613639565b611b4c565b6040516108a491906135e1565b60405180910390f35b3480156108b957600080fd5b506108c2611c9d565b6040516108cf919061373d565b60405180910390f35b3480156108e457600080fd5b506108ff60048036038101906108fa91906139ed565b611ca3565b005b34801561090d57600080fd5b5061092860048036038101906109239190613bc6565b611d39565b604051610935919061352d565b60405180910390f35b34801561094a57600080fd5b50610965600480360381019061096091906139ed565b611dcd565b005b34801561097357600080fd5b5061098e600480360381019061098991906137ab565b611e63565b005b34801561099c57600080fd5b506109a5611f5a565b6040516109b2919061373d565b60405180910390f35b60006109c682611f64565b9050919050565b6060600080546109dc90613c35565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0890613c35565b8015610a555780601f10610a2a57610100808354040283529160200191610a55565b820191906000526020600020905b815481529060010190602001808311610a3857829003601f168201915b5050505050905090565b6000610a6a82611fde565b610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa090613cd8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60118054610af190613c35565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1d90613c35565b8015610b6a5780601f10610b3f57610100808354040283529160200191610b6a565b820191906000526020600020905b815481529060010190602001808311610b4d57829003601f168201915b505050505081565b6000610b7d826114d5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be490613d6a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c0c61204a565b73ffffffffffffffffffffffffffffffffffffffff161480610c3b5750610c3a81610c3561204a565b611d39565b5b610c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7190613dfc565b60405180910390fd5b610c848383612052565b505050565b600d5481565b6000600880549050905090565b6000600e54905090565b610cb7610cb161204a565b8261210b565b610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced90613e8e565b60405180910390fd5b610d018383836121e9565b505050565b6000610d1183611614565b8210610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4990613f20565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000610db5610c8f565b905090565b610dc261204a565b73ffffffffffffffffffffffffffffffffffffffff16610de0611867565b73ffffffffffffffffffffffffffffffffffffffff1614610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d90613f8c565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000610e6c61204a565b73ffffffffffffffffffffffffffffffffffffffff16610e8a611867565b73ffffffffffffffffffffffffffffffffffffffff1614610ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed790613f8c565b60405180910390fd5b610ee86114be565b15610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f90613ff8565b60405180910390fd5b600047905060008111610f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6790614064565b60405180910390fd5b6000610f7a611867565b73ffffffffffffffffffffffffffffffffffffffff1682604051610f9d906140b5565b60006040518083038185875af1925050503d8060008114610fda576040519150601f19603f3d011682016040523d82523d6000602084013e610fdf565b606091505b5050905080611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a90614116565b60405180910390fd5b819250505090565b61103361204a565b73ffffffffffffffffffffffffffffffffffffffff16611051611867565b73ffffffffffffffffffffffffffffffffffffffff16146110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e90613f8c565b60405180910390fd5b6110af61244f565b565b6110b96114be565b156110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f090613ff8565b60405180910390fd5b6000611103610c8f565b90506000821161111257600080fd5b600e5482826111219190614165565b111561112c57600080fd5b611134611867565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111815781600d5461117491906141bb565b34101561118057600080fd5b5b6000600190505b8281116112ca576001601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111db9190614165565b601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f54601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990614261565b60405180910390fd5b6112b78482846112b29190614165565b6124f1565b80806112c290614281565b915050611188565b50505050565b6112eb83838360405180602001604052806000815250611a5c565b505050565b606060006112fd83611614565b905060008167ffffffffffffffff81111561131b5761131a6138c2565b5b6040519080825280602002602001820160405280156113495781602001602082028036833780820191505090505b50905060005b82811015611393576113618582610d06565b828281518110611374576113736142c9565b5b602002602001018181525050808061138b90614281565b91505061134f565b508092505050919050565b60006113a8610c8f565b82106113e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e09061436a565b60405180910390fd5b600882815481106113fd576113fc6142c9565b5b90600052602060002001549050919050565b601060009054906101000a900460ff1681565b61142a61204a565b73ffffffffffffffffffffffffffffffffffffffff16611448611867565b73ffffffffffffffffffffffffffffffffffffffff161461149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149590613f8c565b60405180910390fd5b80600b90805190602001906114b49291906133d6565b5050565b600f5481565b6000600a60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361157d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611574906143fc565b60405180910390fd5b80915050919050565b600b805461159390613c35565b80601f01602080910402602001604051908101604052809291908181526020018280546115bf90613c35565b801561160c5780601f106115e15761010080835404028352916020019161160c565b820191906000526020600020905b8154815290600101906020018083116115ef57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b9061448e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116d361204a565b73ffffffffffffffffffffffffffffffffffffffff166116f1611867565b73ffffffffffffffffffffffffffffffffffffffff1614611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e90613f8c565b60405180910390fd5b611751600061250f565b565b61175b61204a565b73ffffffffffffffffffffffffffffffffffffffff16611779611867565b73ffffffffffffffffffffffffffffffffffffffff16146117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c690613f8c565b60405180910390fd5b80600d8190555050565b6117e161204a565b73ffffffffffffffffffffffffffffffffffffffff166117ff611867565b73ffffffffffffffffffffffffffffffffffffffff1614611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c90613f8c565b60405180910390fd5b61185d6125d5565b565b600047905090565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546118a090613c35565b80601f01602080910402602001604051908101604052809291908181526020018280546118cc90613c35565b80156119195780601f106118ee57610100808354040283529160200191611919565b820191906000526020600020905b8154815290600101906020018083116118fc57829003601f168201915b5050505050905090565b61192b61204a565b73ffffffffffffffffffffffffffffffffffffffff16611949611867565b73ffffffffffffffffffffffffffffffffffffffff161461199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199690613f8c565b60405180910390fd5b6119a982826124f1565b5050565b6119bf6119b861204a565b8383612678565b5050565b6119cb61204a565b73ffffffffffffffffffffffffffffffffffffffff166119e9611867565b73ffffffffffffffffffffffffffffffffffffffff1614611a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3690613f8c565b60405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b611a6d611a6761204a565b8361210b565b611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390613e8e565b60405180910390fd5b611ab8848484846127e4565b50505050565b600c8054611acb90613c35565b80601f0160208091040260200160405190810160405280929190818152602001828054611af790613c35565b8015611b445780601f10611b1957610100808354040283529160200191611b44565b820191906000526020600020905b815481529060010190602001808311611b2757829003601f168201915b505050505081565b6060611b5782611fde565b611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90614520565b60405180910390fd5b601060009054906101000a900460ff16611c3c5760118054611bb790613c35565b80601f0160208091040260200160405190810160405280929190818152602001828054611be390613c35565b8015611c305780601f10611c0557610100808354040283529160200191611c30565b820191906000526020600020905b815481529060010190602001808311611c1357829003601f168201915b50505050509050611c98565b6000611c46612840565b90506000815111611c665760405180602001604052806000815250611c94565b80611c70846128d2565b600c604051602001611c8493929190614610565b6040516020818303038152906040525b9150505b919050565b600e5481565b611cab61204a565b73ffffffffffffffffffffffffffffffffffffffff16611cc9611867565b73ffffffffffffffffffffffffffffffffffffffff1614611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1690613f8c565b60405180910390fd5b80600c9080519060200190611d359291906133d6565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dd561204a565b73ffffffffffffffffffffffffffffffffffffffff16611df3611867565b73ffffffffffffffffffffffffffffffffffffffff1614611e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4090613f8c565b60405180910390fd5b8060119080519060200190611e5f9291906133d6565b5050565b611e6b61204a565b73ffffffffffffffffffffffffffffffffffffffff16611e89611867565b73ffffffffffffffffffffffffffffffffffffffff1614611edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed690613f8c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f45906146b3565b60405180910390fd5b611f578161250f565b50565b6000600d54905090565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fd75750611fd682612a32565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120c5836114d5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061211682611fde565b612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c90614745565b60405180910390fd5b6000612160836114d5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121cf57508373ffffffffffffffffffffffffffffffffffffffff166121b784610a5f565b73ffffffffffffffffffffffffffffffffffffffff16145b806121e057506121df8185611d39565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612209826114d5565b73ffffffffffffffffffffffffffffffffffffffff161461225f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612256906147d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c590614869565b60405180910390fd5b6122d9838383612b14565b6122e4600082612052565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123349190614889565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461238b9190614165565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461244a838383612b6c565b505050565b6124576114be565b612496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248d90614909565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6124da61204a565b6040516124e791906136a7565b60405180910390a1565b61250b828260405180602001604052806000815250612b71565b5050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125dd6114be565b1561261d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261490613ff8565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861266161204a565b60405161266e91906136a7565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dd90614975565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127d7919061352d565b60405180910390a3505050565b6127ef8484846121e9565b6127fb84848484612bcc565b61283a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283190614a07565b60405180910390fd5b50505050565b6060600b805461284f90613c35565b80601f016020809104026020016040519081016040528092919081815260200182805461287b90613c35565b80156128c85780601f1061289d576101008083540402835291602001916128c8565b820191906000526020600020905b8154815290600101906020018083116128ab57829003601f168201915b5050505050905090565b606060008203612919576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a2d565b600082905060005b6000821461294b57808061293490614281565b915050600a826129449190614a56565b9150612921565b60008167ffffffffffffffff811115612967576129666138c2565b5b6040519080825280601f01601f1916602001820160405280156129995781602001600182028036833780820191505090505b5090505b60008514612a26576001826129b29190614889565b9150600a856129c19190614a87565b60306129cd9190614165565b60f81b8183815181106129e3576129e26142c9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a1f9190614a56565b945061299d565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612afd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b0d5750612b0c82612d53565b5b9050919050565b612b1c6114be565b15612b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5390613ff8565b60405180910390fd5b612b67838383612dbd565b505050565b505050565b612b7b8383612ecf565b612b886000848484612bcc565b612bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbe90614a07565b60405180910390fd5b505050565b6000612bed8473ffffffffffffffffffffffffffffffffffffffff166130a8565b15612d46578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c1661204a565b8786866040518563ffffffff1660e01b8152600401612c389493929190614b0d565b6020604051808303816000875af1925050508015612c7457506040513d601f19601f82011682018060405250810190612c719190614b6e565b60015b612cf6573d8060008114612ca4576040519150601f19603f3d011682016040523d82523d6000602084013e612ca9565b606091505b506000815103612cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce590614a07565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d4b565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612dc88383836130cb565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e0a57612e05816130d0565b612e49565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e4857612e478382613119565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e8b57612e8681613286565b612eca565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ec957612ec88282613357565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3590614be7565b60405180910390fd5b612f4781611fde565b15612f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7e90614c53565b60405180910390fd5b612f9360008383612b14565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fe39190614165565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130a460008383612b6c565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161312684611614565b6131309190614889565b9050600060076000848152602001908152602001600020549050818114613215576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061329a9190614889565b90506000600960008481526020019081526020016000205490506000600883815481106132ca576132c96142c9565b5b9060005260206000200154905080600883815481106132ec576132eb6142c9565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061333b5761333a614c73565b5b6001900381819060005260206000200160009055905550505050565b600061336283611614565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546133e290613c35565b90600052602060002090601f016020900481019282613404576000855561344b565b82601f1061341d57805160ff191683800117855561344b565b8280016001018555821561344b579182015b8281111561344a57825182559160200191906001019061342f565b5b509050613458919061345c565b5090565b5b8082111561347557600081600090555060010161345d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134c28161348d565b81146134cd57600080fd5b50565b6000813590506134df816134b9565b92915050565b6000602082840312156134fb576134fa613483565b5b6000613509848285016134d0565b91505092915050565b60008115159050919050565b61352781613512565b82525050565b6000602082019050613542600083018461351e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613582578082015181840152602081019050613567565b83811115613591576000848401525b50505050565b6000601f19601f8301169050919050565b60006135b382613548565b6135bd8185613553565b93506135cd818560208601613564565b6135d681613597565b840191505092915050565b600060208201905081810360008301526135fb81846135a8565b905092915050565b6000819050919050565b61361681613603565b811461362157600080fd5b50565b6000813590506136338161360d565b92915050565b60006020828403121561364f5761364e613483565b5b600061365d84828501613624565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061369182613666565b9050919050565b6136a181613686565b82525050565b60006020820190506136bc6000830184613698565b92915050565b6136cb81613686565b81146136d657600080fd5b50565b6000813590506136e8816136c2565b92915050565b6000806040838503121561370557613704613483565b5b6000613713858286016136d9565b925050602061372485828601613624565b9150509250929050565b61373781613603565b82525050565b6000602082019050613752600083018461372e565b92915050565b60008060006060848603121561377157613770613483565b5b600061377f868287016136d9565b9350506020613790868287016136d9565b92505060406137a186828701613624565b9150509250925092565b6000602082840312156137c1576137c0613483565b5b60006137cf848285016136d9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61380d81613603565b82525050565b600061381f8383613804565b60208301905092915050565b6000602082019050919050565b6000613843826137d8565b61384d81856137e3565b9350613858836137f4565b8060005b838110156138895781516138708882613813565b975061387b8361382b565b92505060018101905061385c565b5085935050505092915050565b600060208201905081810360008301526138b08184613838565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138fa82613597565b810181811067ffffffffffffffff82111715613919576139186138c2565b5b80604052505050565b600061392c613479565b905061393882826138f1565b919050565b600067ffffffffffffffff821115613958576139576138c2565b5b61396182613597565b9050602081019050919050565b82818337600083830152505050565b600061399061398b8461393d565b613922565b9050828152602081018484840111156139ac576139ab6138bd565b5b6139b784828561396e565b509392505050565b600082601f8301126139d4576139d36138b8565b5b81356139e484826020860161397d565b91505092915050565b600060208284031215613a0357613a02613483565b5b600082013567ffffffffffffffff811115613a2157613a20613488565b5b613a2d848285016139bf565b91505092915050565b613a3f81613512565b8114613a4a57600080fd5b50565b600081359050613a5c81613a36565b92915050565b60008060408385031215613a7957613a78613483565b5b6000613a87858286016136d9565b9250506020613a9885828601613a4d565b9150509250929050565b600067ffffffffffffffff821115613abd57613abc6138c2565b5b613ac682613597565b9050602081019050919050565b6000613ae6613ae184613aa2565b613922565b905082815260208101848484011115613b0257613b016138bd565b5b613b0d84828561396e565b509392505050565b600082601f830112613b2a57613b296138b8565b5b8135613b3a848260208601613ad3565b91505092915050565b60008060008060808587031215613b5d57613b5c613483565b5b6000613b6b878288016136d9565b9450506020613b7c878288016136d9565b9350506040613b8d87828801613624565b925050606085013567ffffffffffffffff811115613bae57613bad613488565b5b613bba87828801613b15565b91505092959194509250565b60008060408385031215613bdd57613bdc613483565b5b6000613beb858286016136d9565b9250506020613bfc858286016136d9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c4d57607f821691505b602082108103613c6057613c5f613c06565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613cc2602c83613553565b9150613ccd82613c66565b604082019050919050565b60006020820190508181036000830152613cf181613cb5565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d54602183613553565b9150613d5f82613cf8565b604082019050919050565b60006020820190508181036000830152613d8381613d47565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613de6603883613553565b9150613df182613d8a565b604082019050919050565b60006020820190508181036000830152613e1581613dd9565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613e78603183613553565b9150613e8382613e1c565b604082019050919050565b60006020820190508181036000830152613ea781613e6b565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613f0a602b83613553565b9150613f1582613eae565b604082019050919050565b60006020820190508181036000830152613f3981613efd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f76602083613553565b9150613f8182613f40565b602082019050919050565b60006020820190508181036000830152613fa581613f69565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613fe2601083613553565b9150613fed82613fac565b602082019050919050565b6000602082019050818103600083015261401181613fd5565b9050919050565b7f4e46543a204e6f206574686572206c65667420746f2077697468647261770000600082015250565b600061404e601e83613553565b915061405982614018565b602082019050919050565b6000602082019050818103600083015261407d81614041565b9050919050565b600081905092915050565b50565b600061409f600083614084565b91506140aa8261408f565b600082019050919050565b60006140c082614092565b9150819050919050565b7f4e46543a205472616e73666572206661696c65642e0000000000000000000000600082015250565b6000614100601583613553565b915061410b826140ca565b602082019050919050565b6000602082019050818103600083015261412f816140f3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061417082613603565b915061417b83613603565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141b0576141af614136565b5b828201905092915050565b60006141c682613603565b91506141d183613603565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561420a57614209614136565b5b828202905092915050565b7f4d696e74696e67204c696d697420657863656564732e00000000000000000000600082015250565b600061424b601683613553565b915061425682614215565b602082019050919050565b6000602082019050818103600083015261427a8161423e565b9050919050565b600061428c82613603565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036142be576142bd614136565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614354602c83613553565b915061435f826142f8565b604082019050919050565b6000602082019050818103600083015261438381614347565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006143e6602983613553565b91506143f18261438a565b604082019050919050565b60006020820190508181036000830152614415816143d9565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614478602a83613553565b91506144838261441c565b604082019050919050565b600060208201905081810360008301526144a78161446b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061450a602f83613553565b9150614515826144ae565b604082019050919050565b60006020820190508181036000830152614539816144fd565b9050919050565b600081905092915050565b600061455682613548565b6145608185614540565b9350614570818560208601613564565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461459e81613c35565b6145a88186614540565b945060018216600081146145c357600181146145d457614607565b60ff19831686528186019350614607565b6145dd8561457c565b60005b838110156145ff578154818901526001820191506020810190506145e0565b838801955050505b50505092915050565b600061461c828661454b565b9150614628828561454b565b91506146348284614591565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061469d602683613553565b91506146a882614641565b604082019050919050565b600060208201905081810360008301526146cc81614690565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061472f602c83613553565b915061473a826146d3565b604082019050919050565b6000602082019050818103600083015261475e81614722565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006147c1602583613553565b91506147cc82614765565b604082019050919050565b600060208201905081810360008301526147f0816147b4565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614853602483613553565b915061485e826147f7565b604082019050919050565b6000602082019050818103600083015261488281614846565b9050919050565b600061489482613603565b915061489f83613603565b9250828210156148b2576148b1614136565b5b828203905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006148f3601483613553565b91506148fe826148bd565b602082019050919050565b60006020820190508181036000830152614922816148e6565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061495f601983613553565b915061496a82614929565b602082019050919050565b6000602082019050818103600083015261498e81614952565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006149f1603283613553565b91506149fc82614995565b604082019050919050565b60006020820190508181036000830152614a20816149e4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a6182613603565b9150614a6c83613603565b925082614a7c57614a7b614a27565b5b828204905092915050565b6000614a9282613603565b9150614a9d83613603565b925082614aad57614aac614a27565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614adf82614ab8565b614ae98185614ac3565b9350614af9818560208601613564565b614b0281613597565b840191505092915050565b6000608082019050614b226000830187613698565b614b2f6020830186613698565b614b3c604083018561372e565b8181036060830152614b4e8184614ad4565b905095945050505050565b600081519050614b68816134b9565b92915050565b600060208284031215614b8457614b83613483565b5b6000614b9284828501614b59565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614bd1602083613553565b9150614bdc82614b9b565b602082019050919050565b60006020820190508181036000830152614c0081614bc4565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614c3d601c83613553565b9150614c4882614c07565b602082019050919050565b60006020820190508181036000830152614c6c81614c30565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea264697066735822122015127aa551e7536a86cce3d191fe6daf9119ea832bbc5f3aba124955d92711db64736f6c634300080d0033

Deployed Bytecode Sourcemap

47872:4659:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50590:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22506:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24065:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48335:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23588:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48148:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37426:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52325:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24815:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37094:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51160:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49662:81;;;;;;;;;;;;;:::i;:::-;;50810:342;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50280:65;;;;;;;;;;;;;:::i;:::-;;51374:565;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25225:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51947:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37616:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48264:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48752:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48221:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44076:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22200:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47981:116;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21930:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46985:103;;;;;;;;;;;;;:::i;:::-;;49751:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50211:61;;;;;;;;;;;;;:::i;:::-;;51261:105;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46334:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22675:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52421:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24358:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49585:69;;;;;;;;;;;;;:::i;:::-;;25481:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48104:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48860:717;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48184:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50075:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24584:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49941:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47243:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49849:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50590:212;50729:4;50758:36;50782:11;50758:23;:36::i;:::-;50751:43;;50590:212;;;:::o;22506:100::-;22560:13;22593:5;22586:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22506:100;:::o;24065:221::-;24141:7;24169:16;24177:7;24169;:16::i;:::-;24161:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24254:15;:24;24270:7;24254:24;;;;;;;;;;;;;;;;;;;;;24247:31;;24065:221;;;:::o;48335:95::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23588:411::-;23669:13;23685:23;23700:7;23685:14;:23::i;:::-;23669:39;;23733:5;23727:11;;:2;:11;;;23719:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23827:5;23811:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23836:37;23853:5;23860:12;:10;:12::i;:::-;23836:16;:37::i;:::-;23811:62;23789:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23970:21;23979:2;23983:7;23970:8;:21::i;:::-;23658:341;23588:411;;:::o;48148:29::-;;;;:::o;37426:113::-;37487:7;37514:10;:17;;;;37507:24;;37426:113;:::o;52325:88::-;52369:7;52396:9;;52389:16;;52325:88;:::o;24815:339::-;25010:41;25029:12;:10;:12::i;:::-;25043:7;25010:18;:41::i;:::-;25002:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25118:28;25128:4;25134:2;25138:7;25118:9;:28::i;:::-;24815:339;;;:::o;37094:256::-;37191:7;37227:23;37244:5;37227:16;:23::i;:::-;37219:5;:31;37211:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37316:12;:19;37329:5;37316:19;;;;;;;;;;;;;;;:26;37336:5;37316:26;;;;;;;;;;;;37309:33;;37094:256;;;;:::o;51160:93::-;51205:7;51232:13;:11;:13::i;:::-;51225:20;;51160:93;:::o;49662:81::-;46565:12;:10;:12::i;:::-;46554:23;;:7;:5;:7::i;:::-;:23;;;46546:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49727:8:::1;;;;;;;;;;;49726:9;49715:8;;:20;;;;;;;;;;;;;;;;;;49662:81::o:0;50810:342::-;50871:7;46565:12;:10;:12::i;:::-;46554:23;;:7;:5;:7::i;:::-;:23;;;46546:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44402:8:::1;:6;:8::i;:::-;44401:9;44393:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;50890:12:::2;50905:21;50890:36;;50955:1;50945:7;:11;50937:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;51005:12;51031:7;:5;:7::i;:::-;51023:21;;51053:7;51023:44;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51004:63;;;51086:7;51078:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;51137:7;51130:14;;;;50810:342:::0;:::o;50280:65::-;46565:12;:10;:12::i;:::-;46554:23;;:7;:5;:7::i;:::-;:23;;;46546:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50327:10:::1;:8;:10::i;:::-;50280:65::o:0;51374:565::-;44402:8;:6;:8::i;:::-;44401:9;44393:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;51460:14:::1;51477:13;:11;:13::i;:::-;51460:30;;51521:1;51507:11;:15;51499:24;;;::::0;::::1;;51564:9;;51549:11;51540:6;:20;;;;:::i;:::-;:33;;51532:42;;;::::0;::::1;;51601:7;:5;:7::i;:::-;51587:21;;:10;:21;;;51583:88;;51649:11;51642:4;;:18;;;;:::i;:::-;51629:9;:31;;51621:40;;;::::0;::::1;;51583:88;51686:9;51698:1;51686:13;;51681:251;51706:11;51701:1;:16;51681:251;;51791:1;51764:19;:24;51784:3;51764:24;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;51737:19;:24;51757:3;51737:24;;;;;;;;;;;;;;;:55;;;;51841:17;;51813:19;:24;51833:3;51813:24;;;;;;;;;;;;;;;;:45;;51805:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;51896:26;51906:3;51920:1;51911:6;:10;;;;:::i;:::-;51896:9;:26::i;:::-;51719:3;;;;;:::i;:::-;;;;51681:251;;;;51451:488;51374:565:::0;;:::o;25225:185::-;25363:39;25380:4;25386:2;25390:7;25363:39;;;;;;;;;;;;:16;:39::i;:::-;25225:185;;;:::o;51947:370::-;52028:16;52060:23;52086:17;52096:6;52086:9;:17::i;:::-;52060:43;;52112:25;52154:15;52140:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52112:58;;52184:9;52179:107;52199:15;52195:1;:19;52179:107;;;52246:30;52266:6;52274:1;52246:19;:30::i;:::-;52232:8;52241:1;52232:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;52216:3;;;;;:::i;:::-;;;;52179:107;;;;52301:8;52294:15;;;;51947:370;;;:::o;37616:233::-;37691:7;37727:30;:28;:30::i;:::-;37719:5;:38;37711:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;37824:10;37835:5;37824:17;;;;;;;;:::i;:::-;;;;;;;;;;37817:24;;37616:233;;;:::o;48264:27::-;;;;;;;;;;;;;:::o;48752:100::-;46565:12;:10;:12::i;:::-;46554:23;;:7;:5;:7::i;:::-;:23;;;46546:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48836:8:::1;48826:7;:18;;;;;;;;;;;;:::i;:::-;;48752:100:::0;:::o;48221:36::-;;;;:::o;44076:86::-;44123:4;44147:7;;;;;;;;;;;44140:14;;44076:86;:::o;22200:239::-;22272:7;22292:13;22308:7;:16;22316:7;22308:16;;;;;;;;;;;;;;;;;;;;;22292:32;;22360:1;22343:19;;:5;:19;;;22335:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22426:5;22419:12;;;22200:239;;;:::o;47981:116::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21930:208::-;22002:7;22047:1;22030:19;;:5;:19;;;22022:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22114:9;:16;22124:5;22114:16;;;;;;;;;;;;;;;;22107:23;;21930:208;;;:::o;46985:103::-;46565:12;:10;:12::i;:::-;46554:23;;:7;:5;:7::i;:::-;:23;;;46546:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47050:30:::1;47077:1;47050:18;:30::i;:::-;46985:103::o:0;49751:90::-;46565:12;:10;:12::i;:::-;46554:23;;:7;:5;:7::i;:::-;:23;;;46546:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49825:8:::1;49818:4;:15;;;;49751:90:::0;:::o;50211:61::-;46565:12;:10;:12::i;:::-;46554:23;;:7;:5;:7::i;:::-;:23;;;46546:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50256:8:::1;:6;:8::i;:::-;50211:61::o:0;51261:105::-;51310:7;51337:21;51330:28;;51261:105;:::o;46334:87::-;46380:7;46407:6;;;;;;;;;;;46400:13;;46334:87;:::o;22675:104::-;22731:13;22764:7;22757:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22675:104;:::o;52421:105::-;46565:12;:10;:12::i;:::-;46554:23;;:7;:5;:7::i;:::-;:23;;;46546:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52496:22:::1;52506:2;52510:7;52496:9;:22::i;:::-;52421:105:::0;;:::o;24358:155::-;24453:52;24472:12;:10;:12::i;:::-;24486:8;24496;24453:18;:52::i;:::-;24358:155;;:::o;49585:69::-;46565:12;:10;:12::i;:::-;46554:23;;:7;:5;:7::i;:::-;:23;;;46546:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49642:4:::1;49631:8;;:15;;;;;;;;;;;;;;;;;;49585:69::o:0;25481:328::-;25656:41;25675:12;:10;:12::i;:::-;25689:7;25656:18;:41::i;:::-;25648:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25762:39;25776:4;25782:2;25786:7;25795:5;25762:13;:39::i;:::-;25481:328;;;;:::o;48104:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48860:717::-;48978:13;49031:16;49039:7;49031;:16::i;:::-;49009:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;49140:8;;;;;;;;;;;49135:63;;49172:14;49165:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49135:63;49210:28;49241:10;:8;:10::i;:::-;49210:41;;49313:1;49288:14;49282:28;:32;:287;;;;;;;;;;;;;;;;;49406:14;49447:18;:7;:16;:18::i;:::-;49492:13;49363:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49282:287;49262:307;;;48860:717;;;;:::o;48184:30::-;;;;:::o;50075:128::-;46565:12;:10;:12::i;:::-;46554:23;;:7;:5;:7::i;:::-;:23;;;46546:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50178:17:::1;50162:13;:33;;;;;;;;;;;;:::i;:::-;;50075:128:::0;:::o;24584:164::-;24681:4;24705:18;:25;24724:5;24705:25;;;;;;;;;;;;;;;:35;24731:8;24705:35;;;;;;;;;;;;;;;;;;;;;;;;;24698:42;;24584:164;;;;:::o;49941:126::-;46565:12;:10;:12::i;:::-;46554:23;;:7;:5;:7::i;:::-;:23;;;46546:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50044:15:::1;50027:14;:32;;;;;;;;;;;;:::i;:::-;;49941:126:::0;:::o;47243:201::-;46565:12;:10;:12::i;:::-;46554:23;;:7;:5;:7::i;:::-;:23;;;46546:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47352:1:::1;47332:22;;:8;:22;;::::0;47324:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;47408:28;47427:8;47408:18;:28::i;:::-;47243:201:::0;:::o;49849:84::-;49894:7;49921:4;;49914:11;;49849:84;:::o;36786:224::-;36888:4;36927:35;36912:50;;;:11;:50;;;;:90;;;;36966:36;36990:11;36966:23;:36::i;:::-;36912:90;36905:97;;36786:224;;;:::o;27319:127::-;27384:4;27436:1;27408:30;;:7;:16;27416:7;27408:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27401:37;;27319:127;;;:::o;16755:98::-;16808:7;16835:10;16828:17;;16755:98;:::o;31465:174::-;31567:2;31540:15;:24;31556:7;31540:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31623:7;31619:2;31585:46;;31594:23;31609:7;31594:14;:23::i;:::-;31585:46;;;;;;;;;;;;31465:174;;:::o;27613:348::-;27706:4;27731:16;27739:7;27731;:16::i;:::-;27723:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27807:13;27823:23;27838:7;27823:14;:23::i;:::-;27807:39;;27876:5;27865:16;;:7;:16;;;:51;;;;27909:7;27885:31;;:20;27897:7;27885:11;:20::i;:::-;:31;;;27865:51;:87;;;;27920:32;27937:5;27944:7;27920:16;:32::i;:::-;27865:87;27857:96;;;27613:348;;;;:::o;30722:625::-;30881:4;30854:31;;:23;30869:7;30854:14;:23::i;:::-;:31;;;30846:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;30960:1;30946:16;;:2;:16;;;30938:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31016:39;31037:4;31043:2;31047:7;31016:20;:39::i;:::-;31120:29;31137:1;31141:7;31120:8;:29::i;:::-;31181:1;31162:9;:15;31172:4;31162:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31210:1;31193:9;:13;31203:2;31193:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31241:2;31222:7;:16;31230:7;31222:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31280:7;31276:2;31261:27;;31270:4;31261:27;;;;;;;;;;;;31301:38;31321:4;31327:2;31331:7;31301:19;:38::i;:::-;30722:625;;;:::o;45135:120::-;44679:8;:6;:8::i;:::-;44671:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;45204:5:::1;45194:7;;:15;;;;;;;;;;;;;;;;;;45225:22;45234:12;:10;:12::i;:::-;45225:22;;;;;;:::i;:::-;;;;;;;;45135:120::o:0;28303:110::-;28379:26;28389:2;28393:7;28379:26;;;;;;;;;;;;:9;:26::i;:::-;28303:110;;:::o;47604:191::-;47678:16;47697:6;;;;;;;;;;;47678:25;;47723:8;47714:6;;:17;;;;;;;;;;;;;;;;;;47778:8;47747:40;;47768:8;47747:40;;;;;;;;;;;;47667:128;47604:191;:::o;44876:118::-;44402:8;:6;:8::i;:::-;44401:9;44393:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;44946:4:::1;44936:7;;:14;;;;;;;;;;;;;;;;;;44966:20;44973:12;:10;:12::i;:::-;44966:20;;;;;;:::i;:::-;;;;;;;;44876:118::o:0;31781:315::-;31936:8;31927:17;;:5;:17;;;31919:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;32023:8;31985:18;:25;32004:5;31985:25;;;;;;;;;;;;;;;:35;32011:8;31985:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32069:8;32047:41;;32062:5;32047:41;;;32079:8;32047:41;;;;;;:::i;:::-;;;;;;;;31781:315;;;:::o;26691:::-;26848:28;26858:4;26864:2;26868:7;26848:9;:28::i;:::-;26895:48;26918:4;26924:2;26928:7;26937:5;26895:22;:48::i;:::-;26887:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26691:315;;;;:::o;48636:108::-;48696:13;48729:7;48722:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48636:108;:::o;17346:723::-;17402:13;17632:1;17623:5;:10;17619:53;;17650:10;;;;;;;;;;;;;;;;;;;;;17619:53;17682:12;17697:5;17682:20;;17713:14;17738:78;17753:1;17745:4;:9;17738:78;;17771:8;;;;;:::i;:::-;;;;17802:2;17794:10;;;;;:::i;:::-;;;17738:78;;;17826:19;17858:6;17848:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17826:39;;17876:154;17892:1;17883:5;:10;17876:154;;17920:1;17910:11;;;;;:::i;:::-;;;17987:2;17979:5;:10;;;;:::i;:::-;17966:2;:24;;;;:::i;:::-;17953:39;;17936:6;17943;17936:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18016:2;18007:11;;;;;:::i;:::-;;;17876:154;;;18054:6;18040:21;;;;;17346:723;;;;:::o;21561:305::-;21663:4;21715:25;21700:40;;;:11;:40;;;;:105;;;;21772:33;21757:48;;;:11;:48;;;;21700:105;:158;;;;21822:36;21846:11;21822:23;:36::i;:::-;21700:158;21680:178;;21561:305;;;:::o;50353:229::-;44402:8;:6;:8::i;:::-;44401:9;44393:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;50529:45:::1;50556:4;50562:2;50566:7;50529:26;:45::i;:::-;50353:229:::0;;;:::o;34543:125::-;;;;:::o;28640:321::-;28770:18;28776:2;28780:7;28770:5;:18::i;:::-;28821:54;28852:1;28856:2;28860:7;28869:5;28821:22;:54::i;:::-;28799:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28640:321;;;:::o;32661:799::-;32816:4;32837:15;:2;:13;;;:15::i;:::-;32833:620;;;32889:2;32873:36;;;32910:12;:10;:12::i;:::-;32924:4;32930:7;32939:5;32873:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32869:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33132:1;33115:6;:13;:18;33111:272;;33158:60;;;;;;;;;;:::i;:::-;;;;;;;;33111:272;33333:6;33327:13;33318:6;33314:2;33310:15;33303:38;32869:529;33006:41;;;32996:51;;;:6;:51;;;;32989:58;;;;;32833:620;33437:4;33430:11;;32661:799;;;;;;;:::o;19980:157::-;20065:4;20104:25;20089:40;;;:11;:40;;;;20082:47;;19980:157;;;:::o;38462:589::-;38606:45;38633:4;38639:2;38643:7;38606:26;:45::i;:::-;38684:1;38668:18;;:4;:18;;;38664:187;;38703:40;38735:7;38703:31;:40::i;:::-;38664:187;;;38773:2;38765:10;;:4;:10;;;38761:90;;38792:47;38825:4;38831:7;38792:32;:47::i;:::-;38761:90;38664:187;38879:1;38865:16;;:2;:16;;;38861:183;;38898:45;38935:7;38898:36;:45::i;:::-;38861:183;;;38971:4;38965:10;;:2;:10;;;38961:83;;38992:40;39020:2;39024:7;38992:27;:40::i;:::-;38961:83;38861:183;38462:589;;;:::o;29297:439::-;29391:1;29377:16;;:2;:16;;;29369:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29450:16;29458:7;29450;:16::i;:::-;29449:17;29441:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29512:45;29541:1;29545:2;29549:7;29512:20;:45::i;:::-;29587:1;29570:9;:13;29580:2;29570:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29618:2;29599:7;:16;29607:7;29599:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29663:7;29659:2;29638:33;;29655:1;29638:33;;;;;;;;;;;;29684:44;29712:1;29716:2;29720:7;29684:19;:44::i;:::-;29297:439;;:::o;8794:326::-;8854:4;9111:1;9089:7;:19;;;:23;9082:30;;8794:326;;;:::o;34032:126::-;;;;:::o;39774:164::-;39878:10;:17;;;;39851:15;:24;39867:7;39851:24;;;;;;;;;;;:44;;;;39906:10;39922:7;39906:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39774:164;:::o;40565:988::-;40831:22;40881:1;40856:22;40873:4;40856:16;:22::i;:::-;:26;;;;:::i;:::-;40831:51;;40893:18;40914:17;:26;40932:7;40914:26;;;;;;;;;;;;40893:47;;41061:14;41047:10;:28;41043:328;;41092:19;41114:12;:18;41127:4;41114:18;;;;;;;;;;;;;;;:34;41133:14;41114:34;;;;;;;;;;;;41092:56;;41198:11;41165:12;:18;41178:4;41165:18;;;;;;;;;;;;;;;:30;41184:10;41165:30;;;;;;;;;;;:44;;;;41315:10;41282:17;:30;41300:11;41282:30;;;;;;;;;;;:43;;;;41077:294;41043:328;41467:17;:26;41485:7;41467:26;;;;;;;;;;;41460:33;;;41511:12;:18;41524:4;41511:18;;;;;;;;;;;;;;;:34;41530:14;41511:34;;;;;;;;;;;41504:41;;;40646:907;;40565:988;;:::o;41848:1079::-;42101:22;42146:1;42126:10;:17;;;;:21;;;;:::i;:::-;42101:46;;42158:18;42179:15;:24;42195:7;42179:24;;;;;;;;;;;;42158:45;;42530:19;42552:10;42563:14;42552:26;;;;;;;;:::i;:::-;;;;;;;;;;42530:48;;42616:11;42591:10;42602;42591:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;42727:10;42696:15;:28;42712:11;42696:28;;;;;;;;;;;:41;;;;42868:15;:24;42884:7;42868:24;;;;;;;;;;;42861:31;;;42903:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41919:1008;;;41848:1079;:::o;39352:221::-;39437:14;39454:20;39471:2;39454:16;:20::i;:::-;39437:37;;39512:7;39485:12;:16;39498:2;39485:16;;;;;;;;;;;;;;;:24;39502:6;39485:24;;;;;;;;;;;:34;;;;39559:6;39530:17;:26;39548:7;39530:26;;;;;;;;;;;:35;;;;39426:147;39352:221;;:::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:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:114::-;6317:6;6351:5;6345:12;6335:22;;6250:114;;;:::o;6370:184::-;6469:11;6503:6;6498:3;6491:19;6543:4;6538:3;6534:14;6519:29;;6370:184;;;;:::o;6560:132::-;6627:4;6650:3;6642:11;;6680:4;6675:3;6671:14;6663:22;;6560:132;;;:::o;6698:108::-;6775:24;6793:5;6775:24;:::i;:::-;6770:3;6763:37;6698:108;;:::o;6812:179::-;6881:10;6902:46;6944:3;6936:6;6902:46;:::i;:::-;6980:4;6975:3;6971:14;6957:28;;6812:179;;;;:::o;6997:113::-;7067:4;7099;7094:3;7090:14;7082:22;;6997:113;;;:::o;7146:732::-;7265:3;7294:54;7342:5;7294:54;:::i;:::-;7364:86;7443:6;7438:3;7364:86;:::i;:::-;7357:93;;7474:56;7524:5;7474:56;:::i;:::-;7553:7;7584:1;7569:284;7594:6;7591:1;7588:13;7569:284;;;7670:6;7664:13;7697:63;7756:3;7741:13;7697:63;:::i;:::-;7690:70;;7783:60;7836:6;7783:60;:::i;:::-;7773:70;;7629:224;7616:1;7613;7609:9;7604:14;;7569:284;;;7573:14;7869:3;7862:10;;7270:608;;;7146:732;;;;:::o;7884:373::-;8027:4;8065:2;8054:9;8050:18;8042:26;;8114:9;8108:4;8104:20;8100:1;8089:9;8085:17;8078:47;8142:108;8245:4;8236:6;8142:108;:::i;:::-;8134:116;;7884:373;;;;:::o;8263:117::-;8372:1;8369;8362:12;8386:117;8495:1;8492;8485:12;8509:180;8557:77;8554:1;8547:88;8654:4;8651:1;8644:15;8678:4;8675:1;8668:15;8695:281;8778:27;8800:4;8778:27;:::i;:::-;8770:6;8766:40;8908:6;8896:10;8893:22;8872:18;8860:10;8857:34;8854:62;8851:88;;;8919:18;;:::i;:::-;8851:88;8959:10;8955:2;8948:22;8738:238;8695:281;;:::o;8982:129::-;9016:6;9043:20;;:::i;:::-;9033:30;;9072:33;9100:4;9092:6;9072:33;:::i;:::-;8982:129;;;:::o;9117:308::-;9179:4;9269:18;9261:6;9258:30;9255:56;;;9291:18;;:::i;:::-;9255:56;9329:29;9351:6;9329:29;:::i;:::-;9321:37;;9413:4;9407;9403:15;9395:23;;9117:308;;;:::o;9431:154::-;9515:6;9510:3;9505;9492:30;9577:1;9568:6;9563:3;9559:16;9552:27;9431:154;;;:::o;9591:412::-;9669:5;9694:66;9710:49;9752:6;9710:49;:::i;:::-;9694:66;:::i;:::-;9685:75;;9783:6;9776:5;9769:21;9821:4;9814:5;9810:16;9859:3;9850:6;9845:3;9841:16;9838:25;9835:112;;;9866:79;;:::i;:::-;9835:112;9956:41;9990:6;9985:3;9980;9956:41;:::i;:::-;9675:328;9591:412;;;;;:::o;10023:340::-;10079:5;10128:3;10121:4;10113:6;10109:17;10105:27;10095:122;;10136:79;;:::i;:::-;10095:122;10253:6;10240:20;10278:79;10353:3;10345:6;10338:4;10330:6;10326:17;10278:79;:::i;:::-;10269:88;;10085:278;10023:340;;;;:::o;10369:509::-;10438:6;10487:2;10475:9;10466:7;10462:23;10458:32;10455:119;;;10493:79;;:::i;:::-;10455:119;10641:1;10630:9;10626:17;10613:31;10671:18;10663:6;10660:30;10657:117;;;10693:79;;:::i;:::-;10657:117;10798:63;10853:7;10844:6;10833:9;10829:22;10798:63;:::i;:::-;10788:73;;10584:287;10369:509;;;;:::o;10884:116::-;10954:21;10969:5;10954:21;:::i;:::-;10947:5;10944:32;10934:60;;10990:1;10987;10980:12;10934:60;10884:116;:::o;11006:133::-;11049:5;11087:6;11074:20;11065:29;;11103:30;11127:5;11103:30;:::i;:::-;11006:133;;;;:::o;11145:468::-;11210:6;11218;11267:2;11255:9;11246:7;11242:23;11238:32;11235:119;;;11273:79;;:::i;:::-;11235:119;11393:1;11418:53;11463:7;11454:6;11443:9;11439:22;11418:53;:::i;:::-;11408:63;;11364:117;11520:2;11546:50;11588:7;11579:6;11568:9;11564:22;11546:50;:::i;:::-;11536:60;;11491:115;11145:468;;;;;:::o;11619:307::-;11680:4;11770:18;11762:6;11759:30;11756:56;;;11792:18;;:::i;:::-;11756:56;11830:29;11852:6;11830:29;:::i;:::-;11822:37;;11914:4;11908;11904:15;11896:23;;11619:307;;;:::o;11932:410::-;12009:5;12034:65;12050:48;12091:6;12050:48;:::i;:::-;12034:65;:::i;:::-;12025:74;;12122:6;12115:5;12108:21;12160:4;12153:5;12149:16;12198:3;12189:6;12184:3;12180:16;12177:25;12174:112;;;12205:79;;:::i;:::-;12174:112;12295:41;12329:6;12324:3;12319;12295:41;:::i;:::-;12015:327;11932:410;;;;;:::o;12361:338::-;12416:5;12465:3;12458:4;12450:6;12446:17;12442:27;12432:122;;12473:79;;:::i;:::-;12432:122;12590:6;12577:20;12615:78;12689:3;12681:6;12674:4;12666:6;12662:17;12615:78;:::i;:::-;12606:87;;12422:277;12361:338;;;;:::o;12705:943::-;12800:6;12808;12816;12824;12873:3;12861:9;12852:7;12848:23;12844:33;12841:120;;;12880:79;;:::i;:::-;12841:120;13000:1;13025:53;13070:7;13061:6;13050:9;13046:22;13025:53;:::i;:::-;13015:63;;12971:117;13127:2;13153:53;13198:7;13189:6;13178:9;13174:22;13153:53;:::i;:::-;13143:63;;13098:118;13255:2;13281:53;13326:7;13317:6;13306:9;13302:22;13281:53;:::i;:::-;13271:63;;13226:118;13411:2;13400:9;13396:18;13383:32;13442:18;13434:6;13431:30;13428:117;;;13464:79;;:::i;:::-;13428:117;13569:62;13623:7;13614:6;13603:9;13599:22;13569:62;:::i;:::-;13559:72;;13354:287;12705:943;;;;;;;:::o;13654:474::-;13722:6;13730;13779:2;13767:9;13758:7;13754:23;13750:32;13747:119;;;13785:79;;:::i;:::-;13747:119;13905:1;13930:53;13975:7;13966:6;13955:9;13951:22;13930:53;:::i;:::-;13920:63;;13876:117;14032:2;14058:53;14103:7;14094:6;14083:9;14079:22;14058:53;:::i;:::-;14048:63;;14003:118;13654:474;;;;;:::o;14134:180::-;14182:77;14179:1;14172:88;14279:4;14276:1;14269:15;14303:4;14300:1;14293:15;14320:320;14364:6;14401:1;14395:4;14391:12;14381:22;;14448:1;14442:4;14438:12;14469:18;14459:81;;14525:4;14517:6;14513:17;14503:27;;14459:81;14587:2;14579:6;14576:14;14556:18;14553:38;14550:84;;14606:18;;:::i;:::-;14550:84;14371:269;14320:320;;;:::o;14646:231::-;14786:34;14782:1;14774:6;14770:14;14763:58;14855:14;14850:2;14842:6;14838:15;14831:39;14646:231;:::o;14883:366::-;15025:3;15046:67;15110:2;15105:3;15046:67;:::i;:::-;15039:74;;15122:93;15211:3;15122:93;:::i;:::-;15240:2;15235:3;15231:12;15224:19;;14883:366;;;:::o;15255:419::-;15421:4;15459:2;15448:9;15444:18;15436:26;;15508:9;15502:4;15498:20;15494:1;15483:9;15479:17;15472:47;15536:131;15662:4;15536:131;:::i;:::-;15528:139;;15255:419;;;:::o;15680:220::-;15820:34;15816:1;15808:6;15804:14;15797:58;15889:3;15884:2;15876:6;15872:15;15865:28;15680:220;:::o;15906:366::-;16048:3;16069:67;16133:2;16128:3;16069:67;:::i;:::-;16062:74;;16145:93;16234:3;16145:93;:::i;:::-;16263:2;16258:3;16254:12;16247:19;;15906:366;;;:::o;16278:419::-;16444:4;16482:2;16471:9;16467:18;16459:26;;16531:9;16525:4;16521:20;16517:1;16506:9;16502:17;16495:47;16559:131;16685:4;16559:131;:::i;:::-;16551:139;;16278:419;;;:::o;16703:243::-;16843:34;16839:1;16831:6;16827:14;16820:58;16912:26;16907:2;16899:6;16895:15;16888:51;16703:243;:::o;16952:366::-;17094:3;17115:67;17179:2;17174:3;17115:67;:::i;:::-;17108:74;;17191:93;17280:3;17191:93;:::i;:::-;17309:2;17304:3;17300:12;17293:19;;16952:366;;;:::o;17324:419::-;17490:4;17528:2;17517:9;17513:18;17505:26;;17577:9;17571:4;17567:20;17563:1;17552:9;17548:17;17541:47;17605:131;17731:4;17605:131;:::i;:::-;17597:139;;17324:419;;;:::o;17749:236::-;17889:34;17885:1;17877:6;17873:14;17866:58;17958:19;17953:2;17945:6;17941:15;17934:44;17749:236;:::o;17991:366::-;18133:3;18154:67;18218:2;18213:3;18154:67;:::i;:::-;18147:74;;18230:93;18319:3;18230:93;:::i;:::-;18348:2;18343:3;18339:12;18332:19;;17991:366;;;:::o;18363:419::-;18529:4;18567:2;18556:9;18552:18;18544:26;;18616:9;18610:4;18606:20;18602:1;18591:9;18587:17;18580:47;18644:131;18770:4;18644:131;:::i;:::-;18636:139;;18363:419;;;:::o;18788:230::-;18928:34;18924:1;18916:6;18912:14;18905:58;18997:13;18992:2;18984:6;18980:15;18973:38;18788:230;:::o;19024:366::-;19166:3;19187:67;19251:2;19246:3;19187:67;:::i;:::-;19180:74;;19263:93;19352:3;19263:93;:::i;:::-;19381:2;19376:3;19372:12;19365:19;;19024:366;;;:::o;19396:419::-;19562:4;19600:2;19589:9;19585:18;19577:26;;19649:9;19643:4;19639:20;19635:1;19624:9;19620:17;19613:47;19677:131;19803:4;19677:131;:::i;:::-;19669:139;;19396:419;;;:::o;19821:182::-;19961:34;19957:1;19949:6;19945:14;19938:58;19821:182;:::o;20009:366::-;20151:3;20172:67;20236:2;20231:3;20172:67;:::i;:::-;20165:74;;20248:93;20337:3;20248:93;:::i;:::-;20366:2;20361:3;20357:12;20350:19;;20009:366;;;:::o;20381:419::-;20547:4;20585:2;20574:9;20570:18;20562:26;;20634:9;20628:4;20624:20;20620:1;20609:9;20605:17;20598:47;20662:131;20788:4;20662:131;:::i;:::-;20654:139;;20381:419;;;:::o;20806:166::-;20946:18;20942:1;20934:6;20930:14;20923:42;20806:166;:::o;20978:366::-;21120:3;21141:67;21205:2;21200:3;21141:67;:::i;:::-;21134:74;;21217:93;21306:3;21217:93;:::i;:::-;21335:2;21330:3;21326:12;21319:19;;20978:366;;;:::o;21350:419::-;21516:4;21554:2;21543:9;21539:18;21531:26;;21603:9;21597:4;21593:20;21589:1;21578:9;21574:17;21567:47;21631:131;21757:4;21631:131;:::i;:::-;21623:139;;21350:419;;;:::o;21775:180::-;21915:32;21911:1;21903:6;21899:14;21892:56;21775:180;:::o;21961:366::-;22103:3;22124:67;22188:2;22183:3;22124:67;:::i;:::-;22117:74;;22200:93;22289:3;22200:93;:::i;:::-;22318:2;22313:3;22309:12;22302:19;;21961:366;;;:::o;22333:419::-;22499:4;22537:2;22526:9;22522:18;22514:26;;22586:9;22580:4;22576:20;22572:1;22561:9;22557:17;22550:47;22614:131;22740:4;22614:131;:::i;:::-;22606:139;;22333:419;;;:::o;22758:147::-;22859:11;22896:3;22881:18;;22758:147;;;;:::o;22911:114::-;;:::o;23031:398::-;23190:3;23211:83;23292:1;23287:3;23211:83;:::i;:::-;23204:90;;23303:93;23392:3;23303:93;:::i;:::-;23421:1;23416:3;23412:11;23405:18;;23031:398;;;:::o;23435:379::-;23619:3;23641:147;23784:3;23641:147;:::i;:::-;23634:154;;23805:3;23798:10;;23435:379;;;:::o;23820:171::-;23960:23;23956:1;23948:6;23944:14;23937:47;23820:171;:::o;23997:366::-;24139:3;24160:67;24224:2;24219:3;24160:67;:::i;:::-;24153:74;;24236:93;24325:3;24236:93;:::i;:::-;24354:2;24349:3;24345:12;24338:19;;23997:366;;;:::o;24369:419::-;24535:4;24573:2;24562:9;24558:18;24550:26;;24622:9;24616:4;24612:20;24608:1;24597:9;24593:17;24586:47;24650:131;24776:4;24650:131;:::i;:::-;24642:139;;24369:419;;;:::o;24794:180::-;24842:77;24839:1;24832:88;24939:4;24936:1;24929:15;24963:4;24960:1;24953:15;24980:305;25020:3;25039:20;25057:1;25039:20;:::i;:::-;25034:25;;25073:20;25091:1;25073:20;:::i;:::-;25068:25;;25227:1;25159:66;25155:74;25152:1;25149:81;25146:107;;;25233:18;;:::i;:::-;25146:107;25277:1;25274;25270:9;25263:16;;24980:305;;;;:::o;25291:348::-;25331:7;25354:20;25372:1;25354:20;:::i;:::-;25349:25;;25388:20;25406:1;25388:20;:::i;:::-;25383:25;;25576:1;25508:66;25504:74;25501:1;25498:81;25493:1;25486:9;25479:17;25475:105;25472:131;;;25583:18;;:::i;:::-;25472:131;25631:1;25628;25624:9;25613:20;;25291:348;;;;:::o;25645:172::-;25785:24;25781:1;25773:6;25769:14;25762:48;25645:172;:::o;25823:366::-;25965:3;25986:67;26050:2;26045:3;25986:67;:::i;:::-;25979:74;;26062:93;26151:3;26062:93;:::i;:::-;26180:2;26175:3;26171:12;26164:19;;25823:366;;;:::o;26195:419::-;26361:4;26399:2;26388:9;26384:18;26376:26;;26448:9;26442:4;26438:20;26434:1;26423:9;26419:17;26412:47;26476:131;26602:4;26476:131;:::i;:::-;26468:139;;26195:419;;;:::o;26620:233::-;26659:3;26682:24;26700:5;26682:24;:::i;:::-;26673:33;;26728:66;26721:5;26718:77;26715:103;;26798:18;;:::i;:::-;26715:103;26845:1;26838:5;26834:13;26827:20;;26620:233;;;:::o;26859:180::-;26907:77;26904:1;26897:88;27004:4;27001:1;26994:15;27028:4;27025:1;27018:15;27045:231;27185:34;27181:1;27173:6;27169:14;27162:58;27254:14;27249:2;27241:6;27237:15;27230:39;27045:231;:::o;27282:366::-;27424:3;27445:67;27509:2;27504:3;27445:67;:::i;:::-;27438:74;;27521:93;27610:3;27521:93;:::i;:::-;27639:2;27634:3;27630:12;27623:19;;27282:366;;;:::o;27654:419::-;27820:4;27858:2;27847:9;27843:18;27835:26;;27907:9;27901:4;27897:20;27893:1;27882:9;27878:17;27871:47;27935:131;28061:4;27935:131;:::i;:::-;27927:139;;27654:419;;;:::o;28079:228::-;28219:34;28215:1;28207:6;28203:14;28196:58;28288:11;28283:2;28275:6;28271:15;28264:36;28079:228;:::o;28313:366::-;28455:3;28476:67;28540:2;28535:3;28476:67;:::i;:::-;28469:74;;28552:93;28641:3;28552:93;:::i;:::-;28670:2;28665:3;28661:12;28654:19;;28313:366;;;:::o;28685:419::-;28851:4;28889:2;28878:9;28874:18;28866:26;;28938:9;28932:4;28928:20;28924:1;28913:9;28909:17;28902:47;28966:131;29092:4;28966:131;:::i;:::-;28958:139;;28685:419;;;:::o;29110:229::-;29250:34;29246:1;29238:6;29234:14;29227:58;29319:12;29314:2;29306:6;29302:15;29295:37;29110:229;:::o;29345:366::-;29487:3;29508:67;29572:2;29567:3;29508:67;:::i;:::-;29501:74;;29584:93;29673:3;29584:93;:::i;:::-;29702:2;29697:3;29693:12;29686:19;;29345:366;;;:::o;29717:419::-;29883:4;29921:2;29910:9;29906:18;29898:26;;29970:9;29964:4;29960:20;29956:1;29945:9;29941:17;29934:47;29998:131;30124:4;29998:131;:::i;:::-;29990:139;;29717:419;;;:::o;30142:234::-;30282:34;30278:1;30270:6;30266:14;30259:58;30351:17;30346:2;30338:6;30334:15;30327:42;30142:234;:::o;30382:366::-;30524:3;30545:67;30609:2;30604:3;30545:67;:::i;:::-;30538:74;;30621:93;30710:3;30621:93;:::i;:::-;30739:2;30734:3;30730:12;30723:19;;30382:366;;;:::o;30754:419::-;30920:4;30958:2;30947:9;30943:18;30935:26;;31007:9;31001:4;30997:20;30993:1;30982:9;30978:17;30971:47;31035:131;31161:4;31035:131;:::i;:::-;31027:139;;30754:419;;;:::o;31179:148::-;31281:11;31318:3;31303:18;;31179:148;;;;:::o;31333:377::-;31439:3;31467:39;31500:5;31467:39;:::i;:::-;31522:89;31604:6;31599:3;31522:89;:::i;:::-;31515:96;;31620:52;31665:6;31660:3;31653:4;31646:5;31642:16;31620:52;:::i;:::-;31697:6;31692:3;31688:16;31681:23;;31443:267;31333:377;;;;:::o;31716:141::-;31765:4;31788:3;31780:11;;31811:3;31808:1;31801:14;31845:4;31842:1;31832:18;31824:26;;31716:141;;;:::o;31887:845::-;31990:3;32027:5;32021:12;32056:36;32082:9;32056:36;:::i;:::-;32108:89;32190:6;32185:3;32108:89;:::i;:::-;32101:96;;32228:1;32217:9;32213:17;32244:1;32239:137;;;;32390:1;32385:341;;;;32206:520;;32239:137;32323:4;32319:9;32308;32304:25;32299:3;32292:38;32359:6;32354:3;32350:16;32343:23;;32239:137;;32385:341;32452:38;32484:5;32452:38;:::i;:::-;32512:1;32526:154;32540:6;32537:1;32534:13;32526:154;;;32614:7;32608:14;32604:1;32599:3;32595:11;32588:35;32664:1;32655:7;32651:15;32640:26;;32562:4;32559:1;32555:12;32550:17;;32526:154;;;32709:6;32704:3;32700:16;32693:23;;32392:334;;32206:520;;31994:738;;31887:845;;;;:::o;32738:589::-;32963:3;32985:95;33076:3;33067:6;32985:95;:::i;:::-;32978:102;;33097:95;33188:3;33179:6;33097:95;:::i;:::-;33090:102;;33209:92;33297:3;33288:6;33209:92;:::i;:::-;33202:99;;33318:3;33311:10;;32738:589;;;;;;:::o;33333:225::-;33473:34;33469:1;33461:6;33457:14;33450:58;33542:8;33537:2;33529:6;33525:15;33518:33;33333:225;:::o;33564:366::-;33706:3;33727:67;33791:2;33786:3;33727:67;:::i;:::-;33720:74;;33803:93;33892:3;33803:93;:::i;:::-;33921:2;33916:3;33912:12;33905:19;;33564:366;;;:::o;33936:419::-;34102:4;34140:2;34129:9;34125:18;34117:26;;34189:9;34183:4;34179:20;34175:1;34164:9;34160:17;34153:47;34217:131;34343:4;34217:131;:::i;:::-;34209:139;;33936:419;;;:::o;34361:231::-;34501:34;34497:1;34489:6;34485:14;34478:58;34570:14;34565:2;34557:6;34553:15;34546:39;34361:231;:::o;34598:366::-;34740:3;34761:67;34825:2;34820:3;34761:67;:::i;:::-;34754:74;;34837:93;34926:3;34837:93;:::i;:::-;34955:2;34950:3;34946:12;34939:19;;34598:366;;;:::o;34970:419::-;35136:4;35174:2;35163:9;35159:18;35151:26;;35223:9;35217:4;35213:20;35209:1;35198:9;35194:17;35187:47;35251:131;35377:4;35251:131;:::i;:::-;35243:139;;34970:419;;;:::o;35395:224::-;35535:34;35531:1;35523:6;35519:14;35512:58;35604:7;35599:2;35591:6;35587:15;35580:32;35395:224;:::o;35625:366::-;35767:3;35788:67;35852:2;35847:3;35788:67;:::i;:::-;35781:74;;35864:93;35953:3;35864:93;:::i;:::-;35982:2;35977:3;35973:12;35966:19;;35625:366;;;:::o;35997:419::-;36163:4;36201:2;36190:9;36186:18;36178:26;;36250:9;36244:4;36240:20;36236:1;36225:9;36221:17;36214:47;36278:131;36404:4;36278:131;:::i;:::-;36270:139;;35997:419;;;:::o;36422:223::-;36562:34;36558:1;36550:6;36546:14;36539:58;36631:6;36626:2;36618:6;36614:15;36607:31;36422:223;:::o;36651:366::-;36793:3;36814:67;36878:2;36873:3;36814:67;:::i;:::-;36807:74;;36890:93;36979:3;36890:93;:::i;:::-;37008:2;37003:3;36999:12;36992:19;;36651:366;;;:::o;37023:419::-;37189:4;37227:2;37216:9;37212:18;37204:26;;37276:9;37270:4;37266:20;37262:1;37251:9;37247:17;37240:47;37304:131;37430:4;37304:131;:::i;:::-;37296:139;;37023:419;;;:::o;37448:191::-;37488:4;37508:20;37526:1;37508:20;:::i;:::-;37503:25;;37542:20;37560:1;37542:20;:::i;:::-;37537:25;;37581:1;37578;37575:8;37572:34;;;37586:18;;:::i;:::-;37572:34;37631:1;37628;37624:9;37616:17;;37448:191;;;;:::o;37645:170::-;37785:22;37781:1;37773:6;37769:14;37762:46;37645:170;:::o;37821:366::-;37963:3;37984:67;38048:2;38043:3;37984:67;:::i;:::-;37977:74;;38060:93;38149:3;38060:93;:::i;:::-;38178:2;38173:3;38169:12;38162:19;;37821:366;;;:::o;38193:419::-;38359:4;38397:2;38386:9;38382:18;38374:26;;38446:9;38440:4;38436:20;38432:1;38421:9;38417:17;38410:47;38474:131;38600:4;38474:131;:::i;:::-;38466:139;;38193:419;;;:::o;38618:175::-;38758:27;38754:1;38746:6;38742:14;38735:51;38618:175;:::o;38799:366::-;38941:3;38962:67;39026:2;39021:3;38962:67;:::i;:::-;38955:74;;39038:93;39127:3;39038:93;:::i;:::-;39156:2;39151:3;39147:12;39140:19;;38799:366;;;:::o;39171:419::-;39337:4;39375:2;39364:9;39360:18;39352:26;;39424:9;39418:4;39414:20;39410:1;39399:9;39395:17;39388:47;39452:131;39578:4;39452:131;:::i;:::-;39444:139;;39171:419;;;:::o;39596:237::-;39736:34;39732:1;39724:6;39720:14;39713:58;39805:20;39800:2;39792:6;39788:15;39781:45;39596:237;:::o;39839:366::-;39981:3;40002:67;40066:2;40061:3;40002:67;:::i;:::-;39995:74;;40078:93;40167:3;40078:93;:::i;:::-;40196:2;40191:3;40187:12;40180:19;;39839:366;;;:::o;40211:419::-;40377:4;40415:2;40404:9;40400:18;40392:26;;40464:9;40458:4;40454:20;40450:1;40439:9;40435:17;40428:47;40492:131;40618:4;40492:131;:::i;:::-;40484:139;;40211:419;;;:::o;40636:180::-;40684:77;40681:1;40674:88;40781:4;40778:1;40771:15;40805:4;40802:1;40795:15;40822:185;40862:1;40879:20;40897:1;40879:20;:::i;:::-;40874:25;;40913:20;40931:1;40913:20;:::i;:::-;40908:25;;40952:1;40942:35;;40957:18;;:::i;:::-;40942:35;40999:1;40996;40992:9;40987:14;;40822:185;;;;:::o;41013:176::-;41045:1;41062:20;41080:1;41062:20;:::i;:::-;41057:25;;41096:20;41114:1;41096:20;:::i;:::-;41091:25;;41135:1;41125:35;;41140:18;;:::i;:::-;41125:35;41181:1;41178;41174:9;41169:14;;41013:176;;;;:::o;41195:98::-;41246:6;41280:5;41274:12;41264:22;;41195:98;;;:::o;41299:168::-;41382:11;41416:6;41411:3;41404:19;41456:4;41451:3;41447:14;41432:29;;41299:168;;;;:::o;41473:360::-;41559:3;41587:38;41619:5;41587:38;:::i;:::-;41641:70;41704:6;41699:3;41641:70;:::i;:::-;41634:77;;41720:52;41765:6;41760:3;41753:4;41746:5;41742:16;41720:52;:::i;:::-;41797:29;41819:6;41797:29;:::i;:::-;41792:3;41788:39;41781:46;;41563:270;41473:360;;;;:::o;41839:640::-;42034:4;42072:3;42061:9;42057:19;42049:27;;42086:71;42154:1;42143:9;42139:17;42130:6;42086:71;:::i;:::-;42167:72;42235:2;42224:9;42220:18;42211:6;42167:72;:::i;:::-;42249;42317:2;42306:9;42302:18;42293:6;42249:72;:::i;:::-;42368:9;42362:4;42358:20;42353:2;42342:9;42338:18;42331:48;42396:76;42467:4;42458:6;42396:76;:::i;:::-;42388:84;;41839:640;;;;;;;:::o;42485:141::-;42541:5;42572:6;42566:13;42557:22;;42588:32;42614:5;42588:32;:::i;:::-;42485:141;;;;:::o;42632:349::-;42701:6;42750:2;42738:9;42729:7;42725:23;42721:32;42718:119;;;42756:79;;:::i;:::-;42718:119;42876:1;42901:63;42956:7;42947:6;42936:9;42932:22;42901:63;:::i;:::-;42891:73;;42847:127;42632:349;;;;:::o;42987:182::-;43127:34;43123:1;43115:6;43111:14;43104:58;42987:182;:::o;43175:366::-;43317:3;43338:67;43402:2;43397:3;43338:67;:::i;:::-;43331:74;;43414:93;43503:3;43414:93;:::i;:::-;43532:2;43527:3;43523:12;43516:19;;43175:366;;;:::o;43547:419::-;43713:4;43751:2;43740:9;43736:18;43728:26;;43800:9;43794:4;43790:20;43786:1;43775:9;43771:17;43764:47;43828:131;43954:4;43828:131;:::i;:::-;43820:139;;43547:419;;;:::o;43972:178::-;44112:30;44108:1;44100:6;44096:14;44089:54;43972:178;:::o;44156:366::-;44298:3;44319:67;44383:2;44378:3;44319:67;:::i;:::-;44312:74;;44395:93;44484:3;44395:93;:::i;:::-;44513:2;44508:3;44504:12;44497:19;;44156:366;;;:::o;44528:419::-;44694:4;44732:2;44721:9;44717:18;44709:26;;44781:9;44775:4;44771:20;44767:1;44756:9;44752:17;44745:47;44809:131;44935:4;44809:131;:::i;:::-;44801:139;;44528:419;;;:::o;44953:180::-;45001:77;44998:1;44991:88;45098:4;45095:1;45088:15;45122:4;45119:1;45112:15

Swarm Source

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