ETH Price: $3,078.56 (+0.97%)
Gas: 3 Gwei

Token

PersianCat (PC)
 

Overview

Max Total Supply

3,969 PC

Holders

553

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 PC
0xaea6bdf19a5df265af8972aef23b6b2fe518b320
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:
PersianCat

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: contracts/PersianCat.sol



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

// File: contracts/PersianCat.sol



/**
 * @title PersianCat contract
*/

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

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 making 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;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @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/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}


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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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


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 virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public 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 {}
}

contract PersianCat is ERC721A, Ownable, ReentrancyGuard {

  string public        baseURI;
  uint public          price             = 0.0069 ether;
  uint public          maxPerTx          = 10;
  uint public          maxPerWallet      = 30;
  uint public          totalFree         = 2500;
  uint public          maxSupply         = 3969;
  uint public          nextOwnerToExplicitlySet;
  bool public          mintEnabled;

  constructor() ERC721A("PersianCat", "PC"){}

  function mint(uint256 amt) external payable
  {
    uint cost = price;
    if(totalSupply() + amt < totalFree + 1) {
      cost = 0;
    }
    require(msg.sender == tx.origin,"Be yourself, honey.");
    require(msg.value == amt * cost,"Please send the exact amount.");
    require(totalSupply() + amt < maxSupply + 1,"No more Apes available");
    require(mintEnabled, "Minting is not live yet.");
    require(numberMinted(msg.sender) + amt <= maxPerWallet,"Too many per wallet!");
    require( amt < maxPerTx + 1, "Max per TX reached.");

    _safeMint(msg.sender, amt);
  }

  function toggleMinting() external onlyOwner {
      mintEnabled = !mintEnabled;
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  function setBaseURI(string calldata baseURI_) external onlyOwner {
    baseURI = baseURI_;
  }

  function setPrice(uint256 price_) external onlyOwner {
      price = price_;
  }

  function setTotalFree(uint256 totalFree_) external onlyOwner {
      totalFree = totalFree_;
  }

  function setMaxPerTx(uint256 maxPerTx_) external onlyOwner {
      maxPerTx = maxPerTx_;
  }

  function setMaxPerWallet(uint256 maxPerWallet_) external onlyOwner {
      maxPerWallet = maxPerWallet_;
  }

  function setmaxSupply(uint256 maxSupply_) external onlyOwner {
      maxSupply = maxSupply_;
  }

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

  function withdraw() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

  function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }


  /**
    * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
    */
  function _setOwnersExplicit(uint256 quantity) internal {
      require(quantity != 0, "quantity must be nonzero");
      require(currentIndex != 0, "no tokens minted yet");
      uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet;
      require(_nextOwnerToExplicitlySet < currentIndex, "all ownerships have been set");

      // Index underflow is impossible.
      // Counter or index overflow is incredibly unrealistic.
      unchecked {
          uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1;

          // Set the end index to be the last token index
          if (endIndex + 1 > currentIndex) {
              endIndex = currentIndex - 1;
          }

          for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) {
              if (_ownerships[i].addr == address(0)) {
                  TokenOwnership memory ownership = ownershipOf(i);
                  _ownerships[i].addr = ownership.addr;
                  _ownerships[i].startTimestamp = ownership.startTimestamp;
              }
          }

          nextOwnerToExplicitlySet = endIndex + 1;
      }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalFree_","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","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":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"nonpayable","type":"function"}]

60806040526618838370f34000600a55600a600b55601e600c556109c4600d55610f81600e553480156200003257600080fd5b506040518060400160405280600a81526020017f5065727369616e436174000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f50430000000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000b7929190620001cf565b508060029080519060200190620000d0929190620001cf565b505050620000f3620000e76200010160201b60201c565b6200010960201b60201c565b6001600881905550620002e4565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001dd90620002ae565b90600052602060002090601f0160209004810192826200020157600085556200024d565b82601f106200021c57805160ff19168380011785556200024d565b828001600101855582156200024d579182015b828111156200024c5782518255916020019190600101906200022f565b5b5090506200025c919062000260565b5090565b5b808211156200027b57600081600090555060010162000261565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002c757607f821691505b60208210811415620002de57620002dd6200027f565b5b50919050565b614df180620002f46000396000f3fe6080604052600436106102305760003560e01c8063715018a61161012e578063c6f6f216116100ab578063dc33e6811161006f578063dc33e6811461081a578063e268e4d314610857578063e985e9c514610880578063f2fde38b146108bd578063f968adbe146108e657610230565b8063c6f6f21614610733578063c87b56dd1461075c578063d123973014610799578063d5abeb01146107c4578063d7224ba0146107ef57610230565b806395d89b41116100f257806395d89b411461066f578063a035b1fe1461069a578063a0712d68146106c5578063a22cb465146106e1578063b88d4fde1461070a57610230565b8063715018a6146105b05780637d55094d146105c75780638da5cb5b146105de57806391b7f5ed146106095780639231ab2a1461063257610230565b8063333e44e6116101bc57806355f804b31161018057806355f804b3146104b9578063563aaf11146104e25780636352211e1461050b5780636c0360eb1461054857806370a082311461057357610230565b8063333e44e6146103e65780633ccfd60b1461041157806342842e0e14610428578063453c2310146104515780634f6ccce71461047c57610230565b806318160ddd1161020357806318160ddd14610303578063228025e81461032e57806323b872dd146103575780632d20fb60146103805780632f745c59146103a957610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613375565b610911565b60405161026991906133bd565b60405180910390f35b34801561027e57600080fd5b50610287610a5b565b6040516102949190613471565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906134c9565b610aed565b6040516102d19190613537565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc919061357e565b610b72565b005b34801561030f57600080fd5b50610318610c8b565b60405161032591906135cd565b60405180910390f35b34801561033a57600080fd5b50610355600480360381019061035091906134c9565b610c94565b005b34801561036357600080fd5b5061037e600480360381019061037991906135e8565b610d1a565b005b34801561038c57600080fd5b506103a760048036038101906103a291906134c9565b610d2a565b005b3480156103b557600080fd5b506103d060048036038101906103cb919061357e565b610e08565b6040516103dd91906135cd565b60405180910390f35b3480156103f257600080fd5b506103fb610ffa565b60405161040891906135cd565b60405180910390f35b34801561041d57600080fd5b50610426611000565b005b34801561043457600080fd5b5061044f600480360381019061044a91906135e8565b611181565b005b34801561045d57600080fd5b506104666111a1565b60405161047391906135cd565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e91906134c9565b6111a7565b6040516104b091906135cd565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db91906136a0565b6111fa565b005b3480156104ee57600080fd5b50610509600480360381019061050491906134c9565b61128c565b005b34801561051757600080fd5b50610532600480360381019061052d91906134c9565b611312565b60405161053f9190613537565b60405180910390f35b34801561055457600080fd5b5061055d611328565b60405161056a9190613471565b60405180910390f35b34801561057f57600080fd5b5061059a600480360381019061059591906136ed565b6113b6565b6040516105a791906135cd565b60405180910390f35b3480156105bc57600080fd5b506105c561149f565b005b3480156105d357600080fd5b506105dc611527565b005b3480156105ea57600080fd5b506105f36115cf565b6040516106009190613537565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b91906134c9565b6115f9565b005b34801561063e57600080fd5b50610659600480360381019061065491906134c9565b61167f565b604051610666919061377b565b60405180910390f35b34801561067b57600080fd5b50610684611697565b6040516106919190613471565b60405180910390f35b3480156106a657600080fd5b506106af611729565b6040516106bc91906135cd565b60405180910390f35b6106df60048036038101906106da91906134c9565b61172f565b005b3480156106ed57600080fd5b50610708600480360381019061070391906137c2565b611985565b005b34801561071657600080fd5b50610731600480360381019061072c9190613932565b611b06565b005b34801561073f57600080fd5b5061075a600480360381019061075591906134c9565b611b62565b005b34801561076857600080fd5b50610783600480360381019061077e91906134c9565b611be8565b6040516107909190613471565b60405180910390f35b3480156107a557600080fd5b506107ae611c90565b6040516107bb91906133bd565b60405180910390f35b3480156107d057600080fd5b506107d9611ca3565b6040516107e691906135cd565b60405180910390f35b3480156107fb57600080fd5b50610804611ca9565b60405161081191906135cd565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c91906136ed565b611caf565b60405161084e91906135cd565b60405180910390f35b34801561086357600080fd5b5061087e600480360381019061087991906134c9565b611cc1565b005b34801561088c57600080fd5b506108a760048036038101906108a291906139b5565b611d47565b6040516108b491906133bd565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df91906136ed565b611ddb565b005b3480156108f257600080fd5b506108fb611ed3565b60405161090891906135cd565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109dc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a4457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a545750610a5382611ed9565b5b9050919050565b606060018054610a6a90613a24565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9690613a24565b8015610ae35780601f10610ab857610100808354040283529160200191610ae3565b820191906000526020600020905b815481529060010190602001808311610ac657829003601f168201915b5050505050905090565b6000610af882611f43565b610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e90613ac8565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b7d82611312565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590613b5a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c0d611f50565b73ffffffffffffffffffffffffffffffffffffffff161480610c3c5750610c3b81610c36611f50565b611d47565b5b610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7290613bec565b60405180910390fd5b610c86838383611f58565b505050565b60008054905090565b610c9c611f50565b73ffffffffffffffffffffffffffffffffffffffff16610cba6115cf565b73ffffffffffffffffffffffffffffffffffffffff1614610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0790613c58565b60405180910390fd5b80600e8190555050565b610d2583838361200a565b505050565b610d32611f50565b73ffffffffffffffffffffffffffffffffffffffff16610d506115cf565b73ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d90613c58565b60405180910390fd5b60026008541415610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de390613cc4565b60405180910390fd5b6002600881905550610dfd8161254a565b600160088190555050565b6000610e13836113b6565b8210610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b90613d56565b60405180910390fd5b6000610e5e610c8b565b905060008060005b83811015610fb8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f5857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610faa5786841415610fa1578195505050505050610ff4565b83806001019450505b508080600101915050610e66565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb90613de8565b60405180910390fd5b92915050565b600d5481565b611008611f50565b73ffffffffffffffffffffffffffffffffffffffff166110266115cf565b73ffffffffffffffffffffffffffffffffffffffff161461107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390613c58565b60405180910390fd5b600260085414156110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990613cc4565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516110f090613e39565b60006040518083038185875af1925050503d806000811461112d576040519150601f19603f3d011682016040523d82523d6000602084013e611132565b606091505b5050905080611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90613e9a565b60405180910390fd5b506001600881905550565b61119c83838360405180602001604052806000815250611b06565b505050565b600c5481565b60006111b1610c8b565b82106111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e990613f2c565b60405180910390fd5b819050919050565b611202611f50565b73ffffffffffffffffffffffffffffffffffffffff166112206115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d90613c58565b60405180910390fd5b81816009919061128792919061322c565b505050565b611294611f50565b73ffffffffffffffffffffffffffffffffffffffff166112b26115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff90613c58565b60405180910390fd5b80600d8190555050565b600061131d8261277c565b600001519050919050565b6009805461133590613a24565b80601f016020809104026020016040519081016040528092919081815260200182805461136190613a24565b80156113ae5780601f10611383576101008083540402835291602001916113ae565b820191906000526020600020905b81548152906001019060200180831161139157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90613fbe565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114a7611f50565b73ffffffffffffffffffffffffffffffffffffffff166114c56115cf565b73ffffffffffffffffffffffffffffffffffffffff161461151b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151290613c58565b60405180910390fd5b6115256000612916565b565b61152f611f50565b73ffffffffffffffffffffffffffffffffffffffff1661154d6115cf565b73ffffffffffffffffffffffffffffffffffffffff16146115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a90613c58565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611601611f50565b73ffffffffffffffffffffffffffffffffffffffff1661161f6115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90613c58565b60405180910390fd5b80600a8190555050565b6116876132b2565b6116908261277c565b9050919050565b6060600280546116a690613a24565b80601f01602080910402602001604051908101604052809291908181526020018280546116d290613a24565b801561171f5780601f106116f45761010080835404028352916020019161171f565b820191906000526020600020905b81548152906001019060200180831161170257829003601f168201915b5050505050905090565b600a5481565b6000600a5490506001600d54611745919061400d565b8261174e610c8b565b611758919061400d565b101561176357600090505b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c8906140af565b60405180910390fd5b80826117dd91906140cf565b341461181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590614175565b60405180910390fd5b6001600e5461182d919061400d565b82611836610c8b565b611840919061400d565b10611880576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611877906141e1565b60405180910390fd5b601060009054906101000a900460ff166118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c69061424d565b60405180910390fd5b600c54826118dc33611caf565b6118e6919061400d565b1115611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e906142b9565b60405180910390fd5b6001600b54611936919061400d565b8210611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e90614325565b60405180910390fd5b61198133836129dc565b5050565b61198d611f50565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f290614391565b60405180910390fd5b8060066000611a08611f50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ab5611f50565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611afa91906133bd565b60405180910390a35050565b611b1184848461200a565b611b1d848484846129fa565b611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390614423565b60405180910390fd5b50505050565b611b6a611f50565b73ffffffffffffffffffffffffffffffffffffffff16611b886115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd590613c58565b60405180910390fd5b80600b8190555050565b6060611bf382611f43565b611c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c29906144b5565b60405180910390fd5b6000611c3c612b91565b9050600081511415611c5d5760405180602001604052806000815250611c88565b80611c6784612c23565b604051602001611c78929190614511565b6040516020818303038152906040525b915050919050565b601060009054906101000a900460ff1681565b600e5481565b600f5481565b6000611cba82612d84565b9050919050565b611cc9611f50565b73ffffffffffffffffffffffffffffffffffffffff16611ce76115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3490613c58565b60405180910390fd5b80600c8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611de3611f50565b73ffffffffffffffffffffffffffffffffffffffff16611e016115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90613c58565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebe906145a7565b60405180910390fd5b611ed081612916565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006120158261277c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661203c611f50565b73ffffffffffffffffffffffffffffffffffffffff1614806120985750612061611f50565b73ffffffffffffffffffffffffffffffffffffffff1661208084610aed565b73ffffffffffffffffffffffffffffffffffffffff16145b806120b457506120b382600001516120ae611f50565b611d47565b5b9050806120f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ed90614639565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f906146cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cf9061475d565b60405180910390fd5b6121e58585856001612e6d565b6121f56000848460000151611f58565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124da5761243981611f43565b156124d95782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125438585856001612e73565b5050505050565b600081141561258e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612585906147c9565b60405180910390fd5b6000805414156125d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ca90614835565b60405180910390fd5b6000600f549050600054811061261e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612615906148a1565b60405180910390fd5b6000600183830103905060005460018201111561263e5760016000540390505b60008290505b81811161276c57600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561275f5760006126c18261277c565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b8080600101915050612644565b5060018101600f81905550505050565b6127846132b2565b61278d82611f43565b6127cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c390614933565b60405180910390fd5b60008290505b600081106128d5576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128c6578092505050612911565b508080600190039150506127d2565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612908906149c5565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129f6828260405180602001604052806000815250612e79565b5050565b6000612a1b8473ffffffffffffffffffffffffffffffffffffffff16612e8b565b15612b84578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a44611f50565b8786866040518563ffffffff1660e01b8152600401612a669493929190614a3a565b602060405180830381600087803b158015612a8057600080fd5b505af1925050508015612ab157506040513d601f19601f82011682018060405250810190612aae9190614a9b565b60015b612b34573d8060008114612ae1576040519150601f19603f3d011682016040523d82523d6000602084013e612ae6565b606091505b50600081511415612b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2390614423565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b89565b600190505b949350505050565b606060098054612ba090613a24565b80601f0160208091040260200160405190810160405280929190818152602001828054612bcc90613a24565b8015612c195780601f10612bee57610100808354040283529160200191612c19565b820191906000526020600020905b815481529060010190602001808311612bfc57829003601f168201915b5050505050905090565b60606000821415612c6b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d7f565b600082905060005b60008214612c9d578080612c8690614ac8565b915050600a82612c969190614b40565b9150612c73565b60008167ffffffffffffffff811115612cb957612cb8613807565b5b6040519080825280601f01601f191660200182016040528015612ceb5781602001600182028036833780820191505090505b5090505b60008514612d7857600182612d049190614b71565b9150600a85612d139190614ba5565b6030612d1f919061400d565b60f81b818381518110612d3557612d34614bd6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d719190614b40565b9450612cef565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dec90614c77565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612e868383836001612eae565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1b90614d09565b60405180910390fd5b6000841415612f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5f90614d9b565b60405180910390fd5b612f756000868387612e6d565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561320f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156131fa576131ba60008884886129fa565b6131f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f090614423565b60405180910390fd5b5b81806001019250508080600101915050613143565b5080600081905550506132256000868387612e73565b5050505050565b82805461323890613a24565b90600052602060002090601f01602090048101928261325a57600085556132a1565b82601f1061327357803560ff19168380011785556132a1565b828001600101855582156132a1579182015b828111156132a0578235825591602001919060010190613285565b5b5090506132ae91906132ec565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156133055760008160009055506001016132ed565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133528161331d565b811461335d57600080fd5b50565b60008135905061336f81613349565b92915050565b60006020828403121561338b5761338a613313565b5b600061339984828501613360565b91505092915050565b60008115159050919050565b6133b7816133a2565b82525050565b60006020820190506133d260008301846133ae565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134125780820151818401526020810190506133f7565b83811115613421576000848401525b50505050565b6000601f19601f8301169050919050565b6000613443826133d8565b61344d81856133e3565b935061345d8185602086016133f4565b61346681613427565b840191505092915050565b6000602082019050818103600083015261348b8184613438565b905092915050565b6000819050919050565b6134a681613493565b81146134b157600080fd5b50565b6000813590506134c38161349d565b92915050565b6000602082840312156134df576134de613313565b5b60006134ed848285016134b4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613521826134f6565b9050919050565b61353181613516565b82525050565b600060208201905061354c6000830184613528565b92915050565b61355b81613516565b811461356657600080fd5b50565b60008135905061357881613552565b92915050565b6000806040838503121561359557613594613313565b5b60006135a385828601613569565b92505060206135b4858286016134b4565b9150509250929050565b6135c781613493565b82525050565b60006020820190506135e260008301846135be565b92915050565b60008060006060848603121561360157613600613313565b5b600061360f86828701613569565b935050602061362086828701613569565b9250506040613631868287016134b4565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126136605761365f61363b565b5b8235905067ffffffffffffffff81111561367d5761367c613640565b5b60208301915083600182028301111561369957613698613645565b5b9250929050565b600080602083850312156136b7576136b6613313565b5b600083013567ffffffffffffffff8111156136d5576136d4613318565b5b6136e18582860161364a565b92509250509250929050565b60006020828403121561370357613702613313565b5b600061371184828501613569565b91505092915050565b61372381613516565b82525050565b600067ffffffffffffffff82169050919050565b61374681613729565b82525050565b604082016000820151613762600085018261371a565b506020820151613775602085018261373d565b50505050565b6000604082019050613790600083018461374c565b92915050565b61379f816133a2565b81146137aa57600080fd5b50565b6000813590506137bc81613796565b92915050565b600080604083850312156137d9576137d8613313565b5b60006137e785828601613569565b92505060206137f8858286016137ad565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61383f82613427565b810181811067ffffffffffffffff8211171561385e5761385d613807565b5b80604052505050565b6000613871613309565b905061387d8282613836565b919050565b600067ffffffffffffffff82111561389d5761389c613807565b5b6138a682613427565b9050602081019050919050565b82818337600083830152505050565b60006138d56138d084613882565b613867565b9050828152602081018484840111156138f1576138f0613802565b5b6138fc8482856138b3565b509392505050565b600082601f8301126139195761391861363b565b5b81356139298482602086016138c2565b91505092915050565b6000806000806080858703121561394c5761394b613313565b5b600061395a87828801613569565b945050602061396b87828801613569565b935050604061397c878288016134b4565b925050606085013567ffffffffffffffff81111561399d5761399c613318565b5b6139a987828801613904565b91505092959194509250565b600080604083850312156139cc576139cb613313565b5b60006139da85828601613569565b92505060206139eb85828601613569565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a3c57607f821691505b60208210811415613a5057613a4f6139f5565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613ab2602d836133e3565b9150613abd82613a56565b604082019050919050565b60006020820190508181036000830152613ae181613aa5565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b446022836133e3565b9150613b4f82613ae8565b604082019050919050565b60006020820190508181036000830152613b7381613b37565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613bd66039836133e3565b9150613be182613b7a565b604082019050919050565b60006020820190508181036000830152613c0581613bc9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c426020836133e3565b9150613c4d82613c0c565b602082019050919050565b60006020820190508181036000830152613c7181613c35565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613cae601f836133e3565b9150613cb982613c78565b602082019050919050565b60006020820190508181036000830152613cdd81613ca1565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d406022836133e3565b9150613d4b82613ce4565b604082019050919050565b60006020820190508181036000830152613d6f81613d33565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613dd2602e836133e3565b9150613ddd82613d76565b604082019050919050565b60006020820190508181036000830152613e0181613dc5565b9050919050565b600081905092915050565b50565b6000613e23600083613e08565b9150613e2e82613e13565b600082019050919050565b6000613e4482613e16565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613e846010836133e3565b9150613e8f82613e4e565b602082019050919050565b60006020820190508181036000830152613eb381613e77565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613f166023836133e3565b9150613f2182613eba565b604082019050919050565b60006020820190508181036000830152613f4581613f09565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613fa8602b836133e3565b9150613fb382613f4c565b604082019050919050565b60006020820190508181036000830152613fd781613f9b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061401882613493565b915061402383613493565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561405857614057613fde565b5b828201905092915050565b7f426520796f757273656c662c20686f6e65792e00000000000000000000000000600082015250565b60006140996013836133e3565b91506140a482614063565b602082019050919050565b600060208201905081810360008301526140c88161408c565b9050919050565b60006140da82613493565b91506140e583613493565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561411e5761411d613fde565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b600061415f601d836133e3565b915061416a82614129565b602082019050919050565b6000602082019050818103600083015261418e81614152565b9050919050565b7f4e6f206d6f7265204170657320617661696c61626c6500000000000000000000600082015250565b60006141cb6016836133e3565b91506141d682614195565b602082019050919050565b600060208201905081810360008301526141fa816141be565b9050919050565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b60006142376018836133e3565b915061424282614201565b602082019050919050565b600060208201905081810360008301526142668161422a565b9050919050565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b60006142a36014836133e3565b91506142ae8261426d565b602082019050919050565b600060208201905081810360008301526142d281614296565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b600061430f6013836133e3565b915061431a826142d9565b602082019050919050565b6000602082019050818103600083015261433e81614302565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061437b601a836133e3565b915061438682614345565b602082019050919050565b600060208201905081810360008301526143aa8161436e565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061440d6033836133e3565b9150614418826143b1565b604082019050919050565b6000602082019050818103600083015261443c81614400565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061449f602f836133e3565b91506144aa82614443565b604082019050919050565b600060208201905081810360008301526144ce81614492565b9050919050565b600081905092915050565b60006144eb826133d8565b6144f581856144d5565b93506145058185602086016133f4565b80840191505092915050565b600061451d82856144e0565b915061452982846144e0565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145916026836133e3565b915061459c82614535565b604082019050919050565b600060208201905081810360008301526145c081614584565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006146236032836133e3565b915061462e826145c7565b604082019050919050565b6000602082019050818103600083015261465281614616565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006146b56026836133e3565b91506146c082614659565b604082019050919050565b600060208201905081810360008301526146e4816146a8565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006147476025836133e3565b9150614752826146eb565b604082019050919050565b600060208201905081810360008301526147768161473a565b9050919050565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b60006147b36018836133e3565b91506147be8261477d565b602082019050919050565b600060208201905081810360008301526147e2816147a6565b9050919050565b7f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000600082015250565b600061481f6014836133e3565b915061482a826147e9565b602082019050919050565b6000602082019050818103600083015261484e81614812565b9050919050565b7f616c6c206f776e657273686970732068617665206265656e2073657400000000600082015250565b600061488b601c836133e3565b915061489682614855565b602082019050919050565b600060208201905081810360008301526148ba8161487e565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061491d602a836133e3565b9150614928826148c1565b604082019050919050565b6000602082019050818103600083015261494c81614910565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006149af602f836133e3565b91506149ba82614953565b604082019050919050565b600060208201905081810360008301526149de816149a2565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614a0c826149e5565b614a1681856149f0565b9350614a268185602086016133f4565b614a2f81613427565b840191505092915050565b6000608082019050614a4f6000830187613528565b614a5c6020830186613528565b614a6960408301856135be565b8181036060830152614a7b8184614a01565b905095945050505050565b600081519050614a9581613349565b92915050565b600060208284031215614ab157614ab0613313565b5b6000614abf84828501614a86565b91505092915050565b6000614ad382613493565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b0657614b05613fde565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b4b82613493565b9150614b5683613493565b925082614b6657614b65614b11565b5b828204905092915050565b6000614b7c82613493565b9150614b8783613493565b925082821015614b9a57614b99613fde565b5b828203905092915050565b6000614bb082613493565b9150614bbb83613493565b925082614bcb57614bca614b11565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b6000614c616031836133e3565b9150614c6c82614c05565b604082019050919050565b60006020820190508181036000830152614c9081614c54565b9050919050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614cf36021836133e3565b9150614cfe82614c97565b604082019050919050565b60006020820190508181036000830152614d2281614ce6565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614d856028836133e3565b9150614d9082614d29565b604082019050919050565b60006020820190508181036000830152614db481614d78565b905091905056fea264697066735822122030ee580580918f73428ae3d3e5c6f45a3131770f4a2eed6525290884dd4bde7664736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063715018a61161012e578063c6f6f216116100ab578063dc33e6811161006f578063dc33e6811461081a578063e268e4d314610857578063e985e9c514610880578063f2fde38b146108bd578063f968adbe146108e657610230565b8063c6f6f21614610733578063c87b56dd1461075c578063d123973014610799578063d5abeb01146107c4578063d7224ba0146107ef57610230565b806395d89b41116100f257806395d89b411461066f578063a035b1fe1461069a578063a0712d68146106c5578063a22cb465146106e1578063b88d4fde1461070a57610230565b8063715018a6146105b05780637d55094d146105c75780638da5cb5b146105de57806391b7f5ed146106095780639231ab2a1461063257610230565b8063333e44e6116101bc57806355f804b31161018057806355f804b3146104b9578063563aaf11146104e25780636352211e1461050b5780636c0360eb1461054857806370a082311461057357610230565b8063333e44e6146103e65780633ccfd60b1461041157806342842e0e14610428578063453c2310146104515780634f6ccce71461047c57610230565b806318160ddd1161020357806318160ddd14610303578063228025e81461032e57806323b872dd146103575780632d20fb60146103805780632f745c59146103a957610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613375565b610911565b60405161026991906133bd565b60405180910390f35b34801561027e57600080fd5b50610287610a5b565b6040516102949190613471565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906134c9565b610aed565b6040516102d19190613537565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc919061357e565b610b72565b005b34801561030f57600080fd5b50610318610c8b565b60405161032591906135cd565b60405180910390f35b34801561033a57600080fd5b50610355600480360381019061035091906134c9565b610c94565b005b34801561036357600080fd5b5061037e600480360381019061037991906135e8565b610d1a565b005b34801561038c57600080fd5b506103a760048036038101906103a291906134c9565b610d2a565b005b3480156103b557600080fd5b506103d060048036038101906103cb919061357e565b610e08565b6040516103dd91906135cd565b60405180910390f35b3480156103f257600080fd5b506103fb610ffa565b60405161040891906135cd565b60405180910390f35b34801561041d57600080fd5b50610426611000565b005b34801561043457600080fd5b5061044f600480360381019061044a91906135e8565b611181565b005b34801561045d57600080fd5b506104666111a1565b60405161047391906135cd565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e91906134c9565b6111a7565b6040516104b091906135cd565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db91906136a0565b6111fa565b005b3480156104ee57600080fd5b50610509600480360381019061050491906134c9565b61128c565b005b34801561051757600080fd5b50610532600480360381019061052d91906134c9565b611312565b60405161053f9190613537565b60405180910390f35b34801561055457600080fd5b5061055d611328565b60405161056a9190613471565b60405180910390f35b34801561057f57600080fd5b5061059a600480360381019061059591906136ed565b6113b6565b6040516105a791906135cd565b60405180910390f35b3480156105bc57600080fd5b506105c561149f565b005b3480156105d357600080fd5b506105dc611527565b005b3480156105ea57600080fd5b506105f36115cf565b6040516106009190613537565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b91906134c9565b6115f9565b005b34801561063e57600080fd5b50610659600480360381019061065491906134c9565b61167f565b604051610666919061377b565b60405180910390f35b34801561067b57600080fd5b50610684611697565b6040516106919190613471565b60405180910390f35b3480156106a657600080fd5b506106af611729565b6040516106bc91906135cd565b60405180910390f35b6106df60048036038101906106da91906134c9565b61172f565b005b3480156106ed57600080fd5b50610708600480360381019061070391906137c2565b611985565b005b34801561071657600080fd5b50610731600480360381019061072c9190613932565b611b06565b005b34801561073f57600080fd5b5061075a600480360381019061075591906134c9565b611b62565b005b34801561076857600080fd5b50610783600480360381019061077e91906134c9565b611be8565b6040516107909190613471565b60405180910390f35b3480156107a557600080fd5b506107ae611c90565b6040516107bb91906133bd565b60405180910390f35b3480156107d057600080fd5b506107d9611ca3565b6040516107e691906135cd565b60405180910390f35b3480156107fb57600080fd5b50610804611ca9565b60405161081191906135cd565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c91906136ed565b611caf565b60405161084e91906135cd565b60405180910390f35b34801561086357600080fd5b5061087e600480360381019061087991906134c9565b611cc1565b005b34801561088c57600080fd5b506108a760048036038101906108a291906139b5565b611d47565b6040516108b491906133bd565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df91906136ed565b611ddb565b005b3480156108f257600080fd5b506108fb611ed3565b60405161090891906135cd565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109dc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a4457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a545750610a5382611ed9565b5b9050919050565b606060018054610a6a90613a24565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9690613a24565b8015610ae35780601f10610ab857610100808354040283529160200191610ae3565b820191906000526020600020905b815481529060010190602001808311610ac657829003601f168201915b5050505050905090565b6000610af882611f43565b610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e90613ac8565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b7d82611312565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590613b5a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c0d611f50565b73ffffffffffffffffffffffffffffffffffffffff161480610c3c5750610c3b81610c36611f50565b611d47565b5b610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7290613bec565b60405180910390fd5b610c86838383611f58565b505050565b60008054905090565b610c9c611f50565b73ffffffffffffffffffffffffffffffffffffffff16610cba6115cf565b73ffffffffffffffffffffffffffffffffffffffff1614610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0790613c58565b60405180910390fd5b80600e8190555050565b610d2583838361200a565b505050565b610d32611f50565b73ffffffffffffffffffffffffffffffffffffffff16610d506115cf565b73ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d90613c58565b60405180910390fd5b60026008541415610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de390613cc4565b60405180910390fd5b6002600881905550610dfd8161254a565b600160088190555050565b6000610e13836113b6565b8210610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b90613d56565b60405180910390fd5b6000610e5e610c8b565b905060008060005b83811015610fb8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f5857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610faa5786841415610fa1578195505050505050610ff4565b83806001019450505b508080600101915050610e66565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb90613de8565b60405180910390fd5b92915050565b600d5481565b611008611f50565b73ffffffffffffffffffffffffffffffffffffffff166110266115cf565b73ffffffffffffffffffffffffffffffffffffffff161461107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390613c58565b60405180910390fd5b600260085414156110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990613cc4565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516110f090613e39565b60006040518083038185875af1925050503d806000811461112d576040519150601f19603f3d011682016040523d82523d6000602084013e611132565b606091505b5050905080611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90613e9a565b60405180910390fd5b506001600881905550565b61119c83838360405180602001604052806000815250611b06565b505050565b600c5481565b60006111b1610c8b565b82106111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e990613f2c565b60405180910390fd5b819050919050565b611202611f50565b73ffffffffffffffffffffffffffffffffffffffff166112206115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d90613c58565b60405180910390fd5b81816009919061128792919061322c565b505050565b611294611f50565b73ffffffffffffffffffffffffffffffffffffffff166112b26115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff90613c58565b60405180910390fd5b80600d8190555050565b600061131d8261277c565b600001519050919050565b6009805461133590613a24565b80601f016020809104026020016040519081016040528092919081815260200182805461136190613a24565b80156113ae5780601f10611383576101008083540402835291602001916113ae565b820191906000526020600020905b81548152906001019060200180831161139157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90613fbe565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114a7611f50565b73ffffffffffffffffffffffffffffffffffffffff166114c56115cf565b73ffffffffffffffffffffffffffffffffffffffff161461151b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151290613c58565b60405180910390fd5b6115256000612916565b565b61152f611f50565b73ffffffffffffffffffffffffffffffffffffffff1661154d6115cf565b73ffffffffffffffffffffffffffffffffffffffff16146115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a90613c58565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611601611f50565b73ffffffffffffffffffffffffffffffffffffffff1661161f6115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90613c58565b60405180910390fd5b80600a8190555050565b6116876132b2565b6116908261277c565b9050919050565b6060600280546116a690613a24565b80601f01602080910402602001604051908101604052809291908181526020018280546116d290613a24565b801561171f5780601f106116f45761010080835404028352916020019161171f565b820191906000526020600020905b81548152906001019060200180831161170257829003601f168201915b5050505050905090565b600a5481565b6000600a5490506001600d54611745919061400d565b8261174e610c8b565b611758919061400d565b101561176357600090505b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c8906140af565b60405180910390fd5b80826117dd91906140cf565b341461181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590614175565b60405180910390fd5b6001600e5461182d919061400d565b82611836610c8b565b611840919061400d565b10611880576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611877906141e1565b60405180910390fd5b601060009054906101000a900460ff166118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c69061424d565b60405180910390fd5b600c54826118dc33611caf565b6118e6919061400d565b1115611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e906142b9565b60405180910390fd5b6001600b54611936919061400d565b8210611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e90614325565b60405180910390fd5b61198133836129dc565b5050565b61198d611f50565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f290614391565b60405180910390fd5b8060066000611a08611f50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ab5611f50565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611afa91906133bd565b60405180910390a35050565b611b1184848461200a565b611b1d848484846129fa565b611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390614423565b60405180910390fd5b50505050565b611b6a611f50565b73ffffffffffffffffffffffffffffffffffffffff16611b886115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd590613c58565b60405180910390fd5b80600b8190555050565b6060611bf382611f43565b611c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c29906144b5565b60405180910390fd5b6000611c3c612b91565b9050600081511415611c5d5760405180602001604052806000815250611c88565b80611c6784612c23565b604051602001611c78929190614511565b6040516020818303038152906040525b915050919050565b601060009054906101000a900460ff1681565b600e5481565b600f5481565b6000611cba82612d84565b9050919050565b611cc9611f50565b73ffffffffffffffffffffffffffffffffffffffff16611ce76115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3490613c58565b60405180910390fd5b80600c8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611de3611f50565b73ffffffffffffffffffffffffffffffffffffffff16611e016115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90613c58565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebe906145a7565b60405180910390fd5b611ed081612916565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006120158261277c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661203c611f50565b73ffffffffffffffffffffffffffffffffffffffff1614806120985750612061611f50565b73ffffffffffffffffffffffffffffffffffffffff1661208084610aed565b73ffffffffffffffffffffffffffffffffffffffff16145b806120b457506120b382600001516120ae611f50565b611d47565b5b9050806120f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ed90614639565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f906146cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cf9061475d565b60405180910390fd5b6121e58585856001612e6d565b6121f56000848460000151611f58565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124da5761243981611f43565b156124d95782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125438585856001612e73565b5050505050565b600081141561258e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612585906147c9565b60405180910390fd5b6000805414156125d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ca90614835565b60405180910390fd5b6000600f549050600054811061261e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612615906148a1565b60405180910390fd5b6000600183830103905060005460018201111561263e5760016000540390505b60008290505b81811161276c57600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561275f5760006126c18261277c565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b8080600101915050612644565b5060018101600f81905550505050565b6127846132b2565b61278d82611f43565b6127cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c390614933565b60405180910390fd5b60008290505b600081106128d5576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128c6578092505050612911565b508080600190039150506127d2565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612908906149c5565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129f6828260405180602001604052806000815250612e79565b5050565b6000612a1b8473ffffffffffffffffffffffffffffffffffffffff16612e8b565b15612b84578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a44611f50565b8786866040518563ffffffff1660e01b8152600401612a669493929190614a3a565b602060405180830381600087803b158015612a8057600080fd5b505af1925050508015612ab157506040513d601f19601f82011682018060405250810190612aae9190614a9b565b60015b612b34573d8060008114612ae1576040519150601f19603f3d011682016040523d82523d6000602084013e612ae6565b606091505b50600081511415612b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2390614423565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b89565b600190505b949350505050565b606060098054612ba090613a24565b80601f0160208091040260200160405190810160405280929190818152602001828054612bcc90613a24565b8015612c195780601f10612bee57610100808354040283529160200191612c19565b820191906000526020600020905b815481529060010190602001808311612bfc57829003601f168201915b5050505050905090565b60606000821415612c6b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d7f565b600082905060005b60008214612c9d578080612c8690614ac8565b915050600a82612c969190614b40565b9150612c73565b60008167ffffffffffffffff811115612cb957612cb8613807565b5b6040519080825280601f01601f191660200182016040528015612ceb5781602001600182028036833780820191505090505b5090505b60008514612d7857600182612d049190614b71565b9150600a85612d139190614ba5565b6030612d1f919061400d565b60f81b818381518110612d3557612d34614bd6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d719190614b40565b9450612cef565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dec90614c77565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612e868383836001612eae565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1b90614d09565b60405180910390fd5b6000841415612f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5f90614d9b565b60405180910390fd5b612f756000868387612e6d565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561320f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156131fa576131ba60008884886129fa565b6131f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f090614423565b60405180910390fd5b5b81806001019250508080600101915050613143565b5080600081905550506132256000868387612e73565b5050505050565b82805461323890613a24565b90600052602060002090601f01602090048101928261325a57600085556132a1565b82601f1061327357803560ff19168380011785556132a1565b828001600101855582156132a1579182015b828111156132a0578235825591602001919060010190613285565b5b5090506132ae91906132ec565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156133055760008160009055506001016132ed565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133528161331d565b811461335d57600080fd5b50565b60008135905061336f81613349565b92915050565b60006020828403121561338b5761338a613313565b5b600061339984828501613360565b91505092915050565b60008115159050919050565b6133b7816133a2565b82525050565b60006020820190506133d260008301846133ae565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134125780820151818401526020810190506133f7565b83811115613421576000848401525b50505050565b6000601f19601f8301169050919050565b6000613443826133d8565b61344d81856133e3565b935061345d8185602086016133f4565b61346681613427565b840191505092915050565b6000602082019050818103600083015261348b8184613438565b905092915050565b6000819050919050565b6134a681613493565b81146134b157600080fd5b50565b6000813590506134c38161349d565b92915050565b6000602082840312156134df576134de613313565b5b60006134ed848285016134b4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613521826134f6565b9050919050565b61353181613516565b82525050565b600060208201905061354c6000830184613528565b92915050565b61355b81613516565b811461356657600080fd5b50565b60008135905061357881613552565b92915050565b6000806040838503121561359557613594613313565b5b60006135a385828601613569565b92505060206135b4858286016134b4565b9150509250929050565b6135c781613493565b82525050565b60006020820190506135e260008301846135be565b92915050565b60008060006060848603121561360157613600613313565b5b600061360f86828701613569565b935050602061362086828701613569565b9250506040613631868287016134b4565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126136605761365f61363b565b5b8235905067ffffffffffffffff81111561367d5761367c613640565b5b60208301915083600182028301111561369957613698613645565b5b9250929050565b600080602083850312156136b7576136b6613313565b5b600083013567ffffffffffffffff8111156136d5576136d4613318565b5b6136e18582860161364a565b92509250509250929050565b60006020828403121561370357613702613313565b5b600061371184828501613569565b91505092915050565b61372381613516565b82525050565b600067ffffffffffffffff82169050919050565b61374681613729565b82525050565b604082016000820151613762600085018261371a565b506020820151613775602085018261373d565b50505050565b6000604082019050613790600083018461374c565b92915050565b61379f816133a2565b81146137aa57600080fd5b50565b6000813590506137bc81613796565b92915050565b600080604083850312156137d9576137d8613313565b5b60006137e785828601613569565b92505060206137f8858286016137ad565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61383f82613427565b810181811067ffffffffffffffff8211171561385e5761385d613807565b5b80604052505050565b6000613871613309565b905061387d8282613836565b919050565b600067ffffffffffffffff82111561389d5761389c613807565b5b6138a682613427565b9050602081019050919050565b82818337600083830152505050565b60006138d56138d084613882565b613867565b9050828152602081018484840111156138f1576138f0613802565b5b6138fc8482856138b3565b509392505050565b600082601f8301126139195761391861363b565b5b81356139298482602086016138c2565b91505092915050565b6000806000806080858703121561394c5761394b613313565b5b600061395a87828801613569565b945050602061396b87828801613569565b935050604061397c878288016134b4565b925050606085013567ffffffffffffffff81111561399d5761399c613318565b5b6139a987828801613904565b91505092959194509250565b600080604083850312156139cc576139cb613313565b5b60006139da85828601613569565b92505060206139eb85828601613569565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a3c57607f821691505b60208210811415613a5057613a4f6139f5565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613ab2602d836133e3565b9150613abd82613a56565b604082019050919050565b60006020820190508181036000830152613ae181613aa5565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b446022836133e3565b9150613b4f82613ae8565b604082019050919050565b60006020820190508181036000830152613b7381613b37565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613bd66039836133e3565b9150613be182613b7a565b604082019050919050565b60006020820190508181036000830152613c0581613bc9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c426020836133e3565b9150613c4d82613c0c565b602082019050919050565b60006020820190508181036000830152613c7181613c35565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613cae601f836133e3565b9150613cb982613c78565b602082019050919050565b60006020820190508181036000830152613cdd81613ca1565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d406022836133e3565b9150613d4b82613ce4565b604082019050919050565b60006020820190508181036000830152613d6f81613d33565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613dd2602e836133e3565b9150613ddd82613d76565b604082019050919050565b60006020820190508181036000830152613e0181613dc5565b9050919050565b600081905092915050565b50565b6000613e23600083613e08565b9150613e2e82613e13565b600082019050919050565b6000613e4482613e16565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613e846010836133e3565b9150613e8f82613e4e565b602082019050919050565b60006020820190508181036000830152613eb381613e77565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613f166023836133e3565b9150613f2182613eba565b604082019050919050565b60006020820190508181036000830152613f4581613f09565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613fa8602b836133e3565b9150613fb382613f4c565b604082019050919050565b60006020820190508181036000830152613fd781613f9b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061401882613493565b915061402383613493565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561405857614057613fde565b5b828201905092915050565b7f426520796f757273656c662c20686f6e65792e00000000000000000000000000600082015250565b60006140996013836133e3565b91506140a482614063565b602082019050919050565b600060208201905081810360008301526140c88161408c565b9050919050565b60006140da82613493565b91506140e583613493565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561411e5761411d613fde565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b600061415f601d836133e3565b915061416a82614129565b602082019050919050565b6000602082019050818103600083015261418e81614152565b9050919050565b7f4e6f206d6f7265204170657320617661696c61626c6500000000000000000000600082015250565b60006141cb6016836133e3565b91506141d682614195565b602082019050919050565b600060208201905081810360008301526141fa816141be565b9050919050565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b60006142376018836133e3565b915061424282614201565b602082019050919050565b600060208201905081810360008301526142668161422a565b9050919050565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b60006142a36014836133e3565b91506142ae8261426d565b602082019050919050565b600060208201905081810360008301526142d281614296565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b600061430f6013836133e3565b915061431a826142d9565b602082019050919050565b6000602082019050818103600083015261433e81614302565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061437b601a836133e3565b915061438682614345565b602082019050919050565b600060208201905081810360008301526143aa8161436e565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061440d6033836133e3565b9150614418826143b1565b604082019050919050565b6000602082019050818103600083015261443c81614400565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061449f602f836133e3565b91506144aa82614443565b604082019050919050565b600060208201905081810360008301526144ce81614492565b9050919050565b600081905092915050565b60006144eb826133d8565b6144f581856144d5565b93506145058185602086016133f4565b80840191505092915050565b600061451d82856144e0565b915061452982846144e0565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145916026836133e3565b915061459c82614535565b604082019050919050565b600060208201905081810360008301526145c081614584565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006146236032836133e3565b915061462e826145c7565b604082019050919050565b6000602082019050818103600083015261465281614616565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006146b56026836133e3565b91506146c082614659565b604082019050919050565b600060208201905081810360008301526146e4816146a8565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006147476025836133e3565b9150614752826146eb565b604082019050919050565b600060208201905081810360008301526147768161473a565b9050919050565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b60006147b36018836133e3565b91506147be8261477d565b602082019050919050565b600060208201905081810360008301526147e2816147a6565b9050919050565b7f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000600082015250565b600061481f6014836133e3565b915061482a826147e9565b602082019050919050565b6000602082019050818103600083015261484e81614812565b9050919050565b7f616c6c206f776e657273686970732068617665206265656e2073657400000000600082015250565b600061488b601c836133e3565b915061489682614855565b602082019050919050565b600060208201905081810360008301526148ba8161487e565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061491d602a836133e3565b9150614928826148c1565b604082019050919050565b6000602082019050818103600083015261494c81614910565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006149af602f836133e3565b91506149ba82614953565b604082019050919050565b600060208201905081810360008301526149de816149a2565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614a0c826149e5565b614a1681856149f0565b9350614a268185602086016133f4565b614a2f81613427565b840191505092915050565b6000608082019050614a4f6000830187613528565b614a5c6020830186613528565b614a6960408301856135be565b8181036060830152614a7b8184614a01565b905095945050505050565b600081519050614a9581613349565b92915050565b600060208284031215614ab157614ab0613313565b5b6000614abf84828501614a86565b91505092915050565b6000614ad382613493565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b0657614b05613fde565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b4b82613493565b9150614b5683613493565b925082614b6657614b65614b11565b5b828204905092915050565b6000614b7c82613493565b9150614b8783613493565b925082821015614b9a57614b99613fde565b5b828203905092915050565b6000614bb082613493565b9150614bbb83613493565b925082614bcb57614bca614b11565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b6000614c616031836133e3565b9150614c6c82614c05565b604082019050919050565b60006020820190508181036000830152614c9081614c54565b9050919050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614cf36021836133e3565b9150614cfe82614c97565b604082019050919050565b60006020820190508181036000830152614d2281614ce6565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614d856028836133e3565b9150614d9082614d29565b604082019050919050565b60006020820190508181036000830152614db481614d78565b905091905056fea264697066735822122030ee580580918f73428ae3d3e5c6f45a3131770f4a2eed6525290884dd4bde7664736f6c63430008090033

Deployed Bytecode Sourcemap

50232:3689:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37092:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38978:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40540:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40061:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35349:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52030:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41416:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52424:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36013:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50483:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52242:176;;;;;;;;;;;;;:::i;:::-;;41657:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50435:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35526:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51520:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51710:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38787:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50296:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37528:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10563:103;;;;;;;;;;;;;:::i;:::-;;51316:85;;;;;;;;;;;;;:::i;:::-;;9912:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51622:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52548:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39147:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50329:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50721:589;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40826:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41913:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51814:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39322:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50633:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50533:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50583;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51407:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51914:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41185:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10821:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50387:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37092:372;37194:4;37246:25;37231:40;;;:11;:40;;;;:105;;;;37303:33;37288:48;;;:11;:48;;;;37231:105;:172;;;;37368:35;37353:50;;;:11;:50;;;;37231:172;:225;;;;37420:36;37444:11;37420:23;:36::i;:::-;37231:225;37211:245;;37092:372;;;:::o;38978:100::-;39032:13;39065:5;39058:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38978:100;:::o;40540:214::-;40608:7;40636:16;40644:7;40636;:16::i;:::-;40628:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;40722:15;:24;40738:7;40722:24;;;;;;;;;;;;;;;;;;;;;40715:31;;40540:214;;;:::o;40061:413::-;40134:13;40150:24;40166:7;40150:15;:24::i;:::-;40134:40;;40199:5;40193:11;;:2;:11;;;;40185:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40294:5;40278:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;40303:37;40320:5;40327:12;:10;:12::i;:::-;40303:16;:37::i;:::-;40278:62;40256:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40438:28;40447:2;40451:7;40460:5;40438:8;:28::i;:::-;40123:351;40061:413;;:::o;35349:100::-;35402:7;35429:12;;35422:19;;35349:100;:::o;52030:98::-;10143:12;:10;:12::i;:::-;10132:23;;:7;:5;:7::i;:::-;:23;;;10124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52112:10:::1;52100:9;:22;;;;52030:98:::0;:::o;41416:170::-;41550:28;41560:4;41566:2;41570:7;41550:9;:28::i;:::-;41416:170;;;:::o;52424:118::-;10143:12;:10;:12::i;:::-;10132:23;;:7;:5;:7::i;:::-;:23;;;10124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4886:1:::1;5484:7;;:19;;5476:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4886:1;5617:7;:18;;;;52508:28:::2;52527:8;52508:18;:28::i;:::-;4842:1:::1;5796:7;:22;;;;52424:118:::0;:::o;36013:1007::-;36102:7;36138:16;36148:5;36138:9;:16::i;:::-;36130:5;:24;36122:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36204:22;36229:13;:11;:13::i;:::-;36204:38;;36253:19;36283:25;36472:9;36467:466;36487:14;36483:1;:18;36467:466;;;36527:31;36561:11;:14;36573:1;36561:14;;;;;;;;;;;36527:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36624:1;36598:28;;:9;:14;;;:28;;;36594:111;;36671:9;:14;;;36651:34;;36594:111;36748:5;36727:26;;:17;:26;;;36723:195;;;36797:5;36782:11;:20;36778:85;;;36838:1;36831:8;;;;;;;;;36778:85;36885:13;;;;;;;36723:195;36508:425;36503:3;;;;;;;36467:466;;;;36956:56;;;;;;;;;;:::i;:::-;;;;;;;;36013:1007;;;;;:::o;50483:45::-;;;;:::o;52242:176::-;10143:12;:10;:12::i;:::-;10132:23;;:7;:5;:7::i;:::-;:23;;;10124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4886:1:::1;5484:7;;:19;;5476:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4886:1;5617:7;:18;;;;52302:12:::2;52320:10;:15;;52343:21;52320:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52301:68;;;52384:7;52376:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;52294:124;4842:1:::1;5796:7;:22;;;;52242:176::o:0;41657:185::-;41795:39;41812:4;41818:2;41822:7;41795:39;;;;;;;;;;;;:16;:39::i;:::-;41657:185;;;:::o;50435:43::-;;;;:::o;35526:187::-;35593:7;35629:13;:11;:13::i;:::-;35621:5;:21;35613:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;35700:5;35693:12;;35526:187;;;:::o;51520:96::-;10143:12;:10;:12::i;:::-;10132:23;;:7;:5;:7::i;:::-;:23;;;10124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51602:8:::1;;51592:7;:18;;;;;;;:::i;:::-;;51520:96:::0;;:::o;51710:98::-;10143:12;:10;:12::i;:::-;10132:23;;:7;:5;:7::i;:::-;:23;;;10124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51792:10:::1;51780:9;:22;;;;51710:98:::0;:::o;38787:124::-;38851:7;38878:20;38890:7;38878:11;:20::i;:::-;:25;;;38871:32;;38787:124;;;:::o;50296:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37528:221::-;37592:7;37637:1;37620:19;;:5;:19;;;;37612:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;37713:12;:19;37726:5;37713:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;37705:36;;37698:43;;37528:221;;;:::o;10563:103::-;10143:12;:10;:12::i;:::-;10132:23;;:7;:5;:7::i;:::-;:23;;;10124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10628:30:::1;10655:1;10628:18;:30::i;:::-;10563:103::o:0;51316:85::-;10143:12;:10;:12::i;:::-;10132:23;;:7;:5;:7::i;:::-;:23;;;10124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51384:11:::1;;;;;;;;;;;51383:12;51369:11;;:26;;;;;;;;;;;;;;;;;;51316:85::o:0;9912:87::-;9958:7;9985:6;;;;;;;;;;;9978:13;;9912:87;:::o;51622:82::-;10143:12;:10;:12::i;:::-;10132:23;;:7;:5;:7::i;:::-;:23;;;10124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51692:6:::1;51684:5;:14;;;;51622:82:::0;:::o;52548:132::-;52614:21;;:::i;:::-;52654:20;52666:7;52654:11;:20::i;:::-;52647:27;;52548:132;;;:::o;39147:104::-;39203:13;39236:7;39229:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39147:104;:::o;50329:53::-;;;;:::o;50721:589::-;50775:9;50787:5;;50775:17;;50836:1;50824:9;;:13;;;;:::i;:::-;50818:3;50802:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;50799:65;;;50855:1;50848:8;;50799:65;50892:9;50878:23;;:10;:23;;;50870:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;50958:4;50952:3;:10;;;;:::i;:::-;50939:9;:23;50931:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;51044:1;51032:9;;:13;;;;:::i;:::-;51026:3;51010:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;51002:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;51086:11;;;;;;;;;;;51078:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;51175:12;;51168:3;51141:24;51154:10;51141:12;:24::i;:::-;:30;;;;:::i;:::-;:46;;51133:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;51244:1;51233:8;;:12;;;;:::i;:::-;51227:3;:18;51218:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;51278:26;51288:10;51300:3;51278:9;:26::i;:::-;50768:542;50721:589;:::o;40826:288::-;40933:12;:10;:12::i;:::-;40921:24;;:8;:24;;;;40913:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41034:8;40989:18;:32;41008:12;:10;:12::i;:::-;40989:32;;;;;;;;;;;;;;;:42;41022:8;40989:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41087:8;41058:48;;41073:12;:10;:12::i;:::-;41058:48;;;41097:8;41058:48;;;;;;:::i;:::-;;;;;;;;40826:288;;:::o;41913:355::-;42072:28;42082:4;42088:2;42092:7;42072:9;:28::i;:::-;42133:48;42156:4;42162:2;42166:7;42175:5;42133:22;:48::i;:::-;42111:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;41913:355;;;;:::o;51814:94::-;10143:12;:10;:12::i;:::-;10132:23;;:7;:5;:7::i;:::-;:23;;;10124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51893:9:::1;51882:8;:20;;;;51814:94:::0;:::o;39322:335::-;39395:13;39429:16;39437:7;39429;:16::i;:::-;39421:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39510:21;39534:10;:8;:10::i;:::-;39510:34;;39587:1;39568:7;39562:21;:26;;:87;;;;;;;;;;;;;;;;;39615:7;39624:18;:7;:16;:18::i;:::-;39598:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39562:87;39555:94;;;39322:335;;;:::o;50633:32::-;;;;;;;;;;;;;:::o;50533:45::-;;;;:::o;50583:::-;;;;:::o;51407:107::-;51465:7;51488:20;51502:5;51488:13;:20::i;:::-;51481:27;;51407:107;;;:::o;51914:110::-;10143:12;:10;:12::i;:::-;10132:23;;:7;:5;:7::i;:::-;:23;;;10124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52005:13:::1;51990:12;:28;;;;51914:110:::0;:::o;41185:164::-;41282:4;41306:18;:25;41325:5;41306:25;;;;;;;;;;;;;;;:35;41332:8;41306:35;;;;;;;;;;;;;;;;;;;;;;;;;41299:42;;41185:164;;;;:::o;10821:201::-;10143:12;:10;:12::i;:::-;10132:23;;:7;:5;:7::i;:::-;:23;;;10124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10930:1:::1;10910:22;;:8;:22;;;;10902:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10986:28;11005:8;10986:18;:28::i;:::-;10821:201:::0;:::o;50387:43::-;;;;:::o;26691:157::-;26776:4;26815:25;26800:40;;;:11;:40;;;;26793:47;;26691:157;;;:::o;42523:111::-;42580:4;42614:12;;42604:7;:22;42597:29;;42523:111;;;:::o;8636:98::-;8689:7;8716:10;8709:17;;8636:98;:::o;47443:196::-;47585:2;47558:15;:24;47574:7;47558:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47623:7;47619:2;47603:28;;47612:5;47603:28;;;;;;;;;;;;47443:196;;;:::o;45323:2002::-;45438:35;45476:20;45488:7;45476:11;:20::i;:::-;45438:58;;45509:22;45551:13;:18;;;45535:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;45610:12;:10;:12::i;:::-;45586:36;;:20;45598:7;45586:11;:20::i;:::-;:36;;;45535:87;:154;;;;45639:50;45656:13;:18;;;45676:12;:10;:12::i;:::-;45639:16;:50::i;:::-;45535:154;45509:181;;45711:17;45703:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45826:4;45804:26;;:13;:18;;;:26;;;45796:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45906:1;45892:16;;:2;:16;;;;45884:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;45963:43;45985:4;45991:2;45995:7;46004:1;45963:21;:43::i;:::-;46071:49;46088:1;46092:7;46101:13;:18;;;46071:8;:49::i;:::-;46446:1;46416:12;:18;46429:4;46416:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46490:1;46462:12;:16;46475:2;46462:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46536:2;46508:11;:20;46520:7;46508:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;46598:15;46553:11;:20;46565:7;46553:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;46866:19;46898:1;46888:7;:11;46866:33;;46959:1;46918:43;;:11;:24;46930:11;46918:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;46914:295;;;46986:20;46994:11;46986:7;:20::i;:::-;46982:212;;;47063:13;:18;;;47031:11;:24;47043:11;47031:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;47146:13;:28;;;47104:11;:24;47116:11;47104:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;46982:212;46914:295;46391:829;47256:7;47252:2;47237:27;;47246:4;47237:27;;;;;;;;;;;;47275:42;47296:4;47302:2;47306:7;47315:1;47275:20;:42::i;:::-;45427:1898;;45323:2002;;;:::o;52788:1130::-;52872:1;52860:8;:13;;52852:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;52935:1;52919:12;;:17;;52911:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;52970:33;53006:24;;52970:60;;53075:12;;53047:25;:40;53039:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;53258:16;53316:1;53305:8;53277:25;:36;:40;53258:59;;53410:12;;53406:1;53395:8;:12;:27;53391:91;;;53467:1;53452:12;;:16;53441:27;;53391:91;53501:9;53513:25;53501:37;;53496:354;53545:8;53540:1;:13;53496:354;;53612:1;53581:33;;:11;:14;53593:1;53581:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;53577:260;;;53637:31;53671:14;53683:1;53671:11;:14::i;:::-;53637:48;;53728:9;:14;;;53706:11;:14;53718:1;53706:14;;;;;;;;;;;:19;;;:36;;;;;;;;;;;;;;;;;;53795:9;:24;;;53763:11;:14;53775:1;53763:14;;;;;;;;;;;:29;;;:56;;;;;;;;;;;;;;;;;;53616:221;53577:260;53555:3;;;;;;;53496:354;;;;53902:1;53891:8;:12;53864:24;:39;;;;53235:678;52843:1075;52788:1130;:::o;38188:537::-;38249:21;;:::i;:::-;38291:16;38299:7;38291;:16::i;:::-;38283:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38397:12;38412:7;38397:22;;38392:245;38429:1;38421:4;:9;38392:245;;38459:31;38493:11;:17;38505:4;38493:17;;;;;;;;;;;38459:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38559:1;38533:28;;:9;:14;;;:28;;;38529:93;;38593:9;38586:16;;;;;;38529:93;38440:197;38432:6;;;;;;;;38392:245;;;;38660:57;;;;;;;;;;:::i;:::-;;;;;;;;38188:537;;;;:::o;11182:191::-;11256:16;11275:6;;;;;;;;;;;11256:25;;11301:8;11292:6;;:17;;;;;;;;;;;;;;;;;;11356:8;11325:40;;11346:8;11325:40;;;;;;;;;;;;11245:128;11182:191;:::o;42642:104::-;42711:27;42721:2;42725:8;42711:27;;;;;;;;;;;;:9;:27::i;:::-;42642:104;;:::o;48204:804::-;48359:4;48380:15;:2;:13;;;:15::i;:::-;48376:625;;;48432:2;48416:36;;;48453:12;:10;:12::i;:::-;48467:4;48473:7;48482:5;48416:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48412:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48679:1;48662:6;:13;:18;48658:273;;;48705:61;;;;;;;;;;:::i;:::-;;;;;;;;48658:273;48881:6;48875:13;48866:6;48862:2;48858:15;48851:38;48412:534;48549:45;;;48539:55;;;:6;:55;;;;48532:62;;;;;48376:625;48985:4;48978:11;;48204:804;;;;;;;:::o;52134:102::-;52194:13;52223:7;52216:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52134:102;:::o;6198:723::-;6254:13;6484:1;6475:5;:10;6471:53;;;6502:10;;;;;;;;;;;;;;;;;;;;;6471:53;6534:12;6549:5;6534:20;;6565:14;6590:78;6605:1;6597:4;:9;6590:78;;6623:8;;;;;:::i;:::-;;;;6654:2;6646:10;;;;;:::i;:::-;;;6590:78;;;6678:19;6710:6;6700:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6678:39;;6728:154;6744:1;6735:5;:10;6728:154;;6772:1;6762:11;;;;;:::i;:::-;;;6839:2;6831:5;:10;;;;:::i;:::-;6818:2;:24;;;;:::i;:::-;6805:39;;6788:6;6795;6788:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6868:2;6859:11;;;;;:::i;:::-;;;6728:154;;;6906:6;6892:21;;;;;6198:723;;;;:::o;37757:229::-;37818:7;37863:1;37846:19;;:5;:19;;;;37838:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;37945:12;:19;37958:5;37945:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;37937:41;;37930:48;;37757:229;;;:::o;49496:159::-;;;;;:::o;50067:158::-;;;;;:::o;43109:163::-;43232:32;43238:2;43242:8;43252:5;43259:4;43232:5;:32::i;:::-;43109:163;;;:::o;12613:326::-;12673:4;12930:1;12908:7;:19;;;:23;12901:30;;12613:326;;;:::o;43531:1538::-;43670:20;43693:12;;43670:35;;43738:1;43724:16;;:2;:16;;;;43716:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;43809:1;43797:8;:13;;43789:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43868:61;43898:1;43902:2;43906:12;43920:8;43868:21;:61::i;:::-;44243:8;44207:12;:16;44220:2;44207:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44308:8;44267:12;:16;44280:2;44267:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44367:2;44334:11;:25;44346:12;44334:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44434:15;44384:11;:25;44396:12;44384:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44467:20;44490:12;44467:35;;44524:9;44519:415;44539:8;44535:1;:12;44519:415;;;44603:12;44599:2;44578:38;;44595:1;44578:38;;;;;;;;;;;;44639:4;44635:249;;;44702:59;44733:1;44737:2;44741:12;44755:5;44702:22;:59::i;:::-;44668:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;44635:249;44904:14;;;;;;;44549:3;;;;;;;44519:415;;;;44965:12;44950;:27;;;;44182:807;45001:60;45030:1;45034:2;45038:12;45052:8;45001:20;:60::i;:::-;43659:1410;43531: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:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6298:553;6356:8;6366:6;6416:3;6409:4;6401:6;6397:17;6393:27;6383:122;;6424:79;;:::i;:::-;6383:122;6537:6;6524:20;6514:30;;6567:18;6559:6;6556:30;6553:117;;;6589:79;;:::i;:::-;6553:117;6703:4;6695:6;6691:17;6679:29;;6757:3;6749:4;6741:6;6737:17;6727:8;6723:32;6720:41;6717:128;;;6764:79;;:::i;:::-;6717:128;6298:553;;;;;:::o;6857:529::-;6928:6;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:65;7361:7;7352:6;7341:9;7337:22;7304:65;:::i;:::-;7286:83;;;;7082:297;6857:529;;;;;:::o;7392:329::-;7451:6;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7392:329;;;;:::o;7727:108::-;7804:24;7822:5;7804:24;:::i;:::-;7799:3;7792:37;7727:108;;:::o;7841:101::-;7877:7;7917:18;7910:5;7906:30;7895:41;;7841:101;;;:::o;7948:105::-;8023:23;8040:5;8023:23;:::i;:::-;8018:3;8011:36;7948:105;;:::o;8129:529::-;8290:4;8285:3;8281:14;8377:4;8370:5;8366:16;8360:23;8396:63;8453:4;8448:3;8444:14;8430:12;8396:63;:::i;:::-;8305:164;8561:4;8554:5;8550:16;8544:23;8580:61;8635:4;8630:3;8626:14;8612:12;8580:61;:::i;:::-;8479:172;8259:399;8129:529;;:::o;8664:350::-;8821:4;8859:2;8848:9;8844:18;8836:26;;8872:135;9004:1;8993:9;8989:17;8980:6;8872:135;:::i;:::-;8664:350;;;;:::o;9020:116::-;9090:21;9105:5;9090:21;:::i;:::-;9083:5;9080:32;9070:60;;9126:1;9123;9116:12;9070:60;9020:116;:::o;9142:133::-;9185:5;9223:6;9210:20;9201:29;;9239:30;9263:5;9239:30;:::i;:::-;9142:133;;;;:::o;9281:468::-;9346:6;9354;9403:2;9391:9;9382:7;9378:23;9374:32;9371:119;;;9409:79;;:::i;:::-;9371:119;9529:1;9554:53;9599:7;9590:6;9579:9;9575:22;9554:53;:::i;:::-;9544:63;;9500:117;9656:2;9682:50;9724:7;9715:6;9704:9;9700:22;9682:50;:::i;:::-;9672:60;;9627:115;9281:468;;;;;:::o;9755:117::-;9864:1;9861;9854:12;9878:180;9926:77;9923:1;9916:88;10023:4;10020:1;10013:15;10047:4;10044:1;10037:15;10064:281;10147:27;10169:4;10147:27;:::i;:::-;10139:6;10135:40;10277:6;10265:10;10262:22;10241:18;10229:10;10226:34;10223:62;10220:88;;;10288:18;;:::i;:::-;10220:88;10328:10;10324:2;10317:22;10107:238;10064:281;;:::o;10351:129::-;10385:6;10412:20;;:::i;:::-;10402:30;;10441:33;10469:4;10461:6;10441:33;:::i;:::-;10351:129;;;:::o;10486:307::-;10547:4;10637:18;10629:6;10626:30;10623:56;;;10659:18;;:::i;:::-;10623:56;10697:29;10719:6;10697:29;:::i;:::-;10689:37;;10781:4;10775;10771:15;10763:23;;10486:307;;;:::o;10799:154::-;10883:6;10878:3;10873;10860:30;10945:1;10936:6;10931:3;10927:16;10920:27;10799:154;;;:::o;10959:410::-;11036:5;11061:65;11077:48;11118:6;11077:48;:::i;:::-;11061:65;:::i;:::-;11052:74;;11149:6;11142:5;11135:21;11187:4;11180:5;11176:16;11225:3;11216:6;11211:3;11207:16;11204:25;11201:112;;;11232:79;;:::i;:::-;11201:112;11322:41;11356:6;11351:3;11346;11322:41;:::i;:::-;11042:327;10959:410;;;;;:::o;11388:338::-;11443:5;11492:3;11485:4;11477:6;11473:17;11469:27;11459:122;;11500:79;;:::i;:::-;11459:122;11617:6;11604:20;11642:78;11716:3;11708:6;11701:4;11693:6;11689:17;11642:78;:::i;:::-;11633:87;;11449:277;11388:338;;;;:::o;11732:943::-;11827:6;11835;11843;11851;11900:3;11888:9;11879:7;11875:23;11871:33;11868:120;;;11907:79;;:::i;:::-;11868:120;12027:1;12052:53;12097:7;12088:6;12077:9;12073:22;12052:53;:::i;:::-;12042:63;;11998:117;12154:2;12180:53;12225:7;12216:6;12205:9;12201:22;12180:53;:::i;:::-;12170:63;;12125:118;12282:2;12308:53;12353:7;12344:6;12333:9;12329:22;12308:53;:::i;:::-;12298:63;;12253:118;12438:2;12427:9;12423:18;12410:32;12469:18;12461:6;12458:30;12455:117;;;12491:79;;:::i;:::-;12455:117;12596:62;12650:7;12641:6;12630:9;12626:22;12596:62;:::i;:::-;12586:72;;12381:287;11732:943;;;;;;;:::o;12681:474::-;12749:6;12757;12806:2;12794:9;12785:7;12781:23;12777:32;12774:119;;;12812:79;;:::i;:::-;12774:119;12932:1;12957:53;13002:7;12993:6;12982:9;12978:22;12957:53;:::i;:::-;12947:63;;12903:117;13059:2;13085:53;13130:7;13121:6;13110:9;13106:22;13085:53;:::i;:::-;13075:63;;13030:118;12681:474;;;;;:::o;13161:180::-;13209:77;13206:1;13199:88;13306:4;13303:1;13296:15;13330:4;13327:1;13320:15;13347:320;13391:6;13428:1;13422:4;13418:12;13408:22;;13475:1;13469:4;13465:12;13496:18;13486:81;;13552:4;13544:6;13540:17;13530:27;;13486:81;13614:2;13606:6;13603:14;13583:18;13580:38;13577:84;;;13633:18;;:::i;:::-;13577:84;13398:269;13347:320;;;:::o;13673:232::-;13813:34;13809:1;13801:6;13797:14;13790:58;13882:15;13877:2;13869:6;13865:15;13858:40;13673:232;:::o;13911:366::-;14053:3;14074:67;14138:2;14133:3;14074:67;:::i;:::-;14067:74;;14150:93;14239:3;14150:93;:::i;:::-;14268:2;14263:3;14259:12;14252:19;;13911:366;;;:::o;14283:419::-;14449:4;14487:2;14476:9;14472:18;14464:26;;14536:9;14530:4;14526:20;14522:1;14511:9;14507:17;14500:47;14564:131;14690:4;14564:131;:::i;:::-;14556:139;;14283:419;;;:::o;14708:221::-;14848:34;14844:1;14836:6;14832:14;14825:58;14917:4;14912:2;14904:6;14900:15;14893:29;14708:221;:::o;14935:366::-;15077:3;15098:67;15162:2;15157:3;15098:67;:::i;:::-;15091:74;;15174:93;15263:3;15174:93;:::i;:::-;15292:2;15287:3;15283:12;15276:19;;14935:366;;;:::o;15307:419::-;15473:4;15511:2;15500:9;15496:18;15488:26;;15560:9;15554:4;15550:20;15546:1;15535:9;15531:17;15524:47;15588:131;15714:4;15588:131;:::i;:::-;15580:139;;15307:419;;;:::o;15732:244::-;15872:34;15868:1;15860:6;15856:14;15849:58;15941:27;15936:2;15928:6;15924:15;15917:52;15732:244;:::o;15982:366::-;16124:3;16145:67;16209:2;16204:3;16145:67;:::i;:::-;16138:74;;16221:93;16310:3;16221:93;:::i;:::-;16339:2;16334:3;16330:12;16323:19;;15982:366;;;:::o;16354:419::-;16520:4;16558:2;16547:9;16543:18;16535:26;;16607:9;16601:4;16597:20;16593:1;16582:9;16578:17;16571:47;16635:131;16761:4;16635:131;:::i;:::-;16627:139;;16354:419;;;:::o;16779:182::-;16919:34;16915:1;16907:6;16903:14;16896:58;16779:182;:::o;16967:366::-;17109:3;17130:67;17194:2;17189:3;17130:67;:::i;:::-;17123:74;;17206:93;17295:3;17206:93;:::i;:::-;17324:2;17319:3;17315:12;17308:19;;16967:366;;;:::o;17339:419::-;17505:4;17543:2;17532:9;17528:18;17520:26;;17592:9;17586:4;17582:20;17578:1;17567:9;17563:17;17556:47;17620:131;17746:4;17620:131;:::i;:::-;17612:139;;17339:419;;;:::o;17764:181::-;17904:33;17900:1;17892:6;17888:14;17881:57;17764:181;:::o;17951:366::-;18093:3;18114:67;18178:2;18173:3;18114:67;:::i;:::-;18107:74;;18190:93;18279:3;18190:93;:::i;:::-;18308:2;18303:3;18299:12;18292:19;;17951:366;;;:::o;18323:419::-;18489:4;18527:2;18516:9;18512:18;18504:26;;18576:9;18570:4;18566:20;18562:1;18551:9;18547:17;18540:47;18604:131;18730:4;18604:131;:::i;:::-;18596:139;;18323:419;;;:::o;18748:221::-;18888:34;18884:1;18876:6;18872:14;18865:58;18957:4;18952:2;18944:6;18940:15;18933:29;18748:221;:::o;18975:366::-;19117:3;19138:67;19202:2;19197:3;19138:67;:::i;:::-;19131:74;;19214:93;19303:3;19214:93;:::i;:::-;19332:2;19327:3;19323:12;19316:19;;18975:366;;;:::o;19347:419::-;19513:4;19551:2;19540:9;19536:18;19528:26;;19600:9;19594:4;19590:20;19586:1;19575:9;19571:17;19564:47;19628:131;19754:4;19628:131;:::i;:::-;19620:139;;19347:419;;;:::o;19772:233::-;19912:34;19908:1;19900:6;19896:14;19889:58;19981:16;19976:2;19968:6;19964:15;19957:41;19772:233;:::o;20011:366::-;20153:3;20174:67;20238:2;20233:3;20174:67;:::i;:::-;20167:74;;20250:93;20339:3;20250:93;:::i;:::-;20368:2;20363:3;20359:12;20352:19;;20011:366;;;:::o;20383:419::-;20549:4;20587:2;20576:9;20572:18;20564:26;;20636:9;20630:4;20626:20;20622:1;20611:9;20607:17;20600:47;20664:131;20790:4;20664:131;:::i;:::-;20656:139;;20383:419;;;:::o;20808:147::-;20909:11;20946:3;20931:18;;20808:147;;;;:::o;20961:114::-;;:::o;21081:398::-;21240:3;21261:83;21342:1;21337:3;21261:83;:::i;:::-;21254:90;;21353:93;21442:3;21353:93;:::i;:::-;21471:1;21466:3;21462:11;21455:18;;21081:398;;;:::o;21485:379::-;21669:3;21691:147;21834:3;21691:147;:::i;:::-;21684:154;;21855:3;21848:10;;21485:379;;;:::o;21870:166::-;22010:18;22006:1;21998:6;21994:14;21987:42;21870:166;:::o;22042:366::-;22184:3;22205:67;22269:2;22264:3;22205:67;:::i;:::-;22198:74;;22281:93;22370:3;22281:93;:::i;:::-;22399:2;22394:3;22390:12;22383:19;;22042:366;;;:::o;22414:419::-;22580:4;22618:2;22607:9;22603:18;22595:26;;22667:9;22661:4;22657:20;22653:1;22642:9;22638:17;22631:47;22695:131;22821:4;22695:131;:::i;:::-;22687:139;;22414:419;;;:::o;22839:222::-;22979:34;22975:1;22967:6;22963:14;22956:58;23048:5;23043:2;23035:6;23031:15;23024:30;22839:222;:::o;23067:366::-;23209:3;23230:67;23294:2;23289:3;23230:67;:::i;:::-;23223:74;;23306:93;23395:3;23306:93;:::i;:::-;23424:2;23419:3;23415:12;23408:19;;23067:366;;;:::o;23439:419::-;23605:4;23643:2;23632:9;23628:18;23620:26;;23692:9;23686:4;23682:20;23678:1;23667:9;23663:17;23656:47;23720:131;23846:4;23720:131;:::i;:::-;23712:139;;23439:419;;;:::o;23864:230::-;24004:34;24000:1;23992:6;23988:14;23981:58;24073:13;24068:2;24060:6;24056:15;24049:38;23864:230;:::o;24100:366::-;24242:3;24263:67;24327:2;24322:3;24263:67;:::i;:::-;24256:74;;24339:93;24428:3;24339:93;:::i;:::-;24457:2;24452:3;24448:12;24441:19;;24100:366;;;:::o;24472:419::-;24638:4;24676:2;24665:9;24661:18;24653:26;;24725:9;24719:4;24715:20;24711:1;24700:9;24696:17;24689:47;24753:131;24879:4;24753:131;:::i;:::-;24745:139;;24472:419;;;:::o;24897:180::-;24945:77;24942:1;24935:88;25042:4;25039:1;25032:15;25066:4;25063:1;25056:15;25083:305;25123:3;25142:20;25160:1;25142:20;:::i;:::-;25137:25;;25176:20;25194:1;25176:20;:::i;:::-;25171:25;;25330:1;25262:66;25258:74;25255:1;25252:81;25249:107;;;25336:18;;:::i;:::-;25249:107;25380:1;25377;25373:9;25366:16;;25083:305;;;;:::o;25394:169::-;25534:21;25530:1;25522:6;25518:14;25511:45;25394:169;:::o;25569:366::-;25711:3;25732:67;25796:2;25791:3;25732:67;:::i;:::-;25725:74;;25808:93;25897:3;25808:93;:::i;:::-;25926:2;25921:3;25917:12;25910:19;;25569:366;;;:::o;25941:419::-;26107:4;26145:2;26134:9;26130:18;26122:26;;26194:9;26188:4;26184:20;26180:1;26169:9;26165:17;26158:47;26222:131;26348:4;26222:131;:::i;:::-;26214:139;;25941:419;;;:::o;26366:348::-;26406:7;26429:20;26447:1;26429:20;:::i;:::-;26424:25;;26463:20;26481:1;26463:20;:::i;:::-;26458:25;;26651:1;26583:66;26579:74;26576:1;26573:81;26568:1;26561:9;26554:17;26550:105;26547:131;;;26658:18;;:::i;:::-;26547:131;26706:1;26703;26699:9;26688:20;;26366:348;;;;:::o;26720:179::-;26860:31;26856:1;26848:6;26844:14;26837:55;26720:179;:::o;26905:366::-;27047:3;27068:67;27132:2;27127:3;27068:67;:::i;:::-;27061:74;;27144:93;27233:3;27144:93;:::i;:::-;27262:2;27257:3;27253:12;27246:19;;26905:366;;;:::o;27277:419::-;27443:4;27481:2;27470:9;27466:18;27458:26;;27530:9;27524:4;27520:20;27516:1;27505:9;27501:17;27494:47;27558:131;27684:4;27558:131;:::i;:::-;27550:139;;27277:419;;;:::o;27702:172::-;27842:24;27838:1;27830:6;27826:14;27819:48;27702:172;:::o;27880:366::-;28022:3;28043:67;28107:2;28102:3;28043:67;:::i;:::-;28036:74;;28119:93;28208:3;28119:93;:::i;:::-;28237:2;28232:3;28228:12;28221:19;;27880:366;;;:::o;28252:419::-;28418:4;28456:2;28445:9;28441:18;28433:26;;28505:9;28499:4;28495:20;28491:1;28480:9;28476:17;28469:47;28533:131;28659:4;28533:131;:::i;:::-;28525:139;;28252:419;;;:::o;28677:174::-;28817:26;28813:1;28805:6;28801:14;28794:50;28677:174;:::o;28857:366::-;28999:3;29020:67;29084:2;29079:3;29020:67;:::i;:::-;29013:74;;29096:93;29185:3;29096:93;:::i;:::-;29214:2;29209:3;29205:12;29198:19;;28857:366;;;:::o;29229:419::-;29395:4;29433:2;29422:9;29418:18;29410:26;;29482:9;29476:4;29472:20;29468:1;29457:9;29453:17;29446:47;29510:131;29636:4;29510:131;:::i;:::-;29502:139;;29229:419;;;:::o;29654:170::-;29794:22;29790:1;29782:6;29778:14;29771:46;29654:170;:::o;29830:366::-;29972:3;29993:67;30057:2;30052:3;29993:67;:::i;:::-;29986:74;;30069:93;30158:3;30069:93;:::i;:::-;30187:2;30182:3;30178:12;30171:19;;29830:366;;;:::o;30202:419::-;30368:4;30406:2;30395:9;30391:18;30383:26;;30455:9;30449:4;30445:20;30441:1;30430:9;30426:17;30419:47;30483:131;30609:4;30483:131;:::i;:::-;30475:139;;30202:419;;;:::o;30627:169::-;30767:21;30763:1;30755:6;30751:14;30744:45;30627:169;:::o;30802:366::-;30944:3;30965:67;31029:2;31024:3;30965:67;:::i;:::-;30958:74;;31041:93;31130:3;31041:93;:::i;:::-;31159:2;31154:3;31150:12;31143:19;;30802:366;;;:::o;31174:419::-;31340:4;31378:2;31367:9;31363:18;31355:26;;31427:9;31421:4;31417:20;31413:1;31402:9;31398:17;31391:47;31455:131;31581:4;31455:131;:::i;:::-;31447:139;;31174:419;;;:::o;31599:176::-;31739:28;31735:1;31727:6;31723:14;31716:52;31599:176;:::o;31781:366::-;31923:3;31944:67;32008:2;32003:3;31944:67;:::i;:::-;31937:74;;32020:93;32109:3;32020:93;:::i;:::-;32138:2;32133:3;32129:12;32122:19;;31781:366;;;:::o;32153:419::-;32319:4;32357:2;32346:9;32342:18;32334:26;;32406:9;32400:4;32396:20;32392:1;32381:9;32377:17;32370:47;32434:131;32560:4;32434:131;:::i;:::-;32426:139;;32153:419;;;:::o;32578:238::-;32718:34;32714:1;32706:6;32702:14;32695:58;32787:21;32782:2;32774:6;32770:15;32763:46;32578:238;:::o;32822:366::-;32964:3;32985:67;33049:2;33044:3;32985:67;:::i;:::-;32978:74;;33061:93;33150:3;33061:93;:::i;:::-;33179:2;33174:3;33170:12;33163:19;;32822:366;;;:::o;33194:419::-;33360:4;33398:2;33387:9;33383:18;33375:26;;33447:9;33441:4;33437:20;33433:1;33422:9;33418:17;33411:47;33475:131;33601:4;33475:131;:::i;:::-;33467:139;;33194:419;;;:::o;33619:234::-;33759:34;33755:1;33747:6;33743:14;33736:58;33828:17;33823:2;33815:6;33811:15;33804:42;33619:234;:::o;33859:366::-;34001:3;34022:67;34086:2;34081:3;34022:67;:::i;:::-;34015:74;;34098:93;34187:3;34098:93;:::i;:::-;34216:2;34211:3;34207:12;34200:19;;33859:366;;;:::o;34231:419::-;34397:4;34435:2;34424:9;34420:18;34412:26;;34484:9;34478:4;34474:20;34470:1;34459:9;34455:17;34448:47;34512:131;34638:4;34512:131;:::i;:::-;34504:139;;34231:419;;;:::o;34656:148::-;34758:11;34795:3;34780:18;;34656:148;;;;:::o;34810:377::-;34916:3;34944:39;34977:5;34944:39;:::i;:::-;34999:89;35081:6;35076:3;34999:89;:::i;:::-;34992:96;;35097:52;35142:6;35137:3;35130:4;35123:5;35119:16;35097:52;:::i;:::-;35174:6;35169:3;35165:16;35158:23;;34920:267;34810:377;;;;:::o;35193:435::-;35373:3;35395:95;35486:3;35477:6;35395:95;:::i;:::-;35388:102;;35507:95;35598:3;35589:6;35507:95;:::i;:::-;35500:102;;35619:3;35612:10;;35193:435;;;;;:::o;35634:225::-;35774:34;35770:1;35762:6;35758:14;35751:58;35843:8;35838:2;35830:6;35826:15;35819:33;35634:225;:::o;35865:366::-;36007:3;36028:67;36092:2;36087:3;36028:67;:::i;:::-;36021:74;;36104:93;36193:3;36104:93;:::i;:::-;36222:2;36217:3;36213:12;36206:19;;35865:366;;;:::o;36237:419::-;36403:4;36441:2;36430:9;36426:18;36418:26;;36490:9;36484:4;36480:20;36476:1;36465:9;36461:17;36454:47;36518:131;36644:4;36518:131;:::i;:::-;36510:139;;36237:419;;;:::o;36662:237::-;36802:34;36798:1;36790:6;36786:14;36779:58;36871:20;36866:2;36858:6;36854:15;36847:45;36662:237;:::o;36905:366::-;37047:3;37068:67;37132:2;37127:3;37068:67;:::i;:::-;37061:74;;37144:93;37233:3;37144:93;:::i;:::-;37262:2;37257:3;37253:12;37246:19;;36905:366;;;:::o;37277:419::-;37443:4;37481:2;37470:9;37466:18;37458:26;;37530:9;37524:4;37520:20;37516:1;37505:9;37501:17;37494:47;37558:131;37684:4;37558:131;:::i;:::-;37550:139;;37277:419;;;:::o;37702:225::-;37842:34;37838:1;37830:6;37826:14;37819:58;37911:8;37906:2;37898:6;37894:15;37887:33;37702:225;:::o;37933:366::-;38075:3;38096:67;38160:2;38155:3;38096:67;:::i;:::-;38089:74;;38172:93;38261:3;38172:93;:::i;:::-;38290:2;38285:3;38281:12;38274:19;;37933:366;;;:::o;38305:419::-;38471:4;38509:2;38498:9;38494:18;38486:26;;38558:9;38552:4;38548:20;38544:1;38533:9;38529:17;38522:47;38586:131;38712:4;38586:131;:::i;:::-;38578:139;;38305:419;;;:::o;38730:224::-;38870:34;38866:1;38858:6;38854:14;38847:58;38939:7;38934:2;38926:6;38922:15;38915:32;38730:224;:::o;38960:366::-;39102:3;39123:67;39187:2;39182:3;39123:67;:::i;:::-;39116:74;;39199:93;39288:3;39199:93;:::i;:::-;39317:2;39312:3;39308:12;39301:19;;38960:366;;;:::o;39332:419::-;39498:4;39536:2;39525:9;39521:18;39513:26;;39585:9;39579:4;39575:20;39571:1;39560:9;39556:17;39549:47;39613:131;39739:4;39613:131;:::i;:::-;39605:139;;39332:419;;;:::o;39757:174::-;39897:26;39893:1;39885:6;39881:14;39874:50;39757:174;:::o;39937:366::-;40079:3;40100:67;40164:2;40159:3;40100:67;:::i;:::-;40093:74;;40176:93;40265:3;40176:93;:::i;:::-;40294:2;40289:3;40285:12;40278:19;;39937:366;;;:::o;40309:419::-;40475:4;40513:2;40502:9;40498:18;40490:26;;40562:9;40556:4;40552:20;40548:1;40537:9;40533:17;40526:47;40590:131;40716:4;40590:131;:::i;:::-;40582:139;;40309:419;;;:::o;40734:170::-;40874:22;40870:1;40862:6;40858:14;40851:46;40734:170;:::o;40910:366::-;41052:3;41073:67;41137:2;41132:3;41073:67;:::i;:::-;41066:74;;41149:93;41238:3;41149:93;:::i;:::-;41267:2;41262:3;41258:12;41251:19;;40910:366;;;:::o;41282:419::-;41448:4;41486:2;41475:9;41471:18;41463:26;;41535:9;41529:4;41525:20;41521:1;41510:9;41506:17;41499:47;41563:131;41689:4;41563:131;:::i;:::-;41555:139;;41282:419;;;:::o;41707:178::-;41847:30;41843:1;41835:6;41831:14;41824:54;41707:178;:::o;41891:366::-;42033:3;42054:67;42118:2;42113:3;42054:67;:::i;:::-;42047:74;;42130:93;42219:3;42130:93;:::i;:::-;42248:2;42243:3;42239:12;42232:19;;41891:366;;;:::o;42263:419::-;42429:4;42467:2;42456:9;42452:18;42444:26;;42516:9;42510:4;42506:20;42502:1;42491:9;42487:17;42480:47;42544:131;42670:4;42544:131;:::i;:::-;42536:139;;42263:419;;;:::o;42688:229::-;42828:34;42824:1;42816:6;42812:14;42805:58;42897:12;42892:2;42884:6;42880:15;42873:37;42688:229;:::o;42923:366::-;43065:3;43086:67;43150:2;43145:3;43086:67;:::i;:::-;43079:74;;43162:93;43251:3;43162:93;:::i;:::-;43280:2;43275:3;43271:12;43264:19;;42923:366;;;:::o;43295:419::-;43461:4;43499:2;43488:9;43484:18;43476:26;;43548:9;43542:4;43538:20;43534:1;43523:9;43519:17;43512:47;43576:131;43702:4;43576:131;:::i;:::-;43568:139;;43295:419;;;:::o;43720:234::-;43860:34;43856:1;43848:6;43844:14;43837:58;43929:17;43924:2;43916:6;43912:15;43905:42;43720:234;:::o;43960:366::-;44102:3;44123:67;44187:2;44182:3;44123:67;:::i;:::-;44116:74;;44199:93;44288:3;44199:93;:::i;:::-;44317:2;44312:3;44308:12;44301:19;;43960:366;;;:::o;44332:419::-;44498:4;44536:2;44525:9;44521:18;44513:26;;44585:9;44579:4;44575:20;44571:1;44560:9;44556:17;44549:47;44613:131;44739:4;44613:131;:::i;:::-;44605:139;;44332:419;;;:::o;44757:98::-;44808:6;44842:5;44836:12;44826:22;;44757:98;;;:::o;44861:168::-;44944:11;44978:6;44973:3;44966:19;45018:4;45013:3;45009:14;44994:29;;44861:168;;;;:::o;45035:360::-;45121:3;45149:38;45181:5;45149:38;:::i;:::-;45203:70;45266:6;45261:3;45203:70;:::i;:::-;45196:77;;45282:52;45327:6;45322:3;45315:4;45308:5;45304:16;45282:52;:::i;:::-;45359:29;45381:6;45359:29;:::i;:::-;45354:3;45350:39;45343:46;;45125:270;45035:360;;;;:::o;45401:640::-;45596:4;45634:3;45623:9;45619:19;45611:27;;45648:71;45716:1;45705:9;45701:17;45692:6;45648:71;:::i;:::-;45729:72;45797:2;45786:9;45782:18;45773:6;45729:72;:::i;:::-;45811;45879:2;45868:9;45864:18;45855:6;45811:72;:::i;:::-;45930:9;45924:4;45920:20;45915:2;45904:9;45900:18;45893:48;45958:76;46029:4;46020:6;45958:76;:::i;:::-;45950:84;;45401:640;;;;;;;:::o;46047:141::-;46103:5;46134:6;46128:13;46119:22;;46150:32;46176:5;46150:32;:::i;:::-;46047:141;;;;:::o;46194:349::-;46263:6;46312:2;46300:9;46291:7;46287:23;46283:32;46280:119;;;46318:79;;:::i;:::-;46280:119;46438:1;46463:63;46518:7;46509:6;46498:9;46494:22;46463:63;:::i;:::-;46453:73;;46409:127;46194:349;;;;:::o;46549:233::-;46588:3;46611:24;46629:5;46611:24;:::i;:::-;46602:33;;46657:66;46650:5;46647:77;46644:103;;;46727:18;;:::i;:::-;46644:103;46774:1;46767:5;46763:13;46756:20;;46549:233;;;:::o;46788:180::-;46836:77;46833:1;46826:88;46933:4;46930:1;46923:15;46957:4;46954:1;46947:15;46974:185;47014:1;47031:20;47049:1;47031:20;:::i;:::-;47026:25;;47065:20;47083:1;47065:20;:::i;:::-;47060:25;;47104:1;47094:35;;47109:18;;:::i;:::-;47094:35;47151:1;47148;47144:9;47139:14;;46974:185;;;;:::o;47165:191::-;47205:4;47225:20;47243:1;47225:20;:::i;:::-;47220:25;;47259:20;47277:1;47259:20;:::i;:::-;47254:25;;47298:1;47295;47292:8;47289:34;;;47303:18;;:::i;:::-;47289:34;47348:1;47345;47341:9;47333:17;;47165:191;;;;:::o;47362:176::-;47394:1;47411:20;47429:1;47411:20;:::i;:::-;47406:25;;47445:20;47463:1;47445:20;:::i;:::-;47440:25;;47484:1;47474:35;;47489:18;;:::i;:::-;47474:35;47530:1;47527;47523:9;47518:14;;47362:176;;;;:::o;47544:180::-;47592:77;47589:1;47582:88;47689:4;47686:1;47679:15;47713:4;47710:1;47703:15;47730:236;47870:34;47866:1;47858:6;47854:14;47847:58;47939:19;47934:2;47926:6;47922:15;47915:44;47730:236;:::o;47972:366::-;48114:3;48135:67;48199:2;48194:3;48135:67;:::i;:::-;48128:74;;48211:93;48300:3;48211:93;:::i;:::-;48329:2;48324:3;48320:12;48313:19;;47972:366;;;:::o;48344:419::-;48510:4;48548:2;48537:9;48533:18;48525:26;;48597:9;48591:4;48587:20;48583:1;48572:9;48568:17;48561:47;48625:131;48751:4;48625:131;:::i;:::-;48617:139;;48344:419;;;:::o;48769:220::-;48909:34;48905:1;48897:6;48893:14;48886:58;48978:3;48973:2;48965:6;48961:15;48954:28;48769:220;:::o;48995:366::-;49137:3;49158:67;49222:2;49217:3;49158:67;:::i;:::-;49151:74;;49234:93;49323:3;49234:93;:::i;:::-;49352:2;49347:3;49343:12;49336:19;;48995:366;;;:::o;49367:419::-;49533:4;49571:2;49560:9;49556:18;49548:26;;49620:9;49614:4;49610:20;49606:1;49595:9;49591:17;49584:47;49648:131;49774:4;49648:131;:::i;:::-;49640:139;;49367:419;;;:::o;49792:227::-;49932:34;49928:1;49920:6;49916:14;49909:58;50001:10;49996:2;49988:6;49984:15;49977:35;49792:227;:::o;50025:366::-;50167:3;50188:67;50252:2;50247:3;50188:67;:::i;:::-;50181:74;;50264:93;50353:3;50264:93;:::i;:::-;50382:2;50377:3;50373:12;50366:19;;50025:366;;;:::o;50397:419::-;50563:4;50601:2;50590:9;50586:18;50578:26;;50650:9;50644:4;50640:20;50636:1;50625:9;50621:17;50614:47;50678:131;50804:4;50678:131;:::i;:::-;50670:139;;50397:419;;;:::o

Swarm Source

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