ETH Price: $3,417.07 (+1.04%)
Gas: 4 Gwei

Token

GoblinAi (GOBAI)
 

Overview

Max Total Supply

10,000 GOBAI

Holders

2,478

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GOBAI
0x99511b49c8452fd9a8463aa4cc2cc37921be5e39
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:
GoblinAi

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

    /**
     * @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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: goblintownai-contract.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());
    }
}

// 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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

//newerc.sol
pragma solidity ^0.8.0;


contract GoblinAi is ERC721A, Ownable, Pausable, ReentrancyGuard {
    using Strings for uint256;
    string public baseURI;
    uint256 public cost = 0.005 ether;
    uint256 public maxSupply = 10000;
    uint256 public maxFree = 2000;
    uint256 public maxperAddressFreeLimit = 2;
    uint256 public maxperAddressPublicMint = 40;

    mapping(address => uint256) public addressFreeMintedBalance;

    constructor() ERC721A("GoblinAi", "GOBAI") {
        setBaseURI("");

    }

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

    function MintF(uint256 _mintAmount) public payable nonReentrant{
		uint256 s = totalSupply();
        uint256 addressFreeMintedCount = addressFreeMintedBalance[msg.sender];
        require(addressFreeMintedCount + _mintAmount <= maxperAddressFreeLimit, "max NFT per address exceeded");
		require(_mintAmount > 0, "Cant mint 0" );
		require(s + _mintAmount <= maxFree, "Cant go over supply" );
		for (uint256 i = 0; i < _mintAmount; ++i) {
            addressFreeMintedBalance[msg.sender]++;

		}
        _safeMint(msg.sender, _mintAmount);
		delete s;
        delete addressFreeMintedCount;
	}


    function mint(uint256 _mintAmount) public payable nonReentrant {
        uint256 s = totalSupply();
        require(_mintAmount > 0, "Cant mint 0");
        require(_mintAmount <= maxperAddressPublicMint, "Cant mint more then maxmint" );
        require(s + _mintAmount <= maxSupply, "Cant go over supply");
        require(msg.value >= cost * _mintAmount);
        _safeMint(msg.sender, _mintAmount);
        delete s;
    }

    function gift(uint256[] calldata quantity, address[] calldata recipient)
        external
        onlyOwner
    {
        require(
            quantity.length == recipient.length,
            "Provide quantities and recipients"
        );
        uint256 totalQuantity = 0;
        uint256 s = totalSupply();
        for (uint256 i = 0; i < quantity.length; ++i) {
            totalQuantity += quantity[i];
        }
        require(s + totalQuantity <= maxSupply, "Too many");
        delete totalQuantity;
        for (uint256 i = 0; i < recipient.length; ++i) {
            _safeMint(recipient[i], quantity[i]);
        }
        delete s;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json"))
                : "";
    }



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

    function setmaxSupply(uint256 _newMaxSupply) public onlyOwner {
        require(_newMaxSupply <= maxSupply, "Cannot increase max supply");
        maxSupply = _newMaxSupply;
    }
     function setmaxFreeSupply(uint256 _newMaxFreeSupply) public onlyOwner {
               maxFree = _newMaxFreeSupply;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setMaxperAddressPublicMint(uint256 _amount) public onlyOwner {
        maxperAddressPublicMint = _amount;
    }

    function setMaxperAddressFreeMint(uint256 _amount) public onlyOwner{
        maxperAddressFreeLimit = _amount;
    }
    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }

    function withdrawAny(uint256 _amount) public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: _amount}("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"MintF","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressFreeMintedBalance","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressFreeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAny","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526611c37937e08000600a55612710600b556107d0600c556002600d556028600e553480156200003257600080fd5b506040518060400160405280600881526020017f476f626c696e41690000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f474f4241490000000000000000000000000000000000000000000000000000008152508160019080519060200190620000b7929190620002df565b508060029080519060200190620000d0929190620002df565b505050620000f3620000e76200013c60201b60201c565b6200014460201b60201c565b6000600760146101000a81548160ff021916908315150217905550600160088190555062000136604051806020016040528060008152506200020a60201b60201c565b62000476565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200021a6200013c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000240620002b560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000299576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029090620003f0565b60405180910390fd5b8060099080519060200190620002b1929190620002df565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002ed9062000441565b90600052602060002090601f0160209004810192826200031157600085556200035d565b82601f106200032c57805160ff19168380011785556200035d565b828001600101855582156200035d579182015b828111156200035c5782518255916020019190600101906200033f565b5b5090506200036c919062000370565b5090565b5b808211156200038b57600081600090555060010162000371565b5090565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620003d86020836200038f565b9150620003e582620003a0565b602082019050919050565b600060208201905081810360008301526200040b81620003c9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200045a57607f821691505b60208210810362000470576200046f62000412565b5b50919050565b614c1380620004866000396000f3fe6080604052600436106102255760003560e01c80636352211e11610123578063a0712d68116100ab578063d5abeb011161006f578063d5abeb01146107dc578063d903910b14610807578063dc4e66b514610823578063e985e9c51461084c578063f2fde38b1461088957610225565b8063a0712d6814610708578063a22cb46514610724578063b88d4fde1461074d578063bde12d7314610776578063c87b56dd1461079f57610225565b806377ad99f0116100f257806377ad99f0146106305780637c6b172d1461064c5780638da5cb5b1461068957806395d89b41146106b457806396ea3a47146106df57610225565b80636352211e146105745780636c0360eb146105b157806370a08231146105dc578063715018a61461061957610225565b80632f745c59116101b1578063485a68a311610175578063485a68a31461048d5780634f6ccce7146104b857806355f804b3146104f557806356569a1d1461051e5780635c975abb1461054957610225565b80632f745c59146103c957806334c8fd75146104065780633ccfd60b1461043157806342842e0e1461043b57806344a0d68a1461046457610225565b8063095ea7b3116101f8578063095ea7b3146102f857806313faede61461032157806318160ddd1461034c578063228025e81461037757806323b872dd146103a057610225565b806301ffc9a71461022a578063022d67dd1461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906131fa565b6108b2565b60405161025e9190613242565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613293565b6109fc565b005b34801561029c57600080fd5b506102a5610a82565b6040516102b29190613359565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd9190613293565b610b14565b6040516102ef91906133bc565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a9190613403565b610b99565b005b34801561032d57600080fd5b50610336610cb1565b6040516103439190613452565b60405180910390f35b34801561035857600080fd5b50610361610cb7565b60405161036e9190613452565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613293565b610cc0565b005b3480156103ac57600080fd5b506103c760048036038101906103c2919061346d565b610d8b565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190613403565b610d9b565b6040516103fd9190613452565b60405180910390f35b34801561041257600080fd5b5061041b610f8b565b6040516104289190613452565b60405180910390f35b610439610f91565b005b34801561044757600080fd5b50610462600480360381019061045d919061346d565b611086565b005b34801561047057600080fd5b5061048b60048036038101906104869190613293565b6110a6565b005b34801561049957600080fd5b506104a261112c565b6040516104af9190613452565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190613293565b611132565b6040516104ec9190613452565b60405180910390f35b34801561050157600080fd5b5061051c600480360381019061051791906135f5565b611185565b005b34801561052a57600080fd5b5061053361121b565b6040516105409190613452565b60405180910390f35b34801561055557600080fd5b5061055e611221565b60405161056b9190613242565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190613293565b611238565b6040516105a891906133bc565b60405180910390f35b3480156105bd57600080fd5b506105c661124e565b6040516105d39190613359565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe919061363e565b6112dc565b6040516106109190613452565b60405180910390f35b34801561062557600080fd5b5061062e6113c4565b005b61064a60048036038101906106459190613293565b61144c565b005b34801561065857600080fd5b50610673600480360381019061066e919061363e565b611542565b6040516106809190613452565b60405180910390f35b34801561069557600080fd5b5061069e61155a565b6040516106ab91906133bc565b60405180910390f35b3480156106c057600080fd5b506106c9611584565b6040516106d69190613359565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190613721565b611616565b005b610722600480360381019061071d9190613293565b6117f8565b005b34801561073057600080fd5b5061074b600480360381019061074691906137ce565b61195d565b005b34801561075957600080fd5b50610774600480360381019061076f91906138af565b611add565b005b34801561078257600080fd5b5061079d60048036038101906107989190613293565b611b39565b005b3480156107ab57600080fd5b506107c660048036038101906107c19190613293565b611bbf565b6040516107d39190613359565b60405180910390f35b3480156107e857600080fd5b506107f1611c66565b6040516107fe9190613452565b60405180910390f35b610821600480360381019061081c9190613293565b611c6c565b005b34801561082f57600080fd5b5061084a60048036038101906108459190613293565b611e7d565b005b34801561085857600080fd5b50610873600480360381019061086e9190613932565b611f03565b6040516108809190613242565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab919061363e565b611f97565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109e557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109f557506109f48261208e565b5b9050919050565b610a046120f8565b73ffffffffffffffffffffffffffffffffffffffff16610a2261155a565b73ffffffffffffffffffffffffffffffffffffffff1614610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f906139be565b60405180910390fd5b80600e8190555050565b606060018054610a9190613a0d565b80601f0160208091040260200160405190810160405280929190818152602001828054610abd90613a0d565b8015610b0a5780601f10610adf57610100808354040283529160200191610b0a565b820191906000526020600020905b815481529060010190602001808311610aed57829003601f168201915b5050505050905090565b6000610b1f82612100565b610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5590613ab0565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ba482611238565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90613b42565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c336120f8565b73ffffffffffffffffffffffffffffffffffffffff161480610c625750610c6181610c5c6120f8565b611f03565b5b610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890613bd4565b60405180910390fd5b610cac83838361210d565b505050565b600a5481565b60008054905090565b610cc86120f8565b73ffffffffffffffffffffffffffffffffffffffff16610ce661155a565b73ffffffffffffffffffffffffffffffffffffffff1614610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d33906139be565b60405180910390fd5b600b54811115610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890613c40565b60405180910390fd5b80600b8190555050565b610d968383836121bf565b505050565b6000610da6836112dc565b8210610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde90613cd2565b60405180910390fd5b6000610df1610cb7565b905060008060005b83811015610f49576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eeb57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f3b57868403610f32578195505050505050610f85565b83806001019450505b508080600101915050610df9565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90613d64565b60405180910390fd5b92915050565b600e5481565b610f996120f8565b73ffffffffffffffffffffffffffffffffffffffff16610fb761155a565b73ffffffffffffffffffffffffffffffffffffffff161461100d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611004906139be565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161103390613db5565b60006040518083038185875af1925050503d8060008114611070576040519150601f19603f3d011682016040523d82523d6000602084013e611075565b606091505b505090508061108357600080fd5b50565b6110a183838360405180602001604052806000815250611add565b505050565b6110ae6120f8565b73ffffffffffffffffffffffffffffffffffffffff166110cc61155a565b73ffffffffffffffffffffffffffffffffffffffff1614611122576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611119906139be565b60405180910390fd5b80600a8190555050565b600c5481565b600061113c610cb7565b821061117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490613e3c565b60405180910390fd5b819050919050565b61118d6120f8565b73ffffffffffffffffffffffffffffffffffffffff166111ab61155a565b73ffffffffffffffffffffffffffffffffffffffff1614611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f8906139be565b60405180910390fd5b80600990805190602001906112179291906130b1565b5050565b600d5481565b6000600760149054906101000a900460ff16905090565b6000611243826126fd565b600001519050919050565b6009805461125b90613a0d565b80601f016020809104026020016040519081016040528092919081815260200182805461128790613a0d565b80156112d45780601f106112a9576101008083540402835291602001916112d4565b820191906000526020600020905b8154815290600101906020018083116112b757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361134c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134390613ece565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113cc6120f8565b73ffffffffffffffffffffffffffffffffffffffff166113ea61155a565b73ffffffffffffffffffffffffffffffffffffffff1614611440576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611437906139be565b60405180910390fd5b61144a6000612897565b565b6114546120f8565b73ffffffffffffffffffffffffffffffffffffffff1661147261155a565b73ffffffffffffffffffffffffffffffffffffffff16146114c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bf906139be565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16826040516114ee90613db5565b60006040518083038185875af1925050503d806000811461152b576040519150601f19603f3d011682016040523d82523d6000602084013e611530565b606091505b505090508061153e57600080fd5b5050565b600f6020528060005260406000206000915090505481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461159390613a0d565b80601f01602080910402602001604051908101604052809291908181526020018280546115bf90613a0d565b801561160c5780601f106115e15761010080835404028352916020019161160c565b820191906000526020600020905b8154815290600101906020018083116115ef57829003601f168201915b5050505050905090565b61161e6120f8565b73ffffffffffffffffffffffffffffffffffffffff1661163c61155a565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611689906139be565b60405180910390fd5b8181905084849050146116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d190613f60565b60405180910390fd5b6000806116e5610cb7565b905060005b8686905081101561172d5786868281811061170857611707613f80565b5b905060200201358361171a9190613fde565b92508061172690614034565b90506116ea565b50600b54828261173d9190613fde565b111561177e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611775906140c8565b60405180910390fd5b6000915060005b848490508110156117eb576117da8585838181106117a6576117a5613f80565b5b90506020020160208101906117bb919061363e565b8888848181106117ce576117cd613f80565b5b9050602002013561295d565b806117e490614034565b9050611785565b5060009050505050505050565b60026008540361183d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183490614134565b60405180910390fd5b6002600881905550600061184f610cb7565b905060008211611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b906141a0565b60405180910390fd5b600e548211156118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d09061420c565b60405180910390fd5b600b5482826118e89190613fde565b1115611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192090614278565b60405180910390fd5b81600a546119379190614298565b34101561194357600080fd5b61194d338361295d565b6000905050600160088190555050565b6119656120f8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c99061433e565b60405180910390fd5b80600660006119df6120f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a8c6120f8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ad19190613242565b60405180910390a35050565b611ae88484846121bf565b611af48484848461297b565b611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a906143d0565b60405180910390fd5b50505050565b611b416120f8565b73ffffffffffffffffffffffffffffffffffffffff16611b5f61155a565b73ffffffffffffffffffffffffffffffffffffffff1614611bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bac906139be565b60405180910390fd5b80600c8190555050565b6060611bca82612100565b611c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0090614462565b60405180910390fd5b6000611c13612b02565b90506000815111611c335760405180602001604052806000815250611c5e565b80611c3d84612b94565b604051602001611c4e92919061450a565b6040516020818303038152906040525b915050919050565b600b5481565b600260085403611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca890614134565b60405180910390fd5b60026008819055506000611cc3610cb7565b90506000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548382611d189190613fde565b1115611d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5090614585565b60405180910390fd5b60008311611d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d93906141a0565b60405180910390fd5b600c548383611dab9190613fde565b1115611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390614278565b60405180910390fd5b60005b83811015611e5d57600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611e4790614034565b919050555080611e5690614034565b9050611def565b50611e68338461295d565b60009150600090505050600160088190555050565b611e856120f8565b73ffffffffffffffffffffffffffffffffffffffff16611ea361155a565b73ffffffffffffffffffffffffffffffffffffffff1614611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef0906139be565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f9f6120f8565b73ffffffffffffffffffffffffffffffffffffffff16611fbd61155a565b73ffffffffffffffffffffffffffffffffffffffff1614612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a906139be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207990614617565b60405180910390fd5b61208b81612897565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121ca826126fd565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121f16120f8565b73ffffffffffffffffffffffffffffffffffffffff16148061224d57506122166120f8565b73ffffffffffffffffffffffffffffffffffffffff1661223584610b14565b73ffffffffffffffffffffffffffffffffffffffff16145b80612269575061226882600001516122636120f8565b611f03565b5b9050806122ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a2906146a9565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461231d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123149061473b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361238c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612383906147cd565b60405180910390fd5b6123998585856001612cf4565b6123a9600084846000015161210d565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361268d576125ec81612100565b1561268c5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126f68585856001612cfa565b5050505050565b612705613137565b61270e82612100565b61274d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127449061485f565b60405180910390fd5b60008290505b60008110612856576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612847578092505050612892565b50808060019003915050612753565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612889906148f1565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612977828260405180602001604052806000815250612d00565b5050565b600061299c8473ffffffffffffffffffffffffffffffffffffffff16612d12565b15612af5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129c56120f8565b8786866040518563ffffffff1660e01b81526004016129e79493929190614966565b6020604051808303816000875af1925050508015612a2357506040513d601f19601f82011682018060405250810190612a2091906149c7565b60015b612aa5573d8060008114612a53576040519150601f19603f3d011682016040523d82523d6000602084013e612a58565b606091505b506000815103612a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a94906143d0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612afa565b600190505b949350505050565b606060098054612b1190613a0d565b80601f0160208091040260200160405190810160405280929190818152602001828054612b3d90613a0d565b8015612b8a5780601f10612b5f57610100808354040283529160200191612b8a565b820191906000526020600020905b815481529060010190602001808311612b6d57829003601f168201915b5050505050905090565b606060008203612bdb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cef565b600082905060005b60008214612c0d578080612bf690614034565b915050600a82612c069190614a23565b9150612be3565b60008167ffffffffffffffff811115612c2957612c286134ca565b5b6040519080825280601f01601f191660200182016040528015612c5b5781602001600182028036833780820191505090505b5090505b60008514612ce857600182612c749190614a54565b9150600a85612c839190614a88565b6030612c8f9190613fde565b60f81b818381518110612ca557612ca4613f80565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ce19190614a23565b9450612c5f565b8093505050505b919050565b50505050565b50505050565b612d0d8383836001612d35565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da190614b2b565b60405180910390fd5b60008403612ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de490614bbd565b60405180910390fd5b612dfa6000868387612cf4565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561309457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561307f5761303f600088848861297b565b61307e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613075906143d0565b60405180910390fd5b5b81806001019250508080600101915050612fc8565b5080600081905550506130aa6000868387612cfa565b5050505050565b8280546130bd90613a0d565b90600052602060002090601f0160209004810192826130df5760008555613126565b82601f106130f857805160ff1916838001178555613126565b82800160010185558215613126579182015b8281111561312557825182559160200191906001019061310a565b5b5090506131339190613171565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561318a576000816000905550600101613172565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131d7816131a2565b81146131e257600080fd5b50565b6000813590506131f4816131ce565b92915050565b6000602082840312156132105761320f613198565b5b600061321e848285016131e5565b91505092915050565b60008115159050919050565b61323c81613227565b82525050565b60006020820190506132576000830184613233565b92915050565b6000819050919050565b6132708161325d565b811461327b57600080fd5b50565b60008135905061328d81613267565b92915050565b6000602082840312156132a9576132a8613198565b5b60006132b78482850161327e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132fa5780820151818401526020810190506132df565b83811115613309576000848401525b50505050565b6000601f19601f8301169050919050565b600061332b826132c0565b61333581856132cb565b93506133458185602086016132dc565b61334e8161330f565b840191505092915050565b600060208201905081810360008301526133738184613320565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133a68261337b565b9050919050565b6133b68161339b565b82525050565b60006020820190506133d160008301846133ad565b92915050565b6133e08161339b565b81146133eb57600080fd5b50565b6000813590506133fd816133d7565b92915050565b6000806040838503121561341a57613419613198565b5b6000613428858286016133ee565b92505060206134398582860161327e565b9150509250929050565b61344c8161325d565b82525050565b60006020820190506134676000830184613443565b92915050565b60008060006060848603121561348657613485613198565b5b6000613494868287016133ee565b93505060206134a5868287016133ee565b92505060406134b68682870161327e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135028261330f565b810181811067ffffffffffffffff82111715613521576135206134ca565b5b80604052505050565b600061353461318e565b905061354082826134f9565b919050565b600067ffffffffffffffff8211156135605761355f6134ca565b5b6135698261330f565b9050602081019050919050565b82818337600083830152505050565b600061359861359384613545565b61352a565b9050828152602081018484840111156135b4576135b36134c5565b5b6135bf848285613576565b509392505050565b600082601f8301126135dc576135db6134c0565b5b81356135ec848260208601613585565b91505092915050565b60006020828403121561360b5761360a613198565b5b600082013567ffffffffffffffff8111156136295761362861319d565b5b613635848285016135c7565b91505092915050565b60006020828403121561365457613653613198565b5b6000613662848285016133ee565b91505092915050565b600080fd5b600080fd5b60008083601f84011261368b5761368a6134c0565b5b8235905067ffffffffffffffff8111156136a8576136a761366b565b5b6020830191508360208202830111156136c4576136c3613670565b5b9250929050565b60008083601f8401126136e1576136e06134c0565b5b8235905067ffffffffffffffff8111156136fe576136fd61366b565b5b60208301915083602082028301111561371a57613719613670565b5b9250929050565b6000806000806040858703121561373b5761373a613198565b5b600085013567ffffffffffffffff8111156137595761375861319d565b5b61376587828801613675565b9450945050602085013567ffffffffffffffff8111156137885761378761319d565b5b613794878288016136cb565b925092505092959194509250565b6137ab81613227565b81146137b657600080fd5b50565b6000813590506137c8816137a2565b92915050565b600080604083850312156137e5576137e4613198565b5b60006137f3858286016133ee565b9250506020613804858286016137b9565b9150509250929050565b600067ffffffffffffffff821115613829576138286134ca565b5b6138328261330f565b9050602081019050919050565b600061385261384d8461380e565b61352a565b90508281526020810184848401111561386e5761386d6134c5565b5b613879848285613576565b509392505050565b600082601f830112613896576138956134c0565b5b81356138a684826020860161383f565b91505092915050565b600080600080608085870312156138c9576138c8613198565b5b60006138d7878288016133ee565b94505060206138e8878288016133ee565b93505060406138f98782880161327e565b925050606085013567ffffffffffffffff81111561391a5761391961319d565b5b61392687828801613881565b91505092959194509250565b6000806040838503121561394957613948613198565b5b6000613957858286016133ee565b9250506020613968858286016133ee565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139a86020836132cb565b91506139b382613972565b602082019050919050565b600060208201905081810360008301526139d78161399b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a2557607f821691505b602082108103613a3857613a376139de565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613a9a602d836132cb565b9150613aa582613a3e565b604082019050919050565b60006020820190508181036000830152613ac981613a8d565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b2c6022836132cb565b9150613b3782613ad0565b604082019050919050565b60006020820190508181036000830152613b5b81613b1f565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613bbe6039836132cb565b9150613bc982613b62565b604082019050919050565b60006020820190508181036000830152613bed81613bb1565b9050919050565b7f43616e6e6f7420696e637265617365206d617820737570706c79000000000000600082015250565b6000613c2a601a836132cb565b9150613c3582613bf4565b602082019050919050565b60006020820190508181036000830152613c5981613c1d565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cbc6022836132cb565b9150613cc782613c60565b604082019050919050565b60006020820190508181036000830152613ceb81613caf565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613d4e602e836132cb565b9150613d5982613cf2565b604082019050919050565b60006020820190508181036000830152613d7d81613d41565b9050919050565b600081905092915050565b50565b6000613d9f600083613d84565b9150613daa82613d8f565b600082019050919050565b6000613dc082613d92565b9150819050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e266023836132cb565b9150613e3182613dca565b604082019050919050565b60006020820190508181036000830152613e5581613e19565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613eb8602b836132cb565b9150613ec382613e5c565b604082019050919050565b60006020820190508181036000830152613ee781613eab565b9050919050565b7f50726f76696465207175616e74697469657320616e6420726563697069656e7460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f4a6021836132cb565b9150613f5582613eee565b604082019050919050565b60006020820190508181036000830152613f7981613f3d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fe98261325d565b9150613ff48361325d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561402957614028613faf565b5b828201905092915050565b600061403f8261325d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361407157614070613faf565b5b600182019050919050565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b60006140b26008836132cb565b91506140bd8261407c565b602082019050919050565b600060208201905081810360008301526140e1816140a5565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061411e601f836132cb565b9150614129826140e8565b602082019050919050565b6000602082019050818103600083015261414d81614111565b9050919050565b7f43616e74206d696e742030000000000000000000000000000000000000000000600082015250565b600061418a600b836132cb565b915061419582614154565b602082019050919050565b600060208201905081810360008301526141b98161417d565b9050919050565b7f43616e74206d696e74206d6f7265207468656e206d61786d696e740000000000600082015250565b60006141f6601b836132cb565b9150614201826141c0565b602082019050919050565b60006020820190508181036000830152614225816141e9565b9050919050565b7f43616e7420676f206f76657220737570706c7900000000000000000000000000600082015250565b60006142626013836132cb565b915061426d8261422c565b602082019050919050565b6000602082019050818103600083015261429181614255565b9050919050565b60006142a38261325d565b91506142ae8361325d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142e7576142e6613faf565b5b828202905092915050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614328601a836132cb565b9150614333826142f2565b602082019050919050565b600060208201905081810360008301526143578161431b565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006143ba6033836132cb565b91506143c58261435e565b604082019050919050565b600060208201905081810360008301526143e9816143ad565b9050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b600061444c6021836132cb565b9150614457826143f0565b604082019050919050565b6000602082019050818103600083015261447b8161443f565b9050919050565b600081905092915050565b6000614498826132c0565b6144a28185614482565b93506144b28185602086016132dc565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006144f4600583614482565b91506144ff826144be565b600582019050919050565b6000614516828561448d565b9150614522828461448d565b915061452d826144e7565b91508190509392505050565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b600061456f601c836132cb565b915061457a82614539565b602082019050919050565b6000602082019050818103600083015261459e81614562565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146016026836132cb565b915061460c826145a5565b604082019050919050565b60006020820190508181036000830152614630816145f4565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006146936032836132cb565b915061469e82614637565b604082019050919050565b600060208201905081810360008301526146c281614686565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006147256026836132cb565b9150614730826146c9565b604082019050919050565b6000602082019050818103600083015261475481614718565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006147b76025836132cb565b91506147c28261475b565b604082019050919050565b600060208201905081810360008301526147e6816147aa565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614849602a836132cb565b9150614854826147ed565b604082019050919050565b600060208201905081810360008301526148788161483c565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006148db602f836132cb565b91506148e68261487f565b604082019050919050565b6000602082019050818103600083015261490a816148ce565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061493882614911565b614942818561491c565b93506149528185602086016132dc565b61495b8161330f565b840191505092915050565b600060808201905061497b60008301876133ad565b61498860208301866133ad565b6149956040830185613443565b81810360608301526149a7818461492d565b905095945050505050565b6000815190506149c1816131ce565b92915050565b6000602082840312156149dd576149dc613198565b5b60006149eb848285016149b2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a2e8261325d565b9150614a398361325d565b925082614a4957614a486149f4565b5b828204905092915050565b6000614a5f8261325d565b9150614a6a8361325d565b925082821015614a7d57614a7c613faf565b5b828203905092915050565b6000614a938261325d565b9150614a9e8361325d565b925082614aae57614aad6149f4565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b156021836132cb565b9150614b2082614ab9565b604082019050919050565b60006020820190508181036000830152614b4481614b08565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614ba76028836132cb565b9150614bb282614b4b565b604082019050919050565b60006020820190508181036000830152614bd681614b9a565b905091905056fea2646970667358221220728e24f1462a98952ac01b43722f801348d61d2dfdbc06e8849650b846146b6e64736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636352211e11610123578063a0712d68116100ab578063d5abeb011161006f578063d5abeb01146107dc578063d903910b14610807578063dc4e66b514610823578063e985e9c51461084c578063f2fde38b1461088957610225565b8063a0712d6814610708578063a22cb46514610724578063b88d4fde1461074d578063bde12d7314610776578063c87b56dd1461079f57610225565b806377ad99f0116100f257806377ad99f0146106305780637c6b172d1461064c5780638da5cb5b1461068957806395d89b41146106b457806396ea3a47146106df57610225565b80636352211e146105745780636c0360eb146105b157806370a08231146105dc578063715018a61461061957610225565b80632f745c59116101b1578063485a68a311610175578063485a68a31461048d5780634f6ccce7146104b857806355f804b3146104f557806356569a1d1461051e5780635c975abb1461054957610225565b80632f745c59146103c957806334c8fd75146104065780633ccfd60b1461043157806342842e0e1461043b57806344a0d68a1461046457610225565b8063095ea7b3116101f8578063095ea7b3146102f857806313faede61461032157806318160ddd1461034c578063228025e81461037757806323b872dd146103a057610225565b806301ffc9a71461022a578063022d67dd1461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906131fa565b6108b2565b60405161025e9190613242565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613293565b6109fc565b005b34801561029c57600080fd5b506102a5610a82565b6040516102b29190613359565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd9190613293565b610b14565b6040516102ef91906133bc565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a9190613403565b610b99565b005b34801561032d57600080fd5b50610336610cb1565b6040516103439190613452565b60405180910390f35b34801561035857600080fd5b50610361610cb7565b60405161036e9190613452565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613293565b610cc0565b005b3480156103ac57600080fd5b506103c760048036038101906103c2919061346d565b610d8b565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190613403565b610d9b565b6040516103fd9190613452565b60405180910390f35b34801561041257600080fd5b5061041b610f8b565b6040516104289190613452565b60405180910390f35b610439610f91565b005b34801561044757600080fd5b50610462600480360381019061045d919061346d565b611086565b005b34801561047057600080fd5b5061048b60048036038101906104869190613293565b6110a6565b005b34801561049957600080fd5b506104a261112c565b6040516104af9190613452565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190613293565b611132565b6040516104ec9190613452565b60405180910390f35b34801561050157600080fd5b5061051c600480360381019061051791906135f5565b611185565b005b34801561052a57600080fd5b5061053361121b565b6040516105409190613452565b60405180910390f35b34801561055557600080fd5b5061055e611221565b60405161056b9190613242565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190613293565b611238565b6040516105a891906133bc565b60405180910390f35b3480156105bd57600080fd5b506105c661124e565b6040516105d39190613359565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe919061363e565b6112dc565b6040516106109190613452565b60405180910390f35b34801561062557600080fd5b5061062e6113c4565b005b61064a60048036038101906106459190613293565b61144c565b005b34801561065857600080fd5b50610673600480360381019061066e919061363e565b611542565b6040516106809190613452565b60405180910390f35b34801561069557600080fd5b5061069e61155a565b6040516106ab91906133bc565b60405180910390f35b3480156106c057600080fd5b506106c9611584565b6040516106d69190613359565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190613721565b611616565b005b610722600480360381019061071d9190613293565b6117f8565b005b34801561073057600080fd5b5061074b600480360381019061074691906137ce565b61195d565b005b34801561075957600080fd5b50610774600480360381019061076f91906138af565b611add565b005b34801561078257600080fd5b5061079d60048036038101906107989190613293565b611b39565b005b3480156107ab57600080fd5b506107c660048036038101906107c19190613293565b611bbf565b6040516107d39190613359565b60405180910390f35b3480156107e857600080fd5b506107f1611c66565b6040516107fe9190613452565b60405180910390f35b610821600480360381019061081c9190613293565b611c6c565b005b34801561082f57600080fd5b5061084a60048036038101906108459190613293565b611e7d565b005b34801561085857600080fd5b50610873600480360381019061086e9190613932565b611f03565b6040516108809190613242565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab919061363e565b611f97565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109e557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109f557506109f48261208e565b5b9050919050565b610a046120f8565b73ffffffffffffffffffffffffffffffffffffffff16610a2261155a565b73ffffffffffffffffffffffffffffffffffffffff1614610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f906139be565b60405180910390fd5b80600e8190555050565b606060018054610a9190613a0d565b80601f0160208091040260200160405190810160405280929190818152602001828054610abd90613a0d565b8015610b0a5780601f10610adf57610100808354040283529160200191610b0a565b820191906000526020600020905b815481529060010190602001808311610aed57829003601f168201915b5050505050905090565b6000610b1f82612100565b610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5590613ab0565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ba482611238565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90613b42565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c336120f8565b73ffffffffffffffffffffffffffffffffffffffff161480610c625750610c6181610c5c6120f8565b611f03565b5b610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890613bd4565b60405180910390fd5b610cac83838361210d565b505050565b600a5481565b60008054905090565b610cc86120f8565b73ffffffffffffffffffffffffffffffffffffffff16610ce661155a565b73ffffffffffffffffffffffffffffffffffffffff1614610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d33906139be565b60405180910390fd5b600b54811115610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890613c40565b60405180910390fd5b80600b8190555050565b610d968383836121bf565b505050565b6000610da6836112dc565b8210610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde90613cd2565b60405180910390fd5b6000610df1610cb7565b905060008060005b83811015610f49576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eeb57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f3b57868403610f32578195505050505050610f85565b83806001019450505b508080600101915050610df9565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90613d64565b60405180910390fd5b92915050565b600e5481565b610f996120f8565b73ffffffffffffffffffffffffffffffffffffffff16610fb761155a565b73ffffffffffffffffffffffffffffffffffffffff161461100d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611004906139be565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161103390613db5565b60006040518083038185875af1925050503d8060008114611070576040519150601f19603f3d011682016040523d82523d6000602084013e611075565b606091505b505090508061108357600080fd5b50565b6110a183838360405180602001604052806000815250611add565b505050565b6110ae6120f8565b73ffffffffffffffffffffffffffffffffffffffff166110cc61155a565b73ffffffffffffffffffffffffffffffffffffffff1614611122576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611119906139be565b60405180910390fd5b80600a8190555050565b600c5481565b600061113c610cb7565b821061117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490613e3c565b60405180910390fd5b819050919050565b61118d6120f8565b73ffffffffffffffffffffffffffffffffffffffff166111ab61155a565b73ffffffffffffffffffffffffffffffffffffffff1614611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f8906139be565b60405180910390fd5b80600990805190602001906112179291906130b1565b5050565b600d5481565b6000600760149054906101000a900460ff16905090565b6000611243826126fd565b600001519050919050565b6009805461125b90613a0d565b80601f016020809104026020016040519081016040528092919081815260200182805461128790613a0d565b80156112d45780601f106112a9576101008083540402835291602001916112d4565b820191906000526020600020905b8154815290600101906020018083116112b757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361134c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134390613ece565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113cc6120f8565b73ffffffffffffffffffffffffffffffffffffffff166113ea61155a565b73ffffffffffffffffffffffffffffffffffffffff1614611440576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611437906139be565b60405180910390fd5b61144a6000612897565b565b6114546120f8565b73ffffffffffffffffffffffffffffffffffffffff1661147261155a565b73ffffffffffffffffffffffffffffffffffffffff16146114c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bf906139be565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16826040516114ee90613db5565b60006040518083038185875af1925050503d806000811461152b576040519150601f19603f3d011682016040523d82523d6000602084013e611530565b606091505b505090508061153e57600080fd5b5050565b600f6020528060005260406000206000915090505481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461159390613a0d565b80601f01602080910402602001604051908101604052809291908181526020018280546115bf90613a0d565b801561160c5780601f106115e15761010080835404028352916020019161160c565b820191906000526020600020905b8154815290600101906020018083116115ef57829003601f168201915b5050505050905090565b61161e6120f8565b73ffffffffffffffffffffffffffffffffffffffff1661163c61155a565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611689906139be565b60405180910390fd5b8181905084849050146116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d190613f60565b60405180910390fd5b6000806116e5610cb7565b905060005b8686905081101561172d5786868281811061170857611707613f80565b5b905060200201358361171a9190613fde565b92508061172690614034565b90506116ea565b50600b54828261173d9190613fde565b111561177e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611775906140c8565b60405180910390fd5b6000915060005b848490508110156117eb576117da8585838181106117a6576117a5613f80565b5b90506020020160208101906117bb919061363e565b8888848181106117ce576117cd613f80565b5b9050602002013561295d565b806117e490614034565b9050611785565b5060009050505050505050565b60026008540361183d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183490614134565b60405180910390fd5b6002600881905550600061184f610cb7565b905060008211611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b906141a0565b60405180910390fd5b600e548211156118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d09061420c565b60405180910390fd5b600b5482826118e89190613fde565b1115611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192090614278565b60405180910390fd5b81600a546119379190614298565b34101561194357600080fd5b61194d338361295d565b6000905050600160088190555050565b6119656120f8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c99061433e565b60405180910390fd5b80600660006119df6120f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a8c6120f8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ad19190613242565b60405180910390a35050565b611ae88484846121bf565b611af48484848461297b565b611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a906143d0565b60405180910390fd5b50505050565b611b416120f8565b73ffffffffffffffffffffffffffffffffffffffff16611b5f61155a565b73ffffffffffffffffffffffffffffffffffffffff1614611bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bac906139be565b60405180910390fd5b80600c8190555050565b6060611bca82612100565b611c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0090614462565b60405180910390fd5b6000611c13612b02565b90506000815111611c335760405180602001604052806000815250611c5e565b80611c3d84612b94565b604051602001611c4e92919061450a565b6040516020818303038152906040525b915050919050565b600b5481565b600260085403611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca890614134565b60405180910390fd5b60026008819055506000611cc3610cb7565b90506000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548382611d189190613fde565b1115611d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5090614585565b60405180910390fd5b60008311611d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d93906141a0565b60405180910390fd5b600c548383611dab9190613fde565b1115611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390614278565b60405180910390fd5b60005b83811015611e5d57600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611e4790614034565b919050555080611e5690614034565b9050611def565b50611e68338461295d565b60009150600090505050600160088190555050565b611e856120f8565b73ffffffffffffffffffffffffffffffffffffffff16611ea361155a565b73ffffffffffffffffffffffffffffffffffffffff1614611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef0906139be565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f9f6120f8565b73ffffffffffffffffffffffffffffffffffffffff16611fbd61155a565b73ffffffffffffffffffffffffffffffffffffffff1614612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a906139be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207990614617565b60405180910390fd5b61208b81612897565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121ca826126fd565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121f16120f8565b73ffffffffffffffffffffffffffffffffffffffff16148061224d57506122166120f8565b73ffffffffffffffffffffffffffffffffffffffff1661223584610b14565b73ffffffffffffffffffffffffffffffffffffffff16145b80612269575061226882600001516122636120f8565b611f03565b5b9050806122ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a2906146a9565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461231d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123149061473b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361238c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612383906147cd565b60405180910390fd5b6123998585856001612cf4565b6123a9600084846000015161210d565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361268d576125ec81612100565b1561268c5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126f68585856001612cfa565b5050505050565b612705613137565b61270e82612100565b61274d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127449061485f565b60405180910390fd5b60008290505b60008110612856576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612847578092505050612892565b50808060019003915050612753565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612889906148f1565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612977828260405180602001604052806000815250612d00565b5050565b600061299c8473ffffffffffffffffffffffffffffffffffffffff16612d12565b15612af5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129c56120f8565b8786866040518563ffffffff1660e01b81526004016129e79493929190614966565b6020604051808303816000875af1925050508015612a2357506040513d601f19601f82011682018060405250810190612a2091906149c7565b60015b612aa5573d8060008114612a53576040519150601f19603f3d011682016040523d82523d6000602084013e612a58565b606091505b506000815103612a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a94906143d0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612afa565b600190505b949350505050565b606060098054612b1190613a0d565b80601f0160208091040260200160405190810160405280929190818152602001828054612b3d90613a0d565b8015612b8a5780601f10612b5f57610100808354040283529160200191612b8a565b820191906000526020600020905b815481529060010190602001808311612b6d57829003601f168201915b5050505050905090565b606060008203612bdb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cef565b600082905060005b60008214612c0d578080612bf690614034565b915050600a82612c069190614a23565b9150612be3565b60008167ffffffffffffffff811115612c2957612c286134ca565b5b6040519080825280601f01601f191660200182016040528015612c5b5781602001600182028036833780820191505090505b5090505b60008514612ce857600182612c749190614a54565b9150600a85612c839190614a88565b6030612c8f9190613fde565b60f81b818381518110612ca557612ca4613f80565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ce19190614a23565b9450612c5f565b8093505050505b919050565b50505050565b50505050565b612d0d8383836001612d35565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da190614b2b565b60405180910390fd5b60008403612ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de490614bbd565b60405180910390fd5b612dfa6000868387612cf4565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561309457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561307f5761303f600088848861297b565b61307e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613075906143d0565b60405180910390fd5b5b81806001019250508080600101915050612fc8565b5080600081905550506130aa6000868387612cfa565b5050505050565b8280546130bd90613a0d565b90600052602060002090601f0160209004810192826130df5760008555613126565b82601f106130f857805160ff1916838001178555613126565b82800160010185558215613126579182015b8281111561312557825182559160200191906001019061310a565b5b5090506131339190613171565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561318a576000816000905550600101613172565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131d7816131a2565b81146131e257600080fd5b50565b6000813590506131f4816131ce565b92915050565b6000602082840312156132105761320f613198565b5b600061321e848285016131e5565b91505092915050565b60008115159050919050565b61323c81613227565b82525050565b60006020820190506132576000830184613233565b92915050565b6000819050919050565b6132708161325d565b811461327b57600080fd5b50565b60008135905061328d81613267565b92915050565b6000602082840312156132a9576132a8613198565b5b60006132b78482850161327e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132fa5780820151818401526020810190506132df565b83811115613309576000848401525b50505050565b6000601f19601f8301169050919050565b600061332b826132c0565b61333581856132cb565b93506133458185602086016132dc565b61334e8161330f565b840191505092915050565b600060208201905081810360008301526133738184613320565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133a68261337b565b9050919050565b6133b68161339b565b82525050565b60006020820190506133d160008301846133ad565b92915050565b6133e08161339b565b81146133eb57600080fd5b50565b6000813590506133fd816133d7565b92915050565b6000806040838503121561341a57613419613198565b5b6000613428858286016133ee565b92505060206134398582860161327e565b9150509250929050565b61344c8161325d565b82525050565b60006020820190506134676000830184613443565b92915050565b60008060006060848603121561348657613485613198565b5b6000613494868287016133ee565b93505060206134a5868287016133ee565b92505060406134b68682870161327e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135028261330f565b810181811067ffffffffffffffff82111715613521576135206134ca565b5b80604052505050565b600061353461318e565b905061354082826134f9565b919050565b600067ffffffffffffffff8211156135605761355f6134ca565b5b6135698261330f565b9050602081019050919050565b82818337600083830152505050565b600061359861359384613545565b61352a565b9050828152602081018484840111156135b4576135b36134c5565b5b6135bf848285613576565b509392505050565b600082601f8301126135dc576135db6134c0565b5b81356135ec848260208601613585565b91505092915050565b60006020828403121561360b5761360a613198565b5b600082013567ffffffffffffffff8111156136295761362861319d565b5b613635848285016135c7565b91505092915050565b60006020828403121561365457613653613198565b5b6000613662848285016133ee565b91505092915050565b600080fd5b600080fd5b60008083601f84011261368b5761368a6134c0565b5b8235905067ffffffffffffffff8111156136a8576136a761366b565b5b6020830191508360208202830111156136c4576136c3613670565b5b9250929050565b60008083601f8401126136e1576136e06134c0565b5b8235905067ffffffffffffffff8111156136fe576136fd61366b565b5b60208301915083602082028301111561371a57613719613670565b5b9250929050565b6000806000806040858703121561373b5761373a613198565b5b600085013567ffffffffffffffff8111156137595761375861319d565b5b61376587828801613675565b9450945050602085013567ffffffffffffffff8111156137885761378761319d565b5b613794878288016136cb565b925092505092959194509250565b6137ab81613227565b81146137b657600080fd5b50565b6000813590506137c8816137a2565b92915050565b600080604083850312156137e5576137e4613198565b5b60006137f3858286016133ee565b9250506020613804858286016137b9565b9150509250929050565b600067ffffffffffffffff821115613829576138286134ca565b5b6138328261330f565b9050602081019050919050565b600061385261384d8461380e565b61352a565b90508281526020810184848401111561386e5761386d6134c5565b5b613879848285613576565b509392505050565b600082601f830112613896576138956134c0565b5b81356138a684826020860161383f565b91505092915050565b600080600080608085870312156138c9576138c8613198565b5b60006138d7878288016133ee565b94505060206138e8878288016133ee565b93505060406138f98782880161327e565b925050606085013567ffffffffffffffff81111561391a5761391961319d565b5b61392687828801613881565b91505092959194509250565b6000806040838503121561394957613948613198565b5b6000613957858286016133ee565b9250506020613968858286016133ee565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139a86020836132cb565b91506139b382613972565b602082019050919050565b600060208201905081810360008301526139d78161399b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a2557607f821691505b602082108103613a3857613a376139de565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613a9a602d836132cb565b9150613aa582613a3e565b604082019050919050565b60006020820190508181036000830152613ac981613a8d565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b2c6022836132cb565b9150613b3782613ad0565b604082019050919050565b60006020820190508181036000830152613b5b81613b1f565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613bbe6039836132cb565b9150613bc982613b62565b604082019050919050565b60006020820190508181036000830152613bed81613bb1565b9050919050565b7f43616e6e6f7420696e637265617365206d617820737570706c79000000000000600082015250565b6000613c2a601a836132cb565b9150613c3582613bf4565b602082019050919050565b60006020820190508181036000830152613c5981613c1d565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cbc6022836132cb565b9150613cc782613c60565b604082019050919050565b60006020820190508181036000830152613ceb81613caf565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613d4e602e836132cb565b9150613d5982613cf2565b604082019050919050565b60006020820190508181036000830152613d7d81613d41565b9050919050565b600081905092915050565b50565b6000613d9f600083613d84565b9150613daa82613d8f565b600082019050919050565b6000613dc082613d92565b9150819050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e266023836132cb565b9150613e3182613dca565b604082019050919050565b60006020820190508181036000830152613e5581613e19565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613eb8602b836132cb565b9150613ec382613e5c565b604082019050919050565b60006020820190508181036000830152613ee781613eab565b9050919050565b7f50726f76696465207175616e74697469657320616e6420726563697069656e7460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f4a6021836132cb565b9150613f5582613eee565b604082019050919050565b60006020820190508181036000830152613f7981613f3d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fe98261325d565b9150613ff48361325d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561402957614028613faf565b5b828201905092915050565b600061403f8261325d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361407157614070613faf565b5b600182019050919050565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b60006140b26008836132cb565b91506140bd8261407c565b602082019050919050565b600060208201905081810360008301526140e1816140a5565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061411e601f836132cb565b9150614129826140e8565b602082019050919050565b6000602082019050818103600083015261414d81614111565b9050919050565b7f43616e74206d696e742030000000000000000000000000000000000000000000600082015250565b600061418a600b836132cb565b915061419582614154565b602082019050919050565b600060208201905081810360008301526141b98161417d565b9050919050565b7f43616e74206d696e74206d6f7265207468656e206d61786d696e740000000000600082015250565b60006141f6601b836132cb565b9150614201826141c0565b602082019050919050565b60006020820190508181036000830152614225816141e9565b9050919050565b7f43616e7420676f206f76657220737570706c7900000000000000000000000000600082015250565b60006142626013836132cb565b915061426d8261422c565b602082019050919050565b6000602082019050818103600083015261429181614255565b9050919050565b60006142a38261325d565b91506142ae8361325d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142e7576142e6613faf565b5b828202905092915050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614328601a836132cb565b9150614333826142f2565b602082019050919050565b600060208201905081810360008301526143578161431b565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006143ba6033836132cb565b91506143c58261435e565b604082019050919050565b600060208201905081810360008301526143e9816143ad565b9050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b600061444c6021836132cb565b9150614457826143f0565b604082019050919050565b6000602082019050818103600083015261447b8161443f565b9050919050565b600081905092915050565b6000614498826132c0565b6144a28185614482565b93506144b28185602086016132dc565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006144f4600583614482565b91506144ff826144be565b600582019050919050565b6000614516828561448d565b9150614522828461448d565b915061452d826144e7565b91508190509392505050565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b600061456f601c836132cb565b915061457a82614539565b602082019050919050565b6000602082019050818103600083015261459e81614562565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146016026836132cb565b915061460c826145a5565b604082019050919050565b60006020820190508181036000830152614630816145f4565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006146936032836132cb565b915061469e82614637565b604082019050919050565b600060208201905081810360008301526146c281614686565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006147256026836132cb565b9150614730826146c9565b604082019050919050565b6000602082019050818103600083015261475481614718565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006147b76025836132cb565b91506147c28261475b565b604082019050919050565b600060208201905081810360008301526147e6816147aa565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614849602a836132cb565b9150614854826147ed565b604082019050919050565b600060208201905081810360008301526148788161483c565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006148db602f836132cb565b91506148e68261487f565b604082019050919050565b6000602082019050818103600083015261490a816148ce565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061493882614911565b614942818561491c565b93506149528185602086016132dc565b61495b8161330f565b840191505092915050565b600060808201905061497b60008301876133ad565b61498860208301866133ad565b6149956040830185613443565b81810360608301526149a7818461492d565b905095945050505050565b6000815190506149c1816131ce565b92915050565b6000602082840312156149dd576149dc613198565b5b60006149eb848285016149b2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a2e8261325d565b9150614a398361325d565b925082614a4957614a486149f4565b5b828204905092915050565b6000614a5f8261325d565b9150614a6a8361325d565b925082821015614a7d57614a7c613faf565b5b828203905092915050565b6000614a938261325d565b9150614a9e8361325d565b925082614aae57614aad6149f4565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b156021836132cb565b9150614b2082614ab9565b604082019050919050565b60006020820190508181036000830152614b4481614b08565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614ba76028836132cb565b9150614bb282614b4b565b604082019050919050565b60006020820190508181036000830152614bd681614b9a565b905091905056fea2646970667358221220728e24f1462a98952ac01b43722f801348d61d2dfdbc06e8849650b846146b6e64736f6c634300080e0033

Deployed Bytecode Sourcemap

45159:3961:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24836:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48491:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26722:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28284:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27805:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45291:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23093:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48059:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29160:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23757:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45454:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48745:192;;;:::i;:::-;;29393:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47965:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45370:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23270:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48379:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45406:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39010:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26531:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45263:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25272:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41827:94;;;;;;;;;;;;;:::i;:::-;;48945:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45506:59;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41176:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26891:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46833:667;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46392:433;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28570:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29641:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48248:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47508:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45331:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45776:606;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48621:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28929:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42076:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24836:372;24938:4;24990:25;24975:40;;;:11;:40;;;;:105;;;;25047:33;25032:48;;;:11;:48;;;;24975:105;:172;;;;25112:35;25097:50;;;:11;:50;;;;24975:172;:225;;;;25164:36;25188:11;25164:23;:36::i;:::-;24975:225;24955:245;;24836:372;;;:::o;48491:122::-;41407:12;:10;:12::i;:::-;41396:23;;:7;:5;:7::i;:::-;:23;;;41388:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48598:7:::1;48572:23;:33;;;;48491:122:::0;:::o;26722:100::-;26776:13;26809:5;26802:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26722:100;:::o;28284:214::-;28352:7;28380:16;28388:7;28380;:16::i;:::-;28372:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28466:15;:24;28482:7;28466:24;;;;;;;;;;;;;;;;;;;;;28459:31;;28284:214;;;:::o;27805:413::-;27878:13;27894:24;27910:7;27894:15;:24::i;:::-;27878:40;;27943:5;27937:11;;:2;:11;;;27929:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28038:5;28022:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28047:37;28064:5;28071:12;:10;:12::i;:::-;28047:16;:37::i;:::-;28022:62;28000:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;28182:28;28191:2;28195:7;28204:5;28182:8;:28::i;:::-;27867:351;27805:413;;:::o;45291:33::-;;;;:::o;23093:100::-;23146:7;23173:12;;23166:19;;23093:100;:::o;48059:182::-;41407:12;:10;:12::i;:::-;41396:23;;:7;:5;:7::i;:::-;:23;;;41388:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48157:9:::1;;48140:13;:26;;48132:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;48220:13;48208:9;:25;;;;48059:182:::0;:::o;29160:162::-;29286:28;29296:4;29302:2;29306:7;29286:9;:28::i;:::-;29160:162;;;:::o;23757:1007::-;23846:7;23882:16;23892:5;23882:9;:16::i;:::-;23874:5;:24;23866:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23948:22;23973:13;:11;:13::i;:::-;23948:38;;23997:19;24027:25;24216:9;24211:466;24231:14;24227:1;:18;24211:466;;;24271:31;24305:11;:14;24317:1;24305:14;;;;;;;;;;;24271:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24368:1;24342:28;;:9;:14;;;:28;;;24338:111;;24415:9;:14;;;24395:34;;24338:111;24492:5;24471:26;;:17;:26;;;24467:195;;24541:5;24526:11;:20;24522:85;;24582:1;24575:8;;;;;;;;;24522:85;24629:13;;;;;;;24467:195;24252:425;24247:3;;;;;;;24211:466;;;;24700:56;;;;;;;;;;:::i;:::-;;;;;;;;23757:1007;;;;;:::o;45454:43::-;;;;:::o;48745:192::-;41407:12;:10;:12::i;:::-;41396:23;;:7;:5;:7::i;:::-;:23;;;41388:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48802:12:::1;48828:10;48820:24;;48866:21;48820:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48801:101;;;48921:7;48913:16;;;::::0;::::1;;48790:147;48745:192::o:0;29393:177::-;29523:39;29540:4;29546:2;29550:7;29523:39;;;;;;;;;;;;:16;:39::i;:::-;29393:177;;;:::o;47965:86::-;41407:12;:10;:12::i;:::-;41396:23;;:7;:5;:7::i;:::-;:23;;;41388:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48035:8:::1;48028:4;:15;;;;47965:86:::0;:::o;45370:29::-;;;;:::o;23270:187::-;23337:7;23373:13;:11;:13::i;:::-;23365:5;:21;23357:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23444:5;23437:12;;23270:187;;;:::o;48379:104::-;41407:12;:10;:12::i;:::-;41396:23;;:7;:5;:7::i;:::-;:23;;;41388:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48464:11:::1;48454:7;:21;;;;;;;;;;;;:::i;:::-;;48379:104:::0;:::o;45406:41::-;;;;:::o;39010:86::-;39057:4;39081:7;;;;;;;;;;;39074:14;;39010:86;:::o;26531:124::-;26595:7;26622:20;26634:7;26622:11;:20::i;:::-;:25;;;26615:32;;26531:124;;;:::o;45263:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25272:221::-;25336:7;25381:1;25364:19;;:5;:19;;;25356:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25457:12;:19;25470:5;25457:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25449:36;;25442:43;;25272:221;;;:::o;41827:94::-;41407:12;:10;:12::i;:::-;41396:23;;:7;:5;:7::i;:::-;:23;;;41388:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41892:21:::1;41910:1;41892:9;:21::i;:::-;41827:94::o:0;48945:172::-;41407:12;:10;:12::i;:::-;41396:23;;:7;:5;:7::i;:::-;:23;;;41388:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49020:12:::1;49046:10;49038:24;;49070:7;49038:44;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49019:63;;;49101:7;49093:16;;;::::0;::::1;;49008:109;48945:172:::0;:::o;45506:59::-;;;;;;;;;;;;;;;;;:::o;41176:87::-;41222:7;41249:6;;;;;;;;;;;41242:13;;41176:87;:::o;26891:104::-;26947:13;26980:7;26973:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26891:104;:::o;46833:667::-;41407:12;:10;:12::i;:::-;41396:23;;:7;:5;:7::i;:::-;:23;;;41388:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47000:9:::1;;:16;;46981:8;;:15;;:35;46959:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;47088:21;47124:9:::0;47136:13:::1;:11;:13::i;:::-;47124:25;;47165:9;47160:101;47184:8;;:15;;47180:1;:19;47160:101;;;47238:8;;47247:1;47238:11;;;;;;;:::i;:::-;;;;;;;;47221:28;;;;;:::i;:::-;;;47201:3;;;;:::i;:::-;;;47160:101;;;;47300:9;;47283:13;47279:1;:17;;;;:::i;:::-;:30;;47271:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;47333:20;;;47369:9;47364:110;47388:9;;:16;;47384:1;:20;47364:110;;;47426:36;47436:9;;47446:1;47436:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;47450:8;;47459:1;47450:11;;;;;;;:::i;:::-;;;;;;;;47426:9;:36::i;:::-;47406:3;;;;:::i;:::-;;;47364:110;;;;47484:8;;;46948:552;;46833:667:::0;;;;:::o;46392:433::-;44171:1;44767:7;;:19;44759:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;44171:1;44900:7;:18;;;;46466:9:::1;46478:13;:11;:13::i;:::-;46466:25;;46524:1;46510:11;:15;46502:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;46575:23;;46560:11;:38;;46552:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;46669:9;;46654:11;46650:1;:15;;;;:::i;:::-;:28;;46642:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;46741:11;46734:4;;:18;;;;:::i;:::-;46721:9;:31;;46713:40;;;::::0;::::1;;46764:34;46774:10;46786:11;46764:9;:34::i;:::-;46809:8;;;46455:370;44127:1:::0;45079:7;:22;;;;46392:433;:::o;28570:288::-;28677:12;:10;:12::i;:::-;28665:24;;:8;:24;;;28657:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;28778:8;28733:18;:32;28752:12;:10;:12::i;:::-;28733:32;;;;;;;;;;;;;;;:42;28766:8;28733:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28831:8;28802:48;;28817:12;:10;:12::i;:::-;28802:48;;;28841:8;28802:48;;;;;;:::i;:::-;;;;;;;;28570:288;;:::o;29641:355::-;29800:28;29810:4;29816:2;29820:7;29800:9;:28::i;:::-;29861:48;29884:4;29890:2;29894:7;29903:5;29861:22;:48::i;:::-;29839:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;29641:355;;;;:::o;48248:123::-;41407:12;:10;:12::i;:::-;41396:23;;:7;:5;:7::i;:::-;:23;;;41388:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48346:17:::1;48336:7;:27;;;;48248:123:::0;:::o;47508:445::-;47626:13;47665:16;47673:7;47665;:16::i;:::-;47657:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47730:28;47761:10;:8;:10::i;:::-;47730:41;;47833:1;47808:14;47802:28;:32;:143;;;;;;;;;;;;;;;;;47878:14;47894:18;:7;:16;:18::i;:::-;47861:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47802:143;47782:163;;;47508:445;;;:::o;45331:32::-;;;;:::o;45776:606::-;44171:1;44767:7;;:19;44759:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;44171:1;44900:7;:18;;;;45844:9:::1;45856:13;:11;:13::i;:::-;45844:25;;45880:30;45913:24;:36;45938:10;45913:36;;;;;;;;;;;;;;;;45880:69;;46008:22;;45993:11;45968:22;:36;;;;:::i;:::-;:62;;45960:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;46090:1;46076:11;:15;46068:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;46140:7;;46125:11;46121:1;:15;;;;:::i;:::-;:26;;46113:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;46182:9;46177:103;46201:11;46197:1;:15;46177:103;;;46234:24;:36;46259:10;46234:36;;;;;;;;;;;;;;;;:38;;;;;;;;;:::i;:::-;;;;;;46214:3;;;;:::i;:::-;;;46177:103;;;;46290:34;46300:10;46312:11;46290:9;:34::i;:::-;46329:8;;;46348:29;;;45839:543;;44127:1:::0;45079:7;:22;;;;45776:606;:::o;48621:118::-;41407:12;:10;:12::i;:::-;41396:23;;:7;:5;:7::i;:::-;:23;;;41388:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48724:7:::1;48699:22;:32;;;;48621:118:::0;:::o;28929:164::-;29026:4;29050:18;:25;29069:5;29050:25;;;;;;;;;;;;;;;:35;29076:8;29050:35;;;;;;;;;;;;;;;;;;;;;;;;;29043:42;;28929:164;;;;:::o;42076:229::-;41407:12;:10;:12::i;:::-;41396:23;;:7;:5;:7::i;:::-;:23;;;41388:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42199:1:::1;42179:22;;:8;:22;;::::0;42157:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;42278:19;42288:8;42278:9;:19::i;:::-;42076:229:::0;:::o;14356:157::-;14441:4;14480:25;14465:40;;;:11;:40;;;;14458:47;;14356:157;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;30251:111::-;30308:4;30342:12;;30332:7;:22;30325:29;;30251:111;;;:::o;35171:196::-;35313:2;35286:15;:24;35302:7;35286:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35351:7;35347:2;35331:28;;35340:5;35331:28;;;;;;;;;;;;35171:196;;;:::o;33051:2002::-;33166:35;33204:20;33216:7;33204:11;:20::i;:::-;33166:58;;33237:22;33279:13;:18;;;33263:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;33338:12;:10;:12::i;:::-;33314:36;;:20;33326:7;33314:11;:20::i;:::-;:36;;;33263:87;:154;;;;33367:50;33384:13;:18;;;33404:12;:10;:12::i;:::-;33367:16;:50::i;:::-;33263:154;33237:181;;33439:17;33431:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;33554:4;33532:26;;:13;:18;;;:26;;;33524:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;33634:1;33620:16;;:2;:16;;;33612:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;33691:43;33713:4;33719:2;33723:7;33732:1;33691:21;:43::i;:::-;33799:49;33816:1;33820:7;33829:13;:18;;;33799:8;:49::i;:::-;34174:1;34144:12;:18;34157:4;34144:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34218:1;34190:12;:16;34203:2;34190:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34264:2;34236:11;:20;34248:7;34236:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;34326:15;34281:11;:20;34293:7;34281:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;34594:19;34626:1;34616:7;:11;34594:33;;34687:1;34646:43;;:11;:24;34658:11;34646:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;34642:295;;34714:20;34722:11;34714:7;:20::i;:::-;34710:212;;;34791:13;:18;;;34759:11;:24;34771:11;34759:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;34874:13;:28;;;34832:11;:24;34844:11;34832:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;34710:212;34642:295;34119:829;34984:7;34980:2;34965:27;;34974:4;34965:27;;;;;;;;;;;;35003:42;35024:4;35030:2;35034:7;35043:1;35003:20;:42::i;:::-;33155:1898;;33051:2002;;;:::o;25932:537::-;25993:21;;:::i;:::-;26035:16;26043:7;26035;:16::i;:::-;26027:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26141:12;26156:7;26141:22;;26136:245;26173:1;26165:4;:9;26136:245;;26203:31;26237:11;:17;26249:4;26237:17;;;;;;;;;;;26203:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26303:1;26277:28;;:9;:14;;;:28;;;26273:93;;26337:9;26330:16;;;;;;26273:93;26184:197;26176:6;;;;;;;;26136:245;;;;26404:57;;;;;;;;;;:::i;:::-;;;;;;;;25932:537;;;;:::o;42313:173::-;42369:16;42388:6;;;;;;;;;;;42369:25;;42414:8;42405:6;;:17;;;;;;;;;;;;;;;;;;42469:8;42438:40;;42459:8;42438:40;;;;;;;;;;;;42358:128;42313:173;:::o;30370:104::-;30439:27;30449:2;30453:8;30439:27;;;;;;;;;;;;:9;:27::i;:::-;30370:104;;:::o;35932:804::-;36087:4;36108:15;:2;:13;;;:15::i;:::-;36104:625;;;36160:2;36144:36;;;36181:12;:10;:12::i;:::-;36195:4;36201:7;36210:5;36144:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36140:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36407:1;36390:6;:13;:18;36386:273;;36433:61;;;;;;;;;;:::i;:::-;;;;;;;;36386:273;36609:6;36603:13;36594:6;36590:2;36586:15;36579:38;36140:534;36277:45;;;36267:55;;;:6;:55;;;;36260:62;;;;;36104:625;36713:4;36706:11;;35932:804;;;;;;;:::o;45660:108::-;45720:13;45753:7;45746:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45660:108;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;37224:159::-;;;;;:::o;37795:158::-;;;;;:::o;30837:163::-;30960:32;30966:2;30970:8;30980:5;30987:4;30960:5;:32::i;:::-;30837:163;;;:::o;4250:326::-;4310:4;4567:1;4545:7;:19;;;:23;4538:30;;4250:326;;;:::o;31259:1538::-;31398:20;31421:12;;31398:35;;31466:1;31452:16;;:2;:16;;;31444:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;31537:1;31525:8;:13;31517:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;31596:61;31626:1;31630:2;31634:12;31648:8;31596:21;:61::i;:::-;31971:8;31935:12;:16;31948:2;31935:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32036:8;31995:12;:16;32008:2;31995:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32095:2;32062:11;:25;32074:12;32062:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32162:15;32112:11;:25;32124:12;32112:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;32195:20;32218:12;32195:35;;32252:9;32247:415;32267:8;32263:1;:12;32247:415;;;32331:12;32327:2;32306:38;;32323:1;32306:38;;;;;;;;;;;;32367:4;32363:249;;;32430:59;32461:1;32465:2;32469:12;32483:5;32430:22;:59::i;:::-;32396:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;32363:249;32632:14;;;;;;;32277:3;;;;;;;32247:415;;;;32693:12;32678;:27;;;;31910:807;32729:60;32758:1;32762:2;32766:12;32780:8;32729:20;:60::i;:::-;31387:1410;31259:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::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:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:122::-;1674:24;1692:5;1674:24;:::i;:::-;1667:5;1664:35;1654:63;;1713:1;1710;1703:12;1654:63;1601:122;:::o;1729:139::-;1775:5;1813:6;1800:20;1791:29;;1829:33;1856:5;1829:33;:::i;:::-;1729:139;;;;:::o;1874:329::-;1933:6;1982:2;1970:9;1961:7;1957:23;1953:32;1950:119;;;1988:79;;:::i;:::-;1950:119;2108:1;2133:53;2178:7;2169:6;2158:9;2154:22;2133:53;:::i;:::-;2123:63;;2079:117;1874:329;;;;:::o;2209:99::-;2261:6;2295:5;2289:12;2279:22;;2209:99;;;:::o;2314:169::-;2398:11;2432:6;2427:3;2420:19;2472:4;2467:3;2463:14;2448:29;;2314:169;;;;:::o;2489:307::-;2557:1;2567:113;2581:6;2578:1;2575:13;2567:113;;;2666:1;2661:3;2657:11;2651:18;2647:1;2642:3;2638:11;2631:39;2603:2;2600:1;2596:10;2591:15;;2567:113;;;2698:6;2695:1;2692:13;2689:101;;;2778:1;2769:6;2764:3;2760:16;2753:27;2689:101;2538:258;2489:307;;;:::o;2802:102::-;2843:6;2894:2;2890:7;2885:2;2878:5;2874:14;2870:28;2860:38;;2802:102;;;:::o;2910:364::-;2998:3;3026:39;3059:5;3026:39;:::i;:::-;3081:71;3145:6;3140:3;3081:71;:::i;:::-;3074:78;;3161:52;3206:6;3201:3;3194:4;3187:5;3183:16;3161:52;:::i;:::-;3238:29;3260:6;3238:29;:::i;:::-;3233:3;3229:39;3222:46;;3002:272;2910:364;;;;:::o;3280:313::-;3393:4;3431:2;3420:9;3416:18;3408:26;;3480:9;3474:4;3470:20;3466:1;3455:9;3451:17;3444:47;3508:78;3581:4;3572:6;3508:78;:::i;:::-;3500:86;;3280:313;;;;:::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:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:117::-;8980:1;8977;8970:12;8994:117;9103:1;9100;9093:12;9134:568;9207:8;9217:6;9267:3;9260:4;9252:6;9248:17;9244:27;9234:122;;9275:79;;:::i;:::-;9234:122;9388:6;9375:20;9365:30;;9418:18;9410:6;9407:30;9404:117;;;9440:79;;:::i;:::-;9404:117;9554:4;9546:6;9542:17;9530:29;;9608:3;9600:4;9592:6;9588:17;9578:8;9574:32;9571:41;9568:128;;;9615:79;;:::i;:::-;9568:128;9134:568;;;;;:::o;9725:::-;9798:8;9808:6;9858:3;9851:4;9843:6;9839:17;9835:27;9825:122;;9866:79;;:::i;:::-;9825:122;9979:6;9966:20;9956:30;;10009:18;10001:6;9998:30;9995:117;;;10031:79;;:::i;:::-;9995:117;10145:4;10137:6;10133:17;10121:29;;10199:3;10191:4;10183:6;10179:17;10169:8;10165:32;10162:41;10159:128;;;10206:79;;:::i;:::-;10159:128;9725:568;;;;;:::o;10299:934::-;10421:6;10429;10437;10445;10494:2;10482:9;10473:7;10469:23;10465:32;10462:119;;;10500:79;;:::i;:::-;10462:119;10648:1;10637:9;10633:17;10620:31;10678:18;10670:6;10667:30;10664:117;;;10700:79;;:::i;:::-;10664:117;10813:80;10885:7;10876:6;10865:9;10861:22;10813:80;:::i;:::-;10795:98;;;;10591:312;10970:2;10959:9;10955:18;10942:32;11001:18;10993:6;10990:30;10987:117;;;11023:79;;:::i;:::-;10987:117;11136:80;11208:7;11199:6;11188:9;11184:22;11136:80;:::i;:::-;11118:98;;;;10913:313;10299:934;;;;;;;:::o;11239:116::-;11309:21;11324:5;11309:21;:::i;:::-;11302:5;11299:32;11289:60;;11345:1;11342;11335:12;11289:60;11239:116;:::o;11361:133::-;11404:5;11442:6;11429:20;11420:29;;11458:30;11482:5;11458:30;:::i;:::-;11361:133;;;;:::o;11500:468::-;11565:6;11573;11622:2;11610:9;11601:7;11597:23;11593:32;11590:119;;;11628:79;;:::i;:::-;11590:119;11748:1;11773:53;11818:7;11809:6;11798:9;11794:22;11773:53;:::i;:::-;11763:63;;11719:117;11875:2;11901:50;11943:7;11934:6;11923:9;11919:22;11901:50;:::i;:::-;11891:60;;11846:115;11500:468;;;;;:::o;11974:307::-;12035:4;12125:18;12117:6;12114:30;12111:56;;;12147:18;;:::i;:::-;12111:56;12185:29;12207:6;12185:29;:::i;:::-;12177:37;;12269:4;12263;12259:15;12251:23;;11974:307;;;:::o;12287:410::-;12364:5;12389:65;12405:48;12446:6;12405:48;:::i;:::-;12389:65;:::i;:::-;12380:74;;12477:6;12470:5;12463:21;12515:4;12508:5;12504:16;12553:3;12544:6;12539:3;12535:16;12532:25;12529:112;;;12560:79;;:::i;:::-;12529:112;12650:41;12684:6;12679:3;12674;12650:41;:::i;:::-;12370:327;12287:410;;;;;:::o;12716:338::-;12771:5;12820:3;12813:4;12805:6;12801:17;12797:27;12787:122;;12828:79;;:::i;:::-;12787:122;12945:6;12932:20;12970:78;13044:3;13036:6;13029:4;13021:6;13017:17;12970:78;:::i;:::-;12961:87;;12777:277;12716:338;;;;:::o;13060:943::-;13155:6;13163;13171;13179;13228:3;13216:9;13207:7;13203:23;13199:33;13196:120;;;13235:79;;:::i;:::-;13196:120;13355:1;13380:53;13425:7;13416:6;13405:9;13401:22;13380:53;:::i;:::-;13370:63;;13326:117;13482:2;13508:53;13553:7;13544:6;13533:9;13529:22;13508:53;:::i;:::-;13498:63;;13453:118;13610:2;13636:53;13681:7;13672:6;13661:9;13657:22;13636:53;:::i;:::-;13626:63;;13581:118;13766:2;13755:9;13751:18;13738:32;13797:18;13789:6;13786:30;13783:117;;;13819:79;;:::i;:::-;13783:117;13924:62;13978:7;13969:6;13958:9;13954:22;13924:62;:::i;:::-;13914:72;;13709:287;13060:943;;;;;;;:::o;14009:474::-;14077:6;14085;14134:2;14122:9;14113:7;14109:23;14105:32;14102:119;;;14140:79;;:::i;:::-;14102:119;14260:1;14285:53;14330:7;14321:6;14310:9;14306:22;14285:53;:::i;:::-;14275:63;;14231:117;14387:2;14413:53;14458:7;14449:6;14438:9;14434:22;14413:53;:::i;:::-;14403:63;;14358:118;14009:474;;;;;:::o;14489:182::-;14629:34;14625:1;14617:6;14613:14;14606:58;14489:182;:::o;14677:366::-;14819:3;14840:67;14904:2;14899:3;14840:67;:::i;:::-;14833:74;;14916:93;15005:3;14916:93;:::i;:::-;15034:2;15029:3;15025:12;15018:19;;14677:366;;;:::o;15049:419::-;15215:4;15253:2;15242:9;15238:18;15230:26;;15302:9;15296:4;15292:20;15288:1;15277:9;15273:17;15266:47;15330:131;15456:4;15330:131;:::i;:::-;15322:139;;15049:419;;;:::o;15474:180::-;15522:77;15519:1;15512:88;15619:4;15616:1;15609:15;15643:4;15640:1;15633:15;15660:320;15704:6;15741:1;15735:4;15731:12;15721:22;;15788:1;15782:4;15778:12;15809:18;15799:81;;15865:4;15857:6;15853:17;15843:27;;15799:81;15927:2;15919:6;15916:14;15896:18;15893:38;15890:84;;15946:18;;:::i;:::-;15890:84;15711:269;15660:320;;;:::o;15986:232::-;16126:34;16122:1;16114:6;16110:14;16103:58;16195:15;16190:2;16182:6;16178:15;16171:40;15986:232;:::o;16224:366::-;16366:3;16387:67;16451:2;16446:3;16387:67;:::i;:::-;16380:74;;16463:93;16552:3;16463:93;:::i;:::-;16581:2;16576:3;16572:12;16565:19;;16224:366;;;:::o;16596:419::-;16762:4;16800:2;16789:9;16785:18;16777:26;;16849:9;16843:4;16839:20;16835:1;16824:9;16820:17;16813:47;16877:131;17003:4;16877:131;:::i;:::-;16869:139;;16596:419;;;:::o;17021:221::-;17161:34;17157:1;17149:6;17145:14;17138:58;17230:4;17225:2;17217:6;17213:15;17206:29;17021:221;:::o;17248:366::-;17390:3;17411:67;17475:2;17470:3;17411:67;:::i;:::-;17404:74;;17487:93;17576:3;17487:93;:::i;:::-;17605:2;17600:3;17596:12;17589:19;;17248:366;;;:::o;17620:419::-;17786:4;17824:2;17813:9;17809:18;17801:26;;17873:9;17867:4;17863:20;17859:1;17848:9;17844:17;17837:47;17901:131;18027:4;17901:131;:::i;:::-;17893:139;;17620:419;;;:::o;18045:244::-;18185:34;18181:1;18173:6;18169:14;18162:58;18254:27;18249:2;18241:6;18237:15;18230:52;18045:244;:::o;18295:366::-;18437:3;18458:67;18522:2;18517:3;18458:67;:::i;:::-;18451:74;;18534:93;18623:3;18534:93;:::i;:::-;18652:2;18647:3;18643:12;18636:19;;18295:366;;;:::o;18667:419::-;18833:4;18871:2;18860:9;18856:18;18848:26;;18920:9;18914:4;18910:20;18906:1;18895:9;18891:17;18884:47;18948:131;19074:4;18948:131;:::i;:::-;18940:139;;18667:419;;;:::o;19092:176::-;19232:28;19228:1;19220:6;19216:14;19209:52;19092:176;:::o;19274:366::-;19416:3;19437:67;19501:2;19496:3;19437:67;:::i;:::-;19430:74;;19513:93;19602:3;19513:93;:::i;:::-;19631:2;19626:3;19622:12;19615:19;;19274:366;;;:::o;19646:419::-;19812:4;19850:2;19839:9;19835:18;19827:26;;19899:9;19893:4;19889:20;19885:1;19874:9;19870:17;19863:47;19927:131;20053:4;19927:131;:::i;:::-;19919:139;;19646:419;;;:::o;20071:221::-;20211:34;20207:1;20199:6;20195:14;20188:58;20280:4;20275:2;20267:6;20263:15;20256:29;20071:221;:::o;20298:366::-;20440:3;20461:67;20525:2;20520:3;20461:67;:::i;:::-;20454:74;;20537:93;20626:3;20537:93;:::i;:::-;20655:2;20650:3;20646:12;20639:19;;20298:366;;;:::o;20670:419::-;20836:4;20874:2;20863:9;20859:18;20851:26;;20923:9;20917:4;20913:20;20909:1;20898:9;20894:17;20887:47;20951:131;21077:4;20951:131;:::i;:::-;20943:139;;20670:419;;;:::o;21095:233::-;21235:34;21231:1;21223:6;21219:14;21212:58;21304:16;21299:2;21291:6;21287:15;21280:41;21095:233;:::o;21334:366::-;21476:3;21497:67;21561:2;21556:3;21497:67;:::i;:::-;21490:74;;21573:93;21662:3;21573:93;:::i;:::-;21691:2;21686:3;21682:12;21675:19;;21334:366;;;:::o;21706:419::-;21872:4;21910:2;21899:9;21895:18;21887:26;;21959:9;21953:4;21949:20;21945:1;21934:9;21930:17;21923:47;21987:131;22113:4;21987:131;:::i;:::-;21979:139;;21706:419;;;:::o;22131:147::-;22232:11;22269:3;22254:18;;22131:147;;;;:::o;22284:114::-;;:::o;22404:398::-;22563:3;22584:83;22665:1;22660:3;22584:83;:::i;:::-;22577:90;;22676:93;22765:3;22676:93;:::i;:::-;22794:1;22789:3;22785:11;22778:18;;22404:398;;;:::o;22808:379::-;22992:3;23014:147;23157:3;23014:147;:::i;:::-;23007:154;;23178:3;23171:10;;22808:379;;;:::o;23193:222::-;23333:34;23329:1;23321:6;23317:14;23310:58;23402:5;23397:2;23389:6;23385:15;23378:30;23193:222;:::o;23421:366::-;23563:3;23584:67;23648:2;23643:3;23584:67;:::i;:::-;23577:74;;23660:93;23749:3;23660:93;:::i;:::-;23778:2;23773:3;23769:12;23762:19;;23421:366;;;:::o;23793:419::-;23959:4;23997:2;23986:9;23982:18;23974:26;;24046:9;24040:4;24036:20;24032:1;24021:9;24017:17;24010:47;24074:131;24200:4;24074:131;:::i;:::-;24066:139;;23793:419;;;:::o;24218:230::-;24358:34;24354:1;24346:6;24342:14;24335:58;24427:13;24422:2;24414:6;24410:15;24403:38;24218:230;:::o;24454:366::-;24596:3;24617:67;24681:2;24676:3;24617:67;:::i;:::-;24610:74;;24693:93;24782:3;24693:93;:::i;:::-;24811:2;24806:3;24802:12;24795:19;;24454:366;;;:::o;24826:419::-;24992:4;25030:2;25019:9;25015:18;25007:26;;25079:9;25073:4;25069:20;25065:1;25054:9;25050:17;25043:47;25107:131;25233:4;25107:131;:::i;:::-;25099:139;;24826:419;;;:::o;25251:220::-;25391:34;25387:1;25379:6;25375:14;25368:58;25460:3;25455:2;25447:6;25443:15;25436:28;25251:220;:::o;25477:366::-;25619:3;25640:67;25704:2;25699:3;25640:67;:::i;:::-;25633:74;;25716:93;25805:3;25716:93;:::i;:::-;25834:2;25829:3;25825:12;25818:19;;25477:366;;;:::o;25849:419::-;26015:4;26053:2;26042:9;26038:18;26030:26;;26102:9;26096:4;26092:20;26088:1;26077:9;26073:17;26066:47;26130:131;26256:4;26130:131;:::i;:::-;26122:139;;25849:419;;;:::o;26274:180::-;26322:77;26319:1;26312:88;26419:4;26416:1;26409:15;26443:4;26440:1;26433:15;26460:180;26508:77;26505:1;26498:88;26605:4;26602:1;26595:15;26629:4;26626:1;26619:15;26646:305;26686:3;26705:20;26723:1;26705:20;:::i;:::-;26700:25;;26739:20;26757:1;26739:20;:::i;:::-;26734:25;;26893:1;26825:66;26821:74;26818:1;26815:81;26812:107;;;26899:18;;:::i;:::-;26812:107;26943:1;26940;26936:9;26929:16;;26646:305;;;;:::o;26957:233::-;26996:3;27019:24;27037:5;27019:24;:::i;:::-;27010:33;;27065:66;27058:5;27055:77;27052:103;;27135:18;;:::i;:::-;27052:103;27182:1;27175:5;27171:13;27164:20;;26957:233;;;:::o;27196:158::-;27336:10;27332:1;27324:6;27320:14;27313:34;27196:158;:::o;27360:365::-;27502:3;27523:66;27587:1;27582:3;27523:66;:::i;:::-;27516:73;;27598:93;27687:3;27598:93;:::i;:::-;27716:2;27711:3;27707:12;27700:19;;27360:365;;;:::o;27731:419::-;27897:4;27935:2;27924:9;27920:18;27912:26;;27984:9;27978:4;27974:20;27970:1;27959:9;27955:17;27948:47;28012:131;28138:4;28012:131;:::i;:::-;28004:139;;27731:419;;;:::o;28156:181::-;28296:33;28292:1;28284:6;28280:14;28273:57;28156:181;:::o;28343:366::-;28485:3;28506:67;28570:2;28565:3;28506:67;:::i;:::-;28499:74;;28582:93;28671:3;28582:93;:::i;:::-;28700:2;28695:3;28691:12;28684:19;;28343:366;;;:::o;28715:419::-;28881:4;28919:2;28908:9;28904:18;28896:26;;28968:9;28962:4;28958:20;28954:1;28943:9;28939:17;28932:47;28996:131;29122:4;28996:131;:::i;:::-;28988:139;;28715:419;;;:::o;29140:161::-;29280:13;29276:1;29268:6;29264:14;29257:37;29140:161;:::o;29307:366::-;29449:3;29470:67;29534:2;29529:3;29470:67;:::i;:::-;29463:74;;29546:93;29635:3;29546:93;:::i;:::-;29664:2;29659:3;29655:12;29648:19;;29307:366;;;:::o;29679:419::-;29845:4;29883:2;29872:9;29868:18;29860:26;;29932:9;29926:4;29922:20;29918:1;29907:9;29903:17;29896:47;29960:131;30086:4;29960:131;:::i;:::-;29952:139;;29679:419;;;:::o;30104:177::-;30244:29;30240:1;30232:6;30228:14;30221:53;30104:177;:::o;30287:366::-;30429:3;30450:67;30514:2;30509:3;30450:67;:::i;:::-;30443:74;;30526:93;30615:3;30526:93;:::i;:::-;30644:2;30639:3;30635:12;30628:19;;30287:366;;;:::o;30659:419::-;30825:4;30863:2;30852:9;30848:18;30840:26;;30912:9;30906:4;30902:20;30898:1;30887:9;30883:17;30876:47;30940:131;31066:4;30940:131;:::i;:::-;30932:139;;30659:419;;;:::o;31084:169::-;31224:21;31220:1;31212:6;31208:14;31201:45;31084:169;:::o;31259:366::-;31401:3;31422:67;31486:2;31481:3;31422:67;:::i;:::-;31415:74;;31498:93;31587:3;31498:93;:::i;:::-;31616:2;31611:3;31607:12;31600:19;;31259:366;;;:::o;31631:419::-;31797:4;31835:2;31824:9;31820:18;31812:26;;31884:9;31878:4;31874:20;31870:1;31859:9;31855:17;31848:47;31912:131;32038:4;31912:131;:::i;:::-;31904:139;;31631:419;;;:::o;32056:348::-;32096:7;32119:20;32137:1;32119:20;:::i;:::-;32114:25;;32153:20;32171:1;32153:20;:::i;:::-;32148:25;;32341:1;32273:66;32269:74;32266:1;32263:81;32258:1;32251:9;32244:17;32240:105;32237:131;;;32348:18;;:::i;:::-;32237:131;32396:1;32393;32389:9;32378:20;;32056:348;;;;:::o;32410:176::-;32550:28;32546:1;32538:6;32534:14;32527:52;32410:176;:::o;32592:366::-;32734:3;32755:67;32819:2;32814:3;32755:67;:::i;:::-;32748:74;;32831:93;32920:3;32831:93;:::i;:::-;32949:2;32944:3;32940:12;32933:19;;32592:366;;;:::o;32964:419::-;33130:4;33168:2;33157:9;33153:18;33145:26;;33217:9;33211:4;33207:20;33203:1;33192:9;33188:17;33181:47;33245:131;33371:4;33245:131;:::i;:::-;33237:139;;32964:419;;;:::o;33389:238::-;33529:34;33525:1;33517:6;33513:14;33506:58;33598:21;33593:2;33585:6;33581:15;33574:46;33389:238;:::o;33633:366::-;33775:3;33796:67;33860:2;33855:3;33796:67;:::i;:::-;33789:74;;33872:93;33961:3;33872:93;:::i;:::-;33990:2;33985:3;33981:12;33974:19;;33633:366;;;:::o;34005:419::-;34171:4;34209:2;34198:9;34194:18;34186:26;;34258:9;34252:4;34248:20;34244:1;34233:9;34229:17;34222:47;34286:131;34412:4;34286:131;:::i;:::-;34278:139;;34005:419;;;:::o;34430:220::-;34570:34;34566:1;34558:6;34554:14;34547:58;34639:3;34634:2;34626:6;34622:15;34615:28;34430:220;:::o;34656:366::-;34798:3;34819:67;34883:2;34878:3;34819:67;:::i;:::-;34812:74;;34895:93;34984:3;34895:93;:::i;:::-;35013:2;35008:3;35004:12;34997:19;;34656:366;;;:::o;35028:419::-;35194:4;35232:2;35221:9;35217:18;35209:26;;35281:9;35275:4;35271:20;35267:1;35256:9;35252:17;35245:47;35309:131;35435:4;35309:131;:::i;:::-;35301:139;;35028:419;;;:::o;35453:148::-;35555:11;35592:3;35577:18;;35453:148;;;;:::o;35607:377::-;35713:3;35741:39;35774:5;35741:39;:::i;:::-;35796:89;35878:6;35873:3;35796:89;:::i;:::-;35789:96;;35894:52;35939:6;35934:3;35927:4;35920:5;35916:16;35894:52;:::i;:::-;35971:6;35966:3;35962:16;35955:23;;35717:267;35607:377;;;;:::o;35990:155::-;36130:7;36126:1;36118:6;36114:14;36107:31;35990:155;:::o;36151:400::-;36311:3;36332:84;36414:1;36409:3;36332:84;:::i;:::-;36325:91;;36425:93;36514:3;36425:93;:::i;:::-;36543:1;36538:3;36534:11;36527:18;;36151:400;;;:::o;36557:701::-;36838:3;36860:95;36951:3;36942:6;36860:95;:::i;:::-;36853:102;;36972:95;37063:3;37054:6;36972:95;:::i;:::-;36965:102;;37084:148;37228:3;37084:148;:::i;:::-;37077:155;;37249:3;37242:10;;36557:701;;;;;:::o;37264:178::-;37404:30;37400:1;37392:6;37388:14;37381:54;37264:178;:::o;37448:366::-;37590:3;37611:67;37675:2;37670:3;37611:67;:::i;:::-;37604:74;;37687:93;37776:3;37687:93;:::i;:::-;37805:2;37800:3;37796:12;37789:19;;37448:366;;;:::o;37820:419::-;37986:4;38024:2;38013:9;38009:18;38001:26;;38073:9;38067:4;38063:20;38059:1;38048:9;38044:17;38037:47;38101:131;38227:4;38101:131;:::i;:::-;38093:139;;37820:419;;;:::o;38245:225::-;38385:34;38381:1;38373:6;38369:14;38362:58;38454:8;38449:2;38441:6;38437:15;38430:33;38245:225;:::o;38476:366::-;38618:3;38639:67;38703:2;38698:3;38639:67;:::i;:::-;38632:74;;38715:93;38804:3;38715:93;:::i;:::-;38833:2;38828:3;38824:12;38817:19;;38476:366;;;:::o;38848:419::-;39014:4;39052:2;39041:9;39037:18;39029:26;;39101:9;39095:4;39091:20;39087:1;39076:9;39072:17;39065:47;39129:131;39255:4;39129:131;:::i;:::-;39121:139;;38848:419;;;:::o;39273:237::-;39413:34;39409:1;39401:6;39397:14;39390:58;39482:20;39477:2;39469:6;39465:15;39458:45;39273:237;:::o;39516:366::-;39658:3;39679:67;39743:2;39738:3;39679:67;:::i;:::-;39672:74;;39755:93;39844:3;39755:93;:::i;:::-;39873:2;39868:3;39864:12;39857:19;;39516:366;;;:::o;39888:419::-;40054:4;40092:2;40081:9;40077:18;40069:26;;40141:9;40135:4;40131:20;40127:1;40116:9;40112:17;40105:47;40169:131;40295:4;40169:131;:::i;:::-;40161:139;;39888:419;;;:::o;40313:225::-;40453:34;40449:1;40441:6;40437:14;40430:58;40522:8;40517:2;40509:6;40505:15;40498:33;40313:225;:::o;40544:366::-;40686:3;40707:67;40771:2;40766:3;40707:67;:::i;:::-;40700:74;;40783:93;40872:3;40783:93;:::i;:::-;40901:2;40896:3;40892:12;40885:19;;40544:366;;;:::o;40916:419::-;41082:4;41120:2;41109:9;41105:18;41097:26;;41169:9;41163:4;41159:20;41155:1;41144:9;41140:17;41133:47;41197:131;41323:4;41197:131;:::i;:::-;41189:139;;40916:419;;;:::o;41341:224::-;41481:34;41477:1;41469:6;41465:14;41458:58;41550:7;41545:2;41537:6;41533:15;41526:32;41341:224;:::o;41571:366::-;41713:3;41734:67;41798:2;41793:3;41734:67;:::i;:::-;41727:74;;41810:93;41899:3;41810:93;:::i;:::-;41928:2;41923:3;41919:12;41912:19;;41571:366;;;:::o;41943:419::-;42109:4;42147:2;42136:9;42132:18;42124:26;;42196:9;42190:4;42186:20;42182:1;42171:9;42167:17;42160:47;42224:131;42350:4;42224:131;:::i;:::-;42216:139;;41943:419;;;:::o;42368:229::-;42508:34;42504:1;42496:6;42492:14;42485:58;42577:12;42572:2;42564:6;42560:15;42553:37;42368:229;:::o;42603:366::-;42745:3;42766:67;42830:2;42825:3;42766:67;:::i;:::-;42759:74;;42842:93;42931:3;42842:93;:::i;:::-;42960:2;42955:3;42951:12;42944:19;;42603:366;;;:::o;42975:419::-;43141:4;43179:2;43168:9;43164:18;43156:26;;43228:9;43222:4;43218:20;43214:1;43203:9;43199:17;43192:47;43256:131;43382:4;43256:131;:::i;:::-;43248:139;;42975:419;;;:::o;43400:234::-;43540:34;43536:1;43528:6;43524:14;43517:58;43609:17;43604:2;43596:6;43592:15;43585:42;43400:234;:::o;43640:366::-;43782:3;43803:67;43867:2;43862:3;43803:67;:::i;:::-;43796:74;;43879:93;43968:3;43879:93;:::i;:::-;43997:2;43992:3;43988:12;43981:19;;43640:366;;;:::o;44012:419::-;44178:4;44216:2;44205:9;44201:18;44193:26;;44265:9;44259:4;44255:20;44251:1;44240:9;44236:17;44229:47;44293:131;44419:4;44293:131;:::i;:::-;44285:139;;44012:419;;;:::o;44437:98::-;44488:6;44522:5;44516:12;44506:22;;44437:98;;;:::o;44541:168::-;44624:11;44658:6;44653:3;44646:19;44698:4;44693:3;44689:14;44674:29;;44541:168;;;;:::o;44715:360::-;44801:3;44829:38;44861:5;44829:38;:::i;:::-;44883:70;44946:6;44941:3;44883:70;:::i;:::-;44876:77;;44962:52;45007:6;45002:3;44995:4;44988:5;44984:16;44962:52;:::i;:::-;45039:29;45061:6;45039:29;:::i;:::-;45034:3;45030:39;45023:46;;44805:270;44715:360;;;;:::o;45081:640::-;45276:4;45314:3;45303:9;45299:19;45291:27;;45328:71;45396:1;45385:9;45381:17;45372:6;45328:71;:::i;:::-;45409:72;45477:2;45466:9;45462:18;45453:6;45409:72;:::i;:::-;45491;45559:2;45548:9;45544:18;45535:6;45491:72;:::i;:::-;45610:9;45604:4;45600:20;45595:2;45584:9;45580:18;45573:48;45638:76;45709:4;45700:6;45638:76;:::i;:::-;45630:84;;45081:640;;;;;;;:::o;45727:141::-;45783:5;45814:6;45808:13;45799:22;;45830:32;45856:5;45830:32;:::i;:::-;45727:141;;;;:::o;45874:349::-;45943:6;45992:2;45980:9;45971:7;45967:23;45963:32;45960:119;;;45998:79;;:::i;:::-;45960:119;46118:1;46143:63;46198:7;46189:6;46178:9;46174:22;46143:63;:::i;:::-;46133:73;;46089:127;45874:349;;;;:::o;46229:180::-;46277:77;46274:1;46267:88;46374:4;46371:1;46364:15;46398:4;46395:1;46388:15;46415:185;46455:1;46472:20;46490:1;46472:20;:::i;:::-;46467:25;;46506:20;46524:1;46506:20;:::i;:::-;46501:25;;46545:1;46535:35;;46550:18;;:::i;:::-;46535:35;46592:1;46589;46585:9;46580:14;;46415:185;;;;:::o;46606:191::-;46646:4;46666:20;46684:1;46666:20;:::i;:::-;46661:25;;46700:20;46718:1;46700:20;:::i;:::-;46695:25;;46739:1;46736;46733:8;46730:34;;;46744:18;;:::i;:::-;46730:34;46789:1;46786;46782:9;46774:17;;46606:191;;;;:::o;46803:176::-;46835:1;46852:20;46870:1;46852:20;:::i;:::-;46847:25;;46886:20;46904:1;46886:20;:::i;:::-;46881:25;;46925:1;46915:35;;46930:18;;:::i;:::-;46915:35;46971:1;46968;46964:9;46959:14;;46803:176;;;;:::o;46985:220::-;47125:34;47121:1;47113:6;47109:14;47102:58;47194:3;47189:2;47181:6;47177:15;47170:28;46985:220;:::o;47211:366::-;47353:3;47374:67;47438:2;47433:3;47374:67;:::i;:::-;47367:74;;47450:93;47539:3;47450:93;:::i;:::-;47568:2;47563:3;47559:12;47552:19;;47211:366;;;:::o;47583:419::-;47749:4;47787:2;47776:9;47772:18;47764:26;;47836:9;47830:4;47826:20;47822:1;47811:9;47807:17;47800:47;47864:131;47990:4;47864:131;:::i;:::-;47856:139;;47583:419;;;:::o;48008:227::-;48148:34;48144:1;48136:6;48132:14;48125:58;48217:10;48212:2;48204:6;48200:15;48193:35;48008:227;:::o;48241:366::-;48383:3;48404:67;48468:2;48463:3;48404:67;:::i;:::-;48397:74;;48480:93;48569:3;48480:93;:::i;:::-;48598:2;48593:3;48589:12;48582:19;;48241:366;;;:::o;48613:419::-;48779:4;48817:2;48806:9;48802:18;48794:26;;48866:9;48860:4;48856:20;48852:1;48841:9;48837:17;48830:47;48894:131;49020:4;48894:131;:::i;:::-;48886:139;;48613:419;;;:::o

Swarm Source

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