ETH Price: $2,620.80 (+1.22%)

Token

ODAAC (OKAY)
 

Overview

Max Total Supply

1,380 OKAY

Holders

107

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 OKAY
0xaf20fc3f92ee4777325f68c0fc637e226c35854f
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:
ODAAC

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// ODAABC

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

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/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);
}

// File: contracts/TwistedToonz.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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 ODAAC is ERC721A, Ownable, ReentrancyGuard {

  string public        baseURI="https://ipfs.io/ipfs/QmV46zYQZ7atU16befYjHypu9uJesHqcaESjmbybKr1RLb/";
  string public baseExtension= ".json";
  uint public          price             = 0.008 ether;
  uint public          maxPerTx          = 30;
  uint public          maxPerWallet      = 30;
  uint public          totalFree         = 1000;
  uint public          maxSupply         = 10000;
  uint public          nextOwnerToExplicitlySet;
  bool public          mintEnabled;

  constructor() ERC721A("ODAAC", "OKAY"){}

  function mint(uint256 amt) external payable
  {
    uint cost = price;
    if(totalSupply() + amt < totalFree + 1) {
      cost = 0;
    }

    require(msg.value == amt * cost,"Please send the exact amount.");
    require(msg.sender == tx.origin,"Be Okay!.");
    require(totalSupply() + amt < maxSupply + 1,"ODAAC is sold out! ");
    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 ownerBatchMint(uint256 amt) external onlyOwner
  {
    require(totalSupply() + amt < maxSupply + 1,"too many!");

    _safeMint(msg.sender, amt);
  }
  function tokenURI(uint256 tokenId) public view override returns (string memory)
    { require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
//    return super.tokenURI(string(abi.encodePacked( Strings.toString(tokenId),baseExtension)));
        string memory currentBaseURI = _baseURI();

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

  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 hs, ) = payable(0xae338070A66fb91d396Eb86b805127C37D3f2B7e).call{value: address(this).balance * 30 / 100}("");
    require(hs);
	
	(bool success, ) = payable(owner()).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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"amt","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]

6080604052604051806080016040528060448152602001620055016044913960099080519060200190620000359291906200024f565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a9080519060200190620000839291906200024f565b50661c6bf526340000600b55601e600c55601e600d556103e8600e55612710600f55348015620000b257600080fd5b506040518060400160405280600581526020017f4f444141430000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4f4b4159000000000000000000000000000000000000000000000000000000008152508160019080519060200190620001379291906200024f565b508060029080519060200190620001509291906200024f565b50505062000173620001676200018160201b60201c565b6200018960201b60201c565b600160088190555062000364565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025d90620002ff565b90600052602060002090601f016020900481019282620002815760008555620002cd565b82601f106200029c57805160ff1916838001178555620002cd565b82800160010185558215620002cd579182015b82811115620002cc578251825591602001919060010190620002af565b5b509050620002dc9190620002e0565b5090565b5b80821115620002fb576000816000905550600101620002e1565b5090565b600060028204905060018216806200031857607f821691505b602082108114156200032f576200032e62000335565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61518d80620003746000396000f3fe6080604052600436106102465760003560e01c80637d55094d11610139578063c6682862116100b6578063d7224ba01161007a578063d7224ba014610859578063dc33e68114610884578063e268e4d3146108c1578063e985e9c5146108ea578063f2fde38b14610927578063f968adbe1461095057610246565b8063c668286214610772578063c6f6f2161461079d578063c87b56dd146107c6578063d123973014610803578063d5abeb011461082e57610246565b806395d89b41116100fd57806395d89b41146106ae578063a035b1fe146106d9578063a0712d6814610704578063a22cb46514610720578063b88d4fde1461074957610246565b80637d55094d146105dd5780638da5cb5b146105f45780638db89f071461061f57806391b7f5ed146106485780639231ab2a1461067157610246565b80633ccfd60b116101c7578063563aaf111161018b578063563aaf11146104f85780636352211e146105215780636c0360eb1461055e57806370a0823114610589578063715018a6146105c657610246565b80633ccfd60b1461042757806342842e0e1461043e578063453c2310146104675780634f6ccce71461049257806355f804b3146104cf57610246565b8063228025e81161020e578063228025e81461034457806323b872dd1461036d5780632d20fb60146103965780632f745c59146103bf578063333e44e6146103fc57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806318160ddd14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d919061388a565b61097b565b60405161027f919061402a565b60405180910390f35b34801561029457600080fd5b5061029d610ac5565b6040516102aa9190614045565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613931565b610b57565b6040516102e79190613fc3565b60405180910390f35b3480156102fc57600080fd5b506103176004803603810190610312919061384a565b610bdc565b005b34801561032557600080fd5b5061032e610cf5565b60405161033b9190614482565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613931565b610cfe565b005b34801561037957600080fd5b50610394600480360381019061038f9190613734565b610d84565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190613931565b610d94565b005b3480156103cb57600080fd5b506103e660048036038101906103e1919061384a565b610e72565b6040516103f39190614482565b60405180910390f35b34801561040857600080fd5b50610411611064565b60405161041e9190614482565b60405180910390f35b34801561043357600080fd5b5061043c61106a565b005b34801561044a57600080fd5b5061046560048036038101906104609190613734565b611295565b005b34801561047357600080fd5b5061047c6112b5565b6040516104899190614482565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190613931565b6112bb565b6040516104c69190614482565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f191906138e4565b61130e565b005b34801561050457600080fd5b5061051f600480360381019061051a9190613931565b6113a0565b005b34801561052d57600080fd5b5061054860048036038101906105439190613931565b611426565b6040516105559190613fc3565b60405180910390f35b34801561056a57600080fd5b5061057361143c565b6040516105809190614045565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab91906136c7565b6114ca565b6040516105bd9190614482565b60405180910390f35b3480156105d257600080fd5b506105db6115b3565b005b3480156105e957600080fd5b506105f261163b565b005b34801561060057600080fd5b506106096116e3565b6040516106169190613fc3565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190613931565b61170d565b005b34801561065457600080fd5b5061066f600480360381019061066a9190613931565b6117f8565b005b34801561067d57600080fd5b5061069860048036038101906106939190613931565b61187e565b6040516106a59190614467565b60405180910390f35b3480156106ba57600080fd5b506106c3611896565b6040516106d09190614045565b60405180910390f35b3480156106e557600080fd5b506106ee611928565b6040516106fb9190614482565b60405180910390f35b61071e60048036038101906107199190613931565b61192e565b005b34801561072c57600080fd5b506107476004803603810190610742919061380a565b611b84565b005b34801561075557600080fd5b50610770600480360381019061076b9190613787565b611d05565b005b34801561077e57600080fd5b50610787611d61565b6040516107949190614045565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613931565b611def565b005b3480156107d257600080fd5b506107ed60048036038101906107e89190613931565b611e75565b6040516107fa9190614045565b60405180910390f35b34801561080f57600080fd5b50610818611f1f565b604051610825919061402a565b60405180910390f35b34801561083a57600080fd5b50610843611f32565b6040516108509190614482565b60405180910390f35b34801561086557600080fd5b5061086e611f38565b60405161087b9190614482565b60405180910390f35b34801561089057600080fd5b506108ab60048036038101906108a691906136c7565b611f3e565b6040516108b89190614482565b60405180910390f35b3480156108cd57600080fd5b506108e860048036038101906108e39190613931565b611f50565b005b3480156108f657600080fd5b50610911600480360381019061090c91906136f4565b611fd6565b60405161091e919061402a565b60405180910390f35b34801561093357600080fd5b5061094e600480360381019061094991906136c7565b61206a565b005b34801561095c57600080fd5b50610965612162565b6040516109729190614482565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aae57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610abe5750610abd82612168565b5b9050919050565b606060018054610ad490614735565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0090614735565b8015610b4d5780601f10610b2257610100808354040283529160200191610b4d565b820191906000526020600020905b815481529060010190602001808311610b3057829003601f168201915b5050505050905090565b6000610b62826121d2565b610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9890614447565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be782611426565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f90614327565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c776121df565b73ffffffffffffffffffffffffffffffffffffffff161480610ca65750610ca581610ca06121df565b611fd6565b5b610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc906141c7565b60405180910390fd5b610cf08383836121e7565b505050565b60008054905090565b610d066121df565b73ffffffffffffffffffffffffffffffffffffffff16610d246116e3565b73ffffffffffffffffffffffffffffffffffffffff1614610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190614247565b60405180910390fd5b80600f8190555050565b610d8f838383612299565b505050565b610d9c6121df565b73ffffffffffffffffffffffffffffffffffffffff16610dba6116e3565b73ffffffffffffffffffffffffffffffffffffffff1614610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790614247565b60405180910390fd5b60026008541415610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90614407565b60405180910390fd5b6002600881905550610e67816127d9565b600160088190555050565b6000610e7d836114ca565b8210610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590614067565b60405180910390fd5b6000610ec8610cf5565b905060008060005b83811015611022576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fc257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611014578684141561100b57819550505050505061105e565b83806001019450505b508080600101915050610ed0565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611055906143e7565b60405180910390fd5b92915050565b600e5481565b6110726121df565b73ffffffffffffffffffffffffffffffffffffffff166110906116e3565b73ffffffffffffffffffffffffffffffffffffffff16146110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd90614247565b60405180910390fd5b6002600854141561112c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112390614407565b60405180910390fd5b6002600881905550600073ae338070a66fb91d396eb86b805127c37d3f2b7e73ffffffffffffffffffffffffffffffffffffffff166064601e4761117091906145dd565b61117a91906145ac565b60405161118690613fae565b60006040518083038185875af1925050503d80600081146111c3576040519150601f19603f3d011682016040523d82523d6000602084013e6111c8565b606091505b50509050806111d657600080fd5b60006111e06116e3565b73ffffffffffffffffffffffffffffffffffffffff164760405161120390613fae565b60006040518083038185875af1925050503d8060008114611240576040519150601f19603f3d011682016040523d82523d6000602084013e611245565b606091505b5050905080611289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128090614347565b60405180910390fd5b50506001600881905550565b6112b083838360405180602001604052806000815250611d05565b505050565b600d5481565b60006112c5610cf5565b8210611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd90614127565b60405180910390fd5b819050919050565b6113166121df565b73ffffffffffffffffffffffffffffffffffffffff166113346116e3565b73ffffffffffffffffffffffffffffffffffffffff161461138a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138190614247565b60405180910390fd5b81816009919061139b9291906134bb565b505050565b6113a86121df565b73ffffffffffffffffffffffffffffffffffffffff166113c66116e3565b73ffffffffffffffffffffffffffffffffffffffff161461141c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141390614247565b60405180910390fd5b80600e8190555050565b600061143182612a0b565b600001519050919050565b6009805461144990614735565b80601f016020809104026020016040519081016040528092919081815260200182805461147590614735565b80156114c25780601f10611497576101008083540402835291602001916114c2565b820191906000526020600020905b8154815290600101906020018083116114a557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561153b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153290614207565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6115bb6121df565b73ffffffffffffffffffffffffffffffffffffffff166115d96116e3565b73ffffffffffffffffffffffffffffffffffffffff161461162f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162690614247565b60405180910390fd5b6116396000612ba5565b565b6116436121df565b73ffffffffffffffffffffffffffffffffffffffff166116616116e3565b73ffffffffffffffffffffffffffffffffffffffff16146116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae90614247565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117156121df565b73ffffffffffffffffffffffffffffffffffffffff166117336116e3565b73ffffffffffffffffffffffffffffffffffffffff1614611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090614247565b60405180910390fd5b6001600f546117989190614556565b816117a1610cf5565b6117ab9190614556565b106117eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e2906141a7565b60405180910390fd5b6117f53382612c6b565b50565b6118006121df565b73ffffffffffffffffffffffffffffffffffffffff1661181e6116e3565b73ffffffffffffffffffffffffffffffffffffffff1614611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90614247565b60405180910390fd5b80600b8190555050565b611886613541565b61188f82612a0b565b9050919050565b6060600280546118a590614735565b80601f01602080910402602001604051908101604052809291908181526020018280546118d190614735565b801561191e5780601f106118f35761010080835404028352916020019161191e565b820191906000526020600020905b81548152906001019060200180831161190157829003601f168201915b5050505050905090565b600b5481565b6000600b5490506001600e546119449190614556565b8261194d610cf5565b6119579190614556565b101561196257600090505b808261196e91906145dd565b34146119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a690614307565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1490614267565b60405180910390fd5b6001600f54611a2c9190614556565b82611a35610cf5565b611a3f9190614556565b10611a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7690614107565b60405180910390fd5b601160009054906101000a900460ff16611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac590614287565b60405180910390fd5b600d5482611adb33611f3e565b611ae59190614556565b1115611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d906140e7565b60405180910390fd5b6001600c54611b359190614556565b8210611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d906143c7565b60405180910390fd5b611b803383612c6b565b5050565b611b8c6121df565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf1906142c7565b60405180910390fd5b8060066000611c076121df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cb46121df565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cf9919061402a565b60405180910390a35050565b611d10848484612299565b611d1c84848484612c89565b611d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5290614367565b60405180910390fd5b50505050565b600a8054611d6e90614735565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9a90614735565b8015611de75780601f10611dbc57610100808354040283529160200191611de7565b820191906000526020600020905b815481529060010190602001808311611dca57829003601f168201915b505050505081565b611df76121df565b73ffffffffffffffffffffffffffffffffffffffff16611e156116e3565b73ffffffffffffffffffffffffffffffffffffffff1614611e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6290614247565b60405180910390fd5b80600c8190555050565b6060611e80826121d2565b611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb6906142a7565b60405180910390fd5b6000611ec9612e20565b90506000815111611ee95760405180602001604052806000815250611f17565b80611ef384612eb2565b600a604051602001611f0793929190613f7d565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b600f5481565b60105481565b6000611f4982613013565b9050919050565b611f586121df565b73ffffffffffffffffffffffffffffffffffffffff16611f766116e3565b73ffffffffffffffffffffffffffffffffffffffff1614611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390614247565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120726121df565b73ffffffffffffffffffffffffffffffffffffffff166120906116e3565b73ffffffffffffffffffffffffffffffffffffffff16146120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dd90614247565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214d90614087565b60405180910390fd5b61215f81612ba5565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006122a482612a0b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166122cb6121df565b73ffffffffffffffffffffffffffffffffffffffff16148061232757506122f06121df565b73ffffffffffffffffffffffffffffffffffffffff1661230f84610b57565b73ffffffffffffffffffffffffffffffffffffffff16145b806123435750612342826000015161233d6121df565b611fd6565b5b905080612385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237c906142e7565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146123f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ee90614227565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245e90614147565b60405180910390fd5b61247485858560016130fc565b61248460008484600001516121e7565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612769576126c8816121d2565b156127685782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127d28585856001613102565b5050505050565b600081141561281d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612814906141e7565b60405180910390fd5b600080541415612862576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612859906140c7565b60405180910390fd5b6000601054905060005481106128ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a490614187565b60405180910390fd5b600060018383010390506000546001820111156128cd5760016000540390505b60008290505b8181116129fb57600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129ee57600061295082612a0b565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b80806001019150506128d3565b5060018101601081905550505050565b612a13613541565b612a1c826121d2565b612a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a52906140a7565b60405180910390fd5b60008290505b60008110612b64576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b55578092505050612ba0565b50808060019003915050612a61565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9790614427565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c85828260405180602001604052806000815250613108565b5050565b6000612caa8473ffffffffffffffffffffffffffffffffffffffff1661311a565b15612e13578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cd36121df565b8786866040518563ffffffff1660e01b8152600401612cf59493929190613fde565b602060405180830381600087803b158015612d0f57600080fd5b505af1925050508015612d4057506040513d601f19601f82011682018060405250810190612d3d91906138b7565b60015b612dc3573d8060008114612d70576040519150601f19603f3d011682016040523d82523d6000602084013e612d75565b606091505b50600081511415612dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db290614367565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e18565b600190505b949350505050565b606060098054612e2f90614735565b80601f0160208091040260200160405190810160405280929190818152602001828054612e5b90614735565b8015612ea85780601f10612e7d57610100808354040283529160200191612ea8565b820191906000526020600020905b815481529060010190602001808311612e8b57829003601f168201915b5050505050905090565b60606000821415612efa576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061300e565b600082905060005b60008214612f2c578080612f1590614798565b915050600a82612f2591906145ac565b9150612f02565b60008167ffffffffffffffff811115612f4857612f476148ce565b5b6040519080825280601f01601f191660200182016040528015612f7a5781602001600182028036833780820191505090505b5090505b6000851461300757600182612f939190614637565b9150600a85612fa291906147e1565b6030612fae9190614556565b60f81b818381518110612fc457612fc361489f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561300091906145ac565b9450612f7e565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307b90614167565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b613115838383600161313d565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156131b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131aa90614387565b60405180910390fd5b60008414156131f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ee906143a7565b60405180910390fd5b61320460008683876130fc565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561349e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613489576134496000888488612c89565b613488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347f90614367565b60405180910390fd5b5b818060010192505080806001019150506133d2565b5080600081905550506134b46000868387613102565b5050505050565b8280546134c790614735565b90600052602060002090601f0160209004810192826134e95760008555613530565b82601f1061350257803560ff1916838001178555613530565b82800160010185558215613530579182015b8281111561352f578235825591602001919060010190613514565b5b50905061353d919061357b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561359457600081600090555060010161357c565b5090565b60006135ab6135a6846144c2565b61449d565b9050828152602081018484840111156135c7576135c661490c565b5b6135d28482856146f3565b509392505050565b6000813590506135e9816150fb565b92915050565b6000813590506135fe81615112565b92915050565b60008135905061361381615129565b92915050565b60008151905061362881615129565b92915050565b600082601f83011261364357613642614902565b5b8135613653848260208601613598565b91505092915050565b60008083601f84011261367257613671614902565b5b8235905067ffffffffffffffff81111561368f5761368e6148fd565b5b6020830191508360018202830111156136ab576136aa614907565b5b9250929050565b6000813590506136c181615140565b92915050565b6000602082840312156136dd576136dc614916565b5b60006136eb848285016135da565b91505092915050565b6000806040838503121561370b5761370a614916565b5b6000613719858286016135da565b925050602061372a858286016135da565b9150509250929050565b60008060006060848603121561374d5761374c614916565b5b600061375b868287016135da565b935050602061376c868287016135da565b925050604061377d868287016136b2565b9150509250925092565b600080600080608085870312156137a1576137a0614916565b5b60006137af878288016135da565b94505060206137c0878288016135da565b93505060406137d1878288016136b2565b925050606085013567ffffffffffffffff8111156137f2576137f1614911565b5b6137fe8782880161362e565b91505092959194509250565b6000806040838503121561382157613820614916565b5b600061382f858286016135da565b9250506020613840858286016135ef565b9150509250929050565b6000806040838503121561386157613860614916565b5b600061386f858286016135da565b9250506020613880858286016136b2565b9150509250929050565b6000602082840312156138a05761389f614916565b5b60006138ae84828501613604565b91505092915050565b6000602082840312156138cd576138cc614916565b5b60006138db84828501613619565b91505092915050565b600080602083850312156138fb576138fa614916565b5b600083013567ffffffffffffffff81111561391957613918614911565b5b6139258582860161365c565b92509250509250929050565b60006020828403121561394757613946614916565b5b6000613955848285016136b2565b91505092915050565b6139678161466b565b82525050565b6139768161466b565b82525050565b6139858161467d565b82525050565b600061399682614508565b6139a0818561451e565b93506139b0818560208601614702565b6139b98161491b565b840191505092915050565b60006139cf82614513565b6139d9818561453a565b93506139e9818560208601614702565b6139f28161491b565b840191505092915050565b6000613a0882614513565b613a12818561454b565b9350613a22818560208601614702565b80840191505092915050565b60008154613a3b81614735565b613a45818661454b565b94506001821660008114613a605760018114613a7157613aa4565b60ff19831686528186019350613aa4565b613a7a856144f3565b60005b83811015613a9c57815481890152600182019150602081019050613a7d565b838801955050505b50505092915050565b6000613aba60228361453a565b9150613ac58261492c565b604082019050919050565b6000613add60268361453a565b9150613ae88261497b565b604082019050919050565b6000613b00602a8361453a565b9150613b0b826149ca565b604082019050919050565b6000613b2360148361453a565b9150613b2e82614a19565b602082019050919050565b6000613b4660148361453a565b9150613b5182614a42565b602082019050919050565b6000613b6960138361453a565b9150613b7482614a6b565b602082019050919050565b6000613b8c60238361453a565b9150613b9782614a94565b604082019050919050565b6000613baf60258361453a565b9150613bba82614ae3565b604082019050919050565b6000613bd260318361453a565b9150613bdd82614b32565b604082019050919050565b6000613bf5601c8361453a565b9150613c0082614b81565b602082019050919050565b6000613c1860098361453a565b9150613c2382614baa565b602082019050919050565b6000613c3b60398361453a565b9150613c4682614bd3565b604082019050919050565b6000613c5e60188361453a565b9150613c6982614c22565b602082019050919050565b6000613c81602b8361453a565b9150613c8c82614c4b565b604082019050919050565b6000613ca460268361453a565b9150613caf82614c9a565b604082019050919050565b6000613cc760208361453a565b9150613cd282614ce9565b602082019050919050565b6000613cea60098361453a565b9150613cf582614d12565b602082019050919050565b6000613d0d60188361453a565b9150613d1882614d3b565b602082019050919050565b6000613d30602f8361453a565b9150613d3b82614d64565b604082019050919050565b6000613d53601a8361453a565b9150613d5e82614db3565b602082019050919050565b6000613d7660328361453a565b9150613d8182614ddc565b604082019050919050565b6000613d99601d8361453a565b9150613da482614e2b565b602082019050919050565b6000613dbc60228361453a565b9150613dc782614e54565b604082019050919050565b6000613ddf60008361452f565b9150613dea82614ea3565b600082019050919050565b6000613e0260108361453a565b9150613e0d82614ea6565b602082019050919050565b6000613e2560338361453a565b9150613e3082614ecf565b604082019050919050565b6000613e4860218361453a565b9150613e5382614f1e565b604082019050919050565b6000613e6b60288361453a565b9150613e7682614f6d565b604082019050919050565b6000613e8e60138361453a565b9150613e9982614fbc565b602082019050919050565b6000613eb1602e8361453a565b9150613ebc82614fe5565b604082019050919050565b6000613ed4601f8361453a565b9150613edf82615034565b602082019050919050565b6000613ef7602f8361453a565b9150613f028261505d565b604082019050919050565b6000613f1a602d8361453a565b9150613f25826150ac565b604082019050919050565b604082016000820151613f46600085018261395e565b506020820151613f596020850182613f6e565b50505050565b613f68816146d5565b82525050565b613f77816146df565b82525050565b6000613f8982866139fd565b9150613f9582856139fd565b9150613fa18284613a2e565b9150819050949350505050565b6000613fb982613dd2565b9150819050919050565b6000602082019050613fd8600083018461396d565b92915050565b6000608082019050613ff3600083018761396d565b614000602083018661396d565b61400d6040830185613f5f565b818103606083015261401f818461398b565b905095945050505050565b600060208201905061403f600083018461397c565b92915050565b6000602082019050818103600083015261405f81846139c4565b905092915050565b6000602082019050818103600083015261408081613aad565b9050919050565b600060208201905081810360008301526140a081613ad0565b9050919050565b600060208201905081810360008301526140c081613af3565b9050919050565b600060208201905081810360008301526140e081613b16565b9050919050565b6000602082019050818103600083015261410081613b39565b9050919050565b6000602082019050818103600083015261412081613b5c565b9050919050565b6000602082019050818103600083015261414081613b7f565b9050919050565b6000602082019050818103600083015261416081613ba2565b9050919050565b6000602082019050818103600083015261418081613bc5565b9050919050565b600060208201905081810360008301526141a081613be8565b9050919050565b600060208201905081810360008301526141c081613c0b565b9050919050565b600060208201905081810360008301526141e081613c2e565b9050919050565b6000602082019050818103600083015261420081613c51565b9050919050565b6000602082019050818103600083015261422081613c74565b9050919050565b6000602082019050818103600083015261424081613c97565b9050919050565b6000602082019050818103600083015261426081613cba565b9050919050565b6000602082019050818103600083015261428081613cdd565b9050919050565b600060208201905081810360008301526142a081613d00565b9050919050565b600060208201905081810360008301526142c081613d23565b9050919050565b600060208201905081810360008301526142e081613d46565b9050919050565b6000602082019050818103600083015261430081613d69565b9050919050565b6000602082019050818103600083015261432081613d8c565b9050919050565b6000602082019050818103600083015261434081613daf565b9050919050565b6000602082019050818103600083015261436081613df5565b9050919050565b6000602082019050818103600083015261438081613e18565b9050919050565b600060208201905081810360008301526143a081613e3b565b9050919050565b600060208201905081810360008301526143c081613e5e565b9050919050565b600060208201905081810360008301526143e081613e81565b9050919050565b6000602082019050818103600083015261440081613ea4565b9050919050565b6000602082019050818103600083015261442081613ec7565b9050919050565b6000602082019050818103600083015261444081613eea565b9050919050565b6000602082019050818103600083015261446081613f0d565b9050919050565b600060408201905061447c6000830184613f30565b92915050565b60006020820190506144976000830184613f5f565b92915050565b60006144a76144b8565b90506144b38282614767565b919050565b6000604051905090565b600067ffffffffffffffff8211156144dd576144dc6148ce565b5b6144e68261491b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614561826146d5565b915061456c836146d5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145a1576145a0614812565b5b828201905092915050565b60006145b7826146d5565b91506145c2836146d5565b9250826145d2576145d1614841565b5b828204905092915050565b60006145e8826146d5565b91506145f3836146d5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561462c5761462b614812565b5b828202905092915050565b6000614642826146d5565b915061464d836146d5565b9250828210156146605761465f614812565b5b828203905092915050565b6000614676826146b5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614720578082015181840152602081019050614705565b8381111561472f576000848401525b50505050565b6000600282049050600182168061474d57607f821691505b6020821081141561476157614760614870565b5b50919050565b6147708261491b565b810181811067ffffffffffffffff8211171561478f5761478e6148ce565b5b80604052505050565b60006147a3826146d5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147d6576147d5614812565b5b600182019050919050565b60006147ec826146d5565b91506147f7836146d5565b92508261480757614806614841565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000600082015250565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b7f4f4441414320697320736f6c64206f7574212000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f616c6c206f776e657273686970732068617665206265656e2073657400000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4265204f6b6179212e0000000000000000000000000000000000000000000000600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6151048161466b565b811461510f57600080fd5b50565b61511b8161467d565b811461512657600080fd5b50565b61513281614689565b811461513d57600080fd5b50565b615149816146d5565b811461515457600080fd5b5056fea264697066735822122039000a5cce8cdd3e93967cefac516ce2b78afc383d1a8c2975ae9ff06086a8a864736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f516d5634367a59515a376174553136626566596a4879707539754a65734871636145536a6d6279624b7231524c622f

Deployed Bytecode

0x6080604052600436106102465760003560e01c80637d55094d11610139578063c6682862116100b6578063d7224ba01161007a578063d7224ba014610859578063dc33e68114610884578063e268e4d3146108c1578063e985e9c5146108ea578063f2fde38b14610927578063f968adbe1461095057610246565b8063c668286214610772578063c6f6f2161461079d578063c87b56dd146107c6578063d123973014610803578063d5abeb011461082e57610246565b806395d89b41116100fd57806395d89b41146106ae578063a035b1fe146106d9578063a0712d6814610704578063a22cb46514610720578063b88d4fde1461074957610246565b80637d55094d146105dd5780638da5cb5b146105f45780638db89f071461061f57806391b7f5ed146106485780639231ab2a1461067157610246565b80633ccfd60b116101c7578063563aaf111161018b578063563aaf11146104f85780636352211e146105215780636c0360eb1461055e57806370a0823114610589578063715018a6146105c657610246565b80633ccfd60b1461042757806342842e0e1461043e578063453c2310146104675780634f6ccce71461049257806355f804b3146104cf57610246565b8063228025e81161020e578063228025e81461034457806323b872dd1461036d5780632d20fb60146103965780632f745c59146103bf578063333e44e6146103fc57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806318160ddd14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d919061388a565b61097b565b60405161027f919061402a565b60405180910390f35b34801561029457600080fd5b5061029d610ac5565b6040516102aa9190614045565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613931565b610b57565b6040516102e79190613fc3565b60405180910390f35b3480156102fc57600080fd5b506103176004803603810190610312919061384a565b610bdc565b005b34801561032557600080fd5b5061032e610cf5565b60405161033b9190614482565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613931565b610cfe565b005b34801561037957600080fd5b50610394600480360381019061038f9190613734565b610d84565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190613931565b610d94565b005b3480156103cb57600080fd5b506103e660048036038101906103e1919061384a565b610e72565b6040516103f39190614482565b60405180910390f35b34801561040857600080fd5b50610411611064565b60405161041e9190614482565b60405180910390f35b34801561043357600080fd5b5061043c61106a565b005b34801561044a57600080fd5b5061046560048036038101906104609190613734565b611295565b005b34801561047357600080fd5b5061047c6112b5565b6040516104899190614482565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190613931565b6112bb565b6040516104c69190614482565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f191906138e4565b61130e565b005b34801561050457600080fd5b5061051f600480360381019061051a9190613931565b6113a0565b005b34801561052d57600080fd5b5061054860048036038101906105439190613931565b611426565b6040516105559190613fc3565b60405180910390f35b34801561056a57600080fd5b5061057361143c565b6040516105809190614045565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab91906136c7565b6114ca565b6040516105bd9190614482565b60405180910390f35b3480156105d257600080fd5b506105db6115b3565b005b3480156105e957600080fd5b506105f261163b565b005b34801561060057600080fd5b506106096116e3565b6040516106169190613fc3565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190613931565b61170d565b005b34801561065457600080fd5b5061066f600480360381019061066a9190613931565b6117f8565b005b34801561067d57600080fd5b5061069860048036038101906106939190613931565b61187e565b6040516106a59190614467565b60405180910390f35b3480156106ba57600080fd5b506106c3611896565b6040516106d09190614045565b60405180910390f35b3480156106e557600080fd5b506106ee611928565b6040516106fb9190614482565b60405180910390f35b61071e60048036038101906107199190613931565b61192e565b005b34801561072c57600080fd5b506107476004803603810190610742919061380a565b611b84565b005b34801561075557600080fd5b50610770600480360381019061076b9190613787565b611d05565b005b34801561077e57600080fd5b50610787611d61565b6040516107949190614045565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613931565b611def565b005b3480156107d257600080fd5b506107ed60048036038101906107e89190613931565b611e75565b6040516107fa9190614045565b60405180910390f35b34801561080f57600080fd5b50610818611f1f565b604051610825919061402a565b60405180910390f35b34801561083a57600080fd5b50610843611f32565b6040516108509190614482565b60405180910390f35b34801561086557600080fd5b5061086e611f38565b60405161087b9190614482565b60405180910390f35b34801561089057600080fd5b506108ab60048036038101906108a691906136c7565b611f3e565b6040516108b89190614482565b60405180910390f35b3480156108cd57600080fd5b506108e860048036038101906108e39190613931565b611f50565b005b3480156108f657600080fd5b50610911600480360381019061090c91906136f4565b611fd6565b60405161091e919061402a565b60405180910390f35b34801561093357600080fd5b5061094e600480360381019061094991906136c7565b61206a565b005b34801561095c57600080fd5b50610965612162565b6040516109729190614482565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aae57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610abe5750610abd82612168565b5b9050919050565b606060018054610ad490614735565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0090614735565b8015610b4d5780601f10610b2257610100808354040283529160200191610b4d565b820191906000526020600020905b815481529060010190602001808311610b3057829003601f168201915b5050505050905090565b6000610b62826121d2565b610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9890614447565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be782611426565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f90614327565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c776121df565b73ffffffffffffffffffffffffffffffffffffffff161480610ca65750610ca581610ca06121df565b611fd6565b5b610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc906141c7565b60405180910390fd5b610cf08383836121e7565b505050565b60008054905090565b610d066121df565b73ffffffffffffffffffffffffffffffffffffffff16610d246116e3565b73ffffffffffffffffffffffffffffffffffffffff1614610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190614247565b60405180910390fd5b80600f8190555050565b610d8f838383612299565b505050565b610d9c6121df565b73ffffffffffffffffffffffffffffffffffffffff16610dba6116e3565b73ffffffffffffffffffffffffffffffffffffffff1614610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790614247565b60405180910390fd5b60026008541415610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90614407565b60405180910390fd5b6002600881905550610e67816127d9565b600160088190555050565b6000610e7d836114ca565b8210610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590614067565b60405180910390fd5b6000610ec8610cf5565b905060008060005b83811015611022576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fc257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611014578684141561100b57819550505050505061105e565b83806001019450505b508080600101915050610ed0565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611055906143e7565b60405180910390fd5b92915050565b600e5481565b6110726121df565b73ffffffffffffffffffffffffffffffffffffffff166110906116e3565b73ffffffffffffffffffffffffffffffffffffffff16146110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd90614247565b60405180910390fd5b6002600854141561112c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112390614407565b60405180910390fd5b6002600881905550600073ae338070a66fb91d396eb86b805127c37d3f2b7e73ffffffffffffffffffffffffffffffffffffffff166064601e4761117091906145dd565b61117a91906145ac565b60405161118690613fae565b60006040518083038185875af1925050503d80600081146111c3576040519150601f19603f3d011682016040523d82523d6000602084013e6111c8565b606091505b50509050806111d657600080fd5b60006111e06116e3565b73ffffffffffffffffffffffffffffffffffffffff164760405161120390613fae565b60006040518083038185875af1925050503d8060008114611240576040519150601f19603f3d011682016040523d82523d6000602084013e611245565b606091505b5050905080611289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128090614347565b60405180910390fd5b50506001600881905550565b6112b083838360405180602001604052806000815250611d05565b505050565b600d5481565b60006112c5610cf5565b8210611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd90614127565b60405180910390fd5b819050919050565b6113166121df565b73ffffffffffffffffffffffffffffffffffffffff166113346116e3565b73ffffffffffffffffffffffffffffffffffffffff161461138a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138190614247565b60405180910390fd5b81816009919061139b9291906134bb565b505050565b6113a86121df565b73ffffffffffffffffffffffffffffffffffffffff166113c66116e3565b73ffffffffffffffffffffffffffffffffffffffff161461141c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141390614247565b60405180910390fd5b80600e8190555050565b600061143182612a0b565b600001519050919050565b6009805461144990614735565b80601f016020809104026020016040519081016040528092919081815260200182805461147590614735565b80156114c25780601f10611497576101008083540402835291602001916114c2565b820191906000526020600020905b8154815290600101906020018083116114a557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561153b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153290614207565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6115bb6121df565b73ffffffffffffffffffffffffffffffffffffffff166115d96116e3565b73ffffffffffffffffffffffffffffffffffffffff161461162f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162690614247565b60405180910390fd5b6116396000612ba5565b565b6116436121df565b73ffffffffffffffffffffffffffffffffffffffff166116616116e3565b73ffffffffffffffffffffffffffffffffffffffff16146116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae90614247565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117156121df565b73ffffffffffffffffffffffffffffffffffffffff166117336116e3565b73ffffffffffffffffffffffffffffffffffffffff1614611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090614247565b60405180910390fd5b6001600f546117989190614556565b816117a1610cf5565b6117ab9190614556565b106117eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e2906141a7565b60405180910390fd5b6117f53382612c6b565b50565b6118006121df565b73ffffffffffffffffffffffffffffffffffffffff1661181e6116e3565b73ffffffffffffffffffffffffffffffffffffffff1614611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90614247565b60405180910390fd5b80600b8190555050565b611886613541565b61188f82612a0b565b9050919050565b6060600280546118a590614735565b80601f01602080910402602001604051908101604052809291908181526020018280546118d190614735565b801561191e5780601f106118f35761010080835404028352916020019161191e565b820191906000526020600020905b81548152906001019060200180831161190157829003601f168201915b5050505050905090565b600b5481565b6000600b5490506001600e546119449190614556565b8261194d610cf5565b6119579190614556565b101561196257600090505b808261196e91906145dd565b34146119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a690614307565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1490614267565b60405180910390fd5b6001600f54611a2c9190614556565b82611a35610cf5565b611a3f9190614556565b10611a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7690614107565b60405180910390fd5b601160009054906101000a900460ff16611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac590614287565b60405180910390fd5b600d5482611adb33611f3e565b611ae59190614556565b1115611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d906140e7565b60405180910390fd5b6001600c54611b359190614556565b8210611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d906143c7565b60405180910390fd5b611b803383612c6b565b5050565b611b8c6121df565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf1906142c7565b60405180910390fd5b8060066000611c076121df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cb46121df565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cf9919061402a565b60405180910390a35050565b611d10848484612299565b611d1c84848484612c89565b611d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5290614367565b60405180910390fd5b50505050565b600a8054611d6e90614735565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9a90614735565b8015611de75780601f10611dbc57610100808354040283529160200191611de7565b820191906000526020600020905b815481529060010190602001808311611dca57829003601f168201915b505050505081565b611df76121df565b73ffffffffffffffffffffffffffffffffffffffff16611e156116e3565b73ffffffffffffffffffffffffffffffffffffffff1614611e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6290614247565b60405180910390fd5b80600c8190555050565b6060611e80826121d2565b611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb6906142a7565b60405180910390fd5b6000611ec9612e20565b90506000815111611ee95760405180602001604052806000815250611f17565b80611ef384612eb2565b600a604051602001611f0793929190613f7d565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b600f5481565b60105481565b6000611f4982613013565b9050919050565b611f586121df565b73ffffffffffffffffffffffffffffffffffffffff16611f766116e3565b73ffffffffffffffffffffffffffffffffffffffff1614611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390614247565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120726121df565b73ffffffffffffffffffffffffffffffffffffffff166120906116e3565b73ffffffffffffffffffffffffffffffffffffffff16146120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dd90614247565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214d90614087565b60405180910390fd5b61215f81612ba5565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006122a482612a0b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166122cb6121df565b73ffffffffffffffffffffffffffffffffffffffff16148061232757506122f06121df565b73ffffffffffffffffffffffffffffffffffffffff1661230f84610b57565b73ffffffffffffffffffffffffffffffffffffffff16145b806123435750612342826000015161233d6121df565b611fd6565b5b905080612385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237c906142e7565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146123f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ee90614227565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245e90614147565b60405180910390fd5b61247485858560016130fc565b61248460008484600001516121e7565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612769576126c8816121d2565b156127685782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127d28585856001613102565b5050505050565b600081141561281d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612814906141e7565b60405180910390fd5b600080541415612862576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612859906140c7565b60405180910390fd5b6000601054905060005481106128ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a490614187565b60405180910390fd5b600060018383010390506000546001820111156128cd5760016000540390505b60008290505b8181116129fb57600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129ee57600061295082612a0b565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b80806001019150506128d3565b5060018101601081905550505050565b612a13613541565b612a1c826121d2565b612a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a52906140a7565b60405180910390fd5b60008290505b60008110612b64576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b55578092505050612ba0565b50808060019003915050612a61565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9790614427565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c85828260405180602001604052806000815250613108565b5050565b6000612caa8473ffffffffffffffffffffffffffffffffffffffff1661311a565b15612e13578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cd36121df565b8786866040518563ffffffff1660e01b8152600401612cf59493929190613fde565b602060405180830381600087803b158015612d0f57600080fd5b505af1925050508015612d4057506040513d601f19601f82011682018060405250810190612d3d91906138b7565b60015b612dc3573d8060008114612d70576040519150601f19603f3d011682016040523d82523d6000602084013e612d75565b606091505b50600081511415612dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db290614367565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e18565b600190505b949350505050565b606060098054612e2f90614735565b80601f0160208091040260200160405190810160405280929190818152602001828054612e5b90614735565b8015612ea85780601f10612e7d57610100808354040283529160200191612ea8565b820191906000526020600020905b815481529060010190602001808311612e8b57829003601f168201915b5050505050905090565b60606000821415612efa576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061300e565b600082905060005b60008214612f2c578080612f1590614798565b915050600a82612f2591906145ac565b9150612f02565b60008167ffffffffffffffff811115612f4857612f476148ce565b5b6040519080825280601f01601f191660200182016040528015612f7a5781602001600182028036833780820191505090505b5090505b6000851461300757600182612f939190614637565b9150600a85612fa291906147e1565b6030612fae9190614556565b60f81b818381518110612fc457612fc361489f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561300091906145ac565b9450612f7e565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307b90614167565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b613115838383600161313d565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156131b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131aa90614387565b60405180910390fd5b60008414156131f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ee906143a7565b60405180910390fd5b61320460008683876130fc565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561349e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613489576134496000888488612c89565b613488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347f90614367565b60405180910390fd5b5b818060010192505080806001019150506133d2565b5080600081905550506134b46000868387613102565b5050505050565b8280546134c790614735565b90600052602060002090601f0160209004810192826134e95760008555613530565b82601f1061350257803560ff1916838001178555613530565b82800160010185558215613530579182015b8281111561352f578235825591602001919060010190613514565b5b50905061353d919061357b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561359457600081600090555060010161357c565b5090565b60006135ab6135a6846144c2565b61449d565b9050828152602081018484840111156135c7576135c661490c565b5b6135d28482856146f3565b509392505050565b6000813590506135e9816150fb565b92915050565b6000813590506135fe81615112565b92915050565b60008135905061361381615129565b92915050565b60008151905061362881615129565b92915050565b600082601f83011261364357613642614902565b5b8135613653848260208601613598565b91505092915050565b60008083601f84011261367257613671614902565b5b8235905067ffffffffffffffff81111561368f5761368e6148fd565b5b6020830191508360018202830111156136ab576136aa614907565b5b9250929050565b6000813590506136c181615140565b92915050565b6000602082840312156136dd576136dc614916565b5b60006136eb848285016135da565b91505092915050565b6000806040838503121561370b5761370a614916565b5b6000613719858286016135da565b925050602061372a858286016135da565b9150509250929050565b60008060006060848603121561374d5761374c614916565b5b600061375b868287016135da565b935050602061376c868287016135da565b925050604061377d868287016136b2565b9150509250925092565b600080600080608085870312156137a1576137a0614916565b5b60006137af878288016135da565b94505060206137c0878288016135da565b93505060406137d1878288016136b2565b925050606085013567ffffffffffffffff8111156137f2576137f1614911565b5b6137fe8782880161362e565b91505092959194509250565b6000806040838503121561382157613820614916565b5b600061382f858286016135da565b9250506020613840858286016135ef565b9150509250929050565b6000806040838503121561386157613860614916565b5b600061386f858286016135da565b9250506020613880858286016136b2565b9150509250929050565b6000602082840312156138a05761389f614916565b5b60006138ae84828501613604565b91505092915050565b6000602082840312156138cd576138cc614916565b5b60006138db84828501613619565b91505092915050565b600080602083850312156138fb576138fa614916565b5b600083013567ffffffffffffffff81111561391957613918614911565b5b6139258582860161365c565b92509250509250929050565b60006020828403121561394757613946614916565b5b6000613955848285016136b2565b91505092915050565b6139678161466b565b82525050565b6139768161466b565b82525050565b6139858161467d565b82525050565b600061399682614508565b6139a0818561451e565b93506139b0818560208601614702565b6139b98161491b565b840191505092915050565b60006139cf82614513565b6139d9818561453a565b93506139e9818560208601614702565b6139f28161491b565b840191505092915050565b6000613a0882614513565b613a12818561454b565b9350613a22818560208601614702565b80840191505092915050565b60008154613a3b81614735565b613a45818661454b565b94506001821660008114613a605760018114613a7157613aa4565b60ff19831686528186019350613aa4565b613a7a856144f3565b60005b83811015613a9c57815481890152600182019150602081019050613a7d565b838801955050505b50505092915050565b6000613aba60228361453a565b9150613ac58261492c565b604082019050919050565b6000613add60268361453a565b9150613ae88261497b565b604082019050919050565b6000613b00602a8361453a565b9150613b0b826149ca565b604082019050919050565b6000613b2360148361453a565b9150613b2e82614a19565b602082019050919050565b6000613b4660148361453a565b9150613b5182614a42565b602082019050919050565b6000613b6960138361453a565b9150613b7482614a6b565b602082019050919050565b6000613b8c60238361453a565b9150613b9782614a94565b604082019050919050565b6000613baf60258361453a565b9150613bba82614ae3565b604082019050919050565b6000613bd260318361453a565b9150613bdd82614b32565b604082019050919050565b6000613bf5601c8361453a565b9150613c0082614b81565b602082019050919050565b6000613c1860098361453a565b9150613c2382614baa565b602082019050919050565b6000613c3b60398361453a565b9150613c4682614bd3565b604082019050919050565b6000613c5e60188361453a565b9150613c6982614c22565b602082019050919050565b6000613c81602b8361453a565b9150613c8c82614c4b565b604082019050919050565b6000613ca460268361453a565b9150613caf82614c9a565b604082019050919050565b6000613cc760208361453a565b9150613cd282614ce9565b602082019050919050565b6000613cea60098361453a565b9150613cf582614d12565b602082019050919050565b6000613d0d60188361453a565b9150613d1882614d3b565b602082019050919050565b6000613d30602f8361453a565b9150613d3b82614d64565b604082019050919050565b6000613d53601a8361453a565b9150613d5e82614db3565b602082019050919050565b6000613d7660328361453a565b9150613d8182614ddc565b604082019050919050565b6000613d99601d8361453a565b9150613da482614e2b565b602082019050919050565b6000613dbc60228361453a565b9150613dc782614e54565b604082019050919050565b6000613ddf60008361452f565b9150613dea82614ea3565b600082019050919050565b6000613e0260108361453a565b9150613e0d82614ea6565b602082019050919050565b6000613e2560338361453a565b9150613e3082614ecf565b604082019050919050565b6000613e4860218361453a565b9150613e5382614f1e565b604082019050919050565b6000613e6b60288361453a565b9150613e7682614f6d565b604082019050919050565b6000613e8e60138361453a565b9150613e9982614fbc565b602082019050919050565b6000613eb1602e8361453a565b9150613ebc82614fe5565b604082019050919050565b6000613ed4601f8361453a565b9150613edf82615034565b602082019050919050565b6000613ef7602f8361453a565b9150613f028261505d565b604082019050919050565b6000613f1a602d8361453a565b9150613f25826150ac565b604082019050919050565b604082016000820151613f46600085018261395e565b506020820151613f596020850182613f6e565b50505050565b613f68816146d5565b82525050565b613f77816146df565b82525050565b6000613f8982866139fd565b9150613f9582856139fd565b9150613fa18284613a2e565b9150819050949350505050565b6000613fb982613dd2565b9150819050919050565b6000602082019050613fd8600083018461396d565b92915050565b6000608082019050613ff3600083018761396d565b614000602083018661396d565b61400d6040830185613f5f565b818103606083015261401f818461398b565b905095945050505050565b600060208201905061403f600083018461397c565b92915050565b6000602082019050818103600083015261405f81846139c4565b905092915050565b6000602082019050818103600083015261408081613aad565b9050919050565b600060208201905081810360008301526140a081613ad0565b9050919050565b600060208201905081810360008301526140c081613af3565b9050919050565b600060208201905081810360008301526140e081613b16565b9050919050565b6000602082019050818103600083015261410081613b39565b9050919050565b6000602082019050818103600083015261412081613b5c565b9050919050565b6000602082019050818103600083015261414081613b7f565b9050919050565b6000602082019050818103600083015261416081613ba2565b9050919050565b6000602082019050818103600083015261418081613bc5565b9050919050565b600060208201905081810360008301526141a081613be8565b9050919050565b600060208201905081810360008301526141c081613c0b565b9050919050565b600060208201905081810360008301526141e081613c2e565b9050919050565b6000602082019050818103600083015261420081613c51565b9050919050565b6000602082019050818103600083015261422081613c74565b9050919050565b6000602082019050818103600083015261424081613c97565b9050919050565b6000602082019050818103600083015261426081613cba565b9050919050565b6000602082019050818103600083015261428081613cdd565b9050919050565b600060208201905081810360008301526142a081613d00565b9050919050565b600060208201905081810360008301526142c081613d23565b9050919050565b600060208201905081810360008301526142e081613d46565b9050919050565b6000602082019050818103600083015261430081613d69565b9050919050565b6000602082019050818103600083015261432081613d8c565b9050919050565b6000602082019050818103600083015261434081613daf565b9050919050565b6000602082019050818103600083015261436081613df5565b9050919050565b6000602082019050818103600083015261438081613e18565b9050919050565b600060208201905081810360008301526143a081613e3b565b9050919050565b600060208201905081810360008301526143c081613e5e565b9050919050565b600060208201905081810360008301526143e081613e81565b9050919050565b6000602082019050818103600083015261440081613ea4565b9050919050565b6000602082019050818103600083015261442081613ec7565b9050919050565b6000602082019050818103600083015261444081613eea565b9050919050565b6000602082019050818103600083015261446081613f0d565b9050919050565b600060408201905061447c6000830184613f30565b92915050565b60006020820190506144976000830184613f5f565b92915050565b60006144a76144b8565b90506144b38282614767565b919050565b6000604051905090565b600067ffffffffffffffff8211156144dd576144dc6148ce565b5b6144e68261491b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614561826146d5565b915061456c836146d5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145a1576145a0614812565b5b828201905092915050565b60006145b7826146d5565b91506145c2836146d5565b9250826145d2576145d1614841565b5b828204905092915050565b60006145e8826146d5565b91506145f3836146d5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561462c5761462b614812565b5b828202905092915050565b6000614642826146d5565b915061464d836146d5565b9250828210156146605761465f614812565b5b828203905092915050565b6000614676826146b5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614720578082015181840152602081019050614705565b8381111561472f576000848401525b50505050565b6000600282049050600182168061474d57607f821691505b6020821081141561476157614760614870565b5b50919050565b6147708261491b565b810181811067ffffffffffffffff8211171561478f5761478e6148ce565b5b80604052505050565b60006147a3826146d5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147d6576147d5614812565b5b600182019050919050565b60006147ec826146d5565b91506147f7836146d5565b92508261480757614806614841565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000600082015250565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b7f4f4441414320697320736f6c64206f7574212000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f616c6c206f776e657273686970732068617665206265656e2073657400000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4265204f6b6179212e0000000000000000000000000000000000000000000000600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6151048161466b565b811461510f57600080fd5b50565b61511b8161467d565b811461512657600080fd5b50565b61513281614689565b811461513d57600080fd5b50565b615149816146d5565b811461515457600080fd5b5056fea264697066735822122039000a5cce8cdd3e93967cefac516ce2b78afc383d1a8c2975ae9ff06086a8a864736f6c63430008070033

Deployed Bytecode Sourcemap

50164:4628:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37024:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38910:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40472:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39993:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35281:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52755:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41348:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53295:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35945:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50521:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52967:322;;;;;;;;;;;;;:::i;:::-;;41589:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50473:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35458:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52245:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52435:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38719:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50223:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37460:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10416:103;;;;;;;;;;;;;:::i;:::-;;52041:85;;;;;;;;;;;;;:::i;:::-;;9765:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51341:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52347:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53419:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39079:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50368:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50757:578;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40758:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41845:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50327:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52539:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51508:527;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50672:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50571:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50622:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52132:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52639:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41117:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10674:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50425:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37024:372;37126:4;37178:25;37163:40;;;:11;:40;;;;:105;;;;37235:33;37220:48;;;:11;:48;;;;37163:105;:172;;;;37300:35;37285:50;;;:11;:50;;;;37163:172;:225;;;;37352:36;37376:11;37352:23;:36::i;:::-;37163:225;37143:245;;37024:372;;;:::o;38910:100::-;38964:13;38997:5;38990:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38910:100;:::o;40472:214::-;40540:7;40568:16;40576:7;40568;:16::i;:::-;40560:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;40654:15;:24;40670:7;40654:24;;;;;;;;;;;;;;;;;;;;;40647:31;;40472:214;;;:::o;39993:413::-;40066:13;40082:24;40098:7;40082:15;:24::i;:::-;40066:40;;40131:5;40125:11;;:2;:11;;;;40117:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40226:5;40210:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;40235:37;40252:5;40259:12;:10;:12::i;:::-;40235:16;:37::i;:::-;40210:62;40188:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40370:28;40379:2;40383:7;40392:5;40370:8;:28::i;:::-;40055:351;39993:413;;:::o;35281:100::-;35334:7;35361:12;;35354:19;;35281:100;:::o;52755:98::-;9996:12;:10;:12::i;:::-;9985:23;;:7;:5;:7::i;:::-;:23;;;9977:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52837:10:::1;52825:9;:22;;;;52755:98:::0;:::o;41348:170::-;41482:28;41492:4;41498:2;41502:7;41482:9;:28::i;:::-;41348:170;;;:::o;53295:118::-;9996:12;:10;:12::i;:::-;9985:23;;:7;:5;:7::i;:::-;:23;;;9977:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4739:1:::1;5337:7;;:19;;5329:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4739:1;5470:7;:18;;;;53379:28:::2;53398:8;53379:18;:28::i;:::-;4695:1:::1;5649:7;:22;;;;53295:118:::0;:::o;35945:1007::-;36034:7;36070:16;36080:5;36070:9;:16::i;:::-;36062:5;:24;36054:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36136:22;36161:13;:11;:13::i;:::-;36136:38;;36185:19;36215:25;36404:9;36399:466;36419:14;36415:1;:18;36399:466;;;36459:31;36493:11;:14;36505:1;36493:14;;;;;;;;;;;36459:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36556:1;36530:28;;:9;:14;;;:28;;;36526:111;;36603:9;:14;;;36583:34;;36526:111;36680:5;36659:26;;:17;:26;;;36655:195;;;36729:5;36714:11;:20;36710:85;;;36770:1;36763:8;;;;;;;;;36710:85;36817:13;;;;;;;36655:195;36440:425;36435:3;;;;;;;36399:466;;;;36888:56;;;;;;;;;;:::i;:::-;;;;;;;;35945:1007;;;;;:::o;50521:45::-;;;;:::o;52967:322::-;9996:12;:10;:12::i;:::-;9985:23;;:7;:5;:7::i;:::-;:23;;;9977:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4739:1:::1;5337:7;;:19;;5329:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4739:1;5470:7;:18;;;;53027:7:::2;53048:42;53040:56;;53133:3;53128:2;53104:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;53040:101;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53026:115;;;53156:2;53148:11;;;::::0;::::2;;53167:12;53193:7;:5;:7::i;:::-;53185:21;;53214;53185:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53166:74;;;53255:7;53247:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;53019:270;;4695:1:::1;5649:7;:22;;;;52967:322::o:0;41589:185::-;41727:39;41744:4;41750:2;41754:7;41727:39;;;;;;;;;;;;:16;:39::i;:::-;41589:185;;;:::o;50473:43::-;;;;:::o;35458:187::-;35525:7;35561:13;:11;:13::i;:::-;35553:5;:21;35545:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;35632:5;35625:12;;35458:187;;;:::o;52245:96::-;9996:12;:10;:12::i;:::-;9985:23;;:7;:5;:7::i;:::-;:23;;;9977:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52327:8:::1;;52317:7;:18;;;;;;;:::i;:::-;;52245:96:::0;;:::o;52435:98::-;9996:12;:10;:12::i;:::-;9985:23;;:7;:5;:7::i;:::-;:23;;;9977:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52517:10:::1;52505:9;:22;;;;52435:98:::0;:::o;38719:124::-;38783:7;38810:20;38822:7;38810:11;:20::i;:::-;:25;;;38803:32;;38719:124;;;:::o;50223:99::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37460:221::-;37524:7;37569:1;37552:19;;:5;:19;;;;37544:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;37645:12;:19;37658:5;37645:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;37637:36;;37630:43;;37460:221;;;:::o;10416:103::-;9996:12;:10;:12::i;:::-;9985:23;;:7;:5;:7::i;:::-;:23;;;9977:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10481:30:::1;10508:1;10481:18;:30::i;:::-;10416:103::o:0;52041:85::-;9996:12;:10;:12::i;:::-;9985:23;;:7;:5;:7::i;:::-;:23;;;9977:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52109:11:::1;;;;;;;;;;;52108:12;52094:11;;:26;;;;;;;;;;;;;;;;;;52041:85::o:0;9765:87::-;9811:7;9838:6;;;;;;;;;;;9831:13;;9765:87;:::o;51341:163::-;9996:12;:10;:12::i;:::-;9985:23;;:7;:5;:7::i;:::-;:23;;;9977:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51449:1:::1;51437:9;;:13;;;;:::i;:::-;51431:3;51415:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;51407:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;51472:26;51482:10;51494:3;51472:9;:26::i;:::-;51341:163:::0;:::o;52347:82::-;9996:12;:10;:12::i;:::-;9985:23;;:7;:5;:7::i;:::-;:23;;;9977:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52417:6:::1;52409:5;:14;;;;52347:82:::0;:::o;53419:132::-;53485:21;;:::i;:::-;53525:20;53537:7;53525:11;:20::i;:::-;53518:27;;53419:132;;;:::o;39079:104::-;39135:13;39168:7;39161:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39079:104;:::o;50368:52::-;;;;:::o;50757:578::-;50811:9;50823:5;;50811:17;;50872:1;50860:9;;:13;;;;:::i;:::-;50854:3;50838:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;50835:65;;;50891:1;50884:8;;50835:65;50935:4;50929:3;:10;;;;:::i;:::-;50916:9;:23;50908:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;51001:9;50987:23;;:10;:23;;;50979:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;51072:1;51060:9;;:13;;;;:::i;:::-;51054:3;51038:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;51030:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;51111:11;;;;;;;;;;;51103:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;51200:12;;51193:3;51166:24;51179:10;51166:12;:24::i;:::-;:30;;;;:::i;:::-;:46;;51158:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;51269:1;51258:8;;:12;;;;:::i;:::-;51252:3;:18;51243:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;51303:26;51313:10;51325:3;51303:9;:26::i;:::-;50804:531;50757:578;:::o;40758:288::-;40865:12;:10;:12::i;:::-;40853:24;;:8;:24;;;;40845:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40966:8;40921:18;:32;40940:12;:10;:12::i;:::-;40921:32;;;;;;;;;;;;;;;:42;40954:8;40921:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41019:8;40990:48;;41005:12;:10;:12::i;:::-;40990:48;;;41029:8;40990:48;;;;;;:::i;:::-;;;;;;;;40758:288;;:::o;41845:355::-;42004:28;42014:4;42020:2;42024:7;42004:9;:28::i;:::-;42065:48;42088:4;42094:2;42098:7;42107:5;42065:22;:48::i;:::-;42043:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;41845:355;;;;:::o;50327:36::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52539:94::-;9996:12;:10;:12::i;:::-;9985:23;;:7;:5;:7::i;:::-;:23;;;9977:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52618:9:::1;52607:8;:20;;;;52539:94:::0;:::o;51508:527::-;51573:13;51611:16;51619:7;51611;:16::i;:::-;51595:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;51801:28;51832:10;:8;:10::i;:::-;51801:41;;51895:1;51870:14;51864:28;:32;:156;;;;;;;;;;;;;;;;;51940:14;51956:25;51973:7;51956:16;:25::i;:::-;51983:13;51923:74;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51864:156;51857:163;;;51508:527;;;:::o;50672:32::-;;;;;;;;;;;;;:::o;50571:46::-;;;;:::o;50622:45::-;;;;:::o;52132:107::-;52190:7;52213:20;52227:5;52213:13;:20::i;:::-;52206:27;;52132:107;;;:::o;52639:110::-;9996:12;:10;:12::i;:::-;9985:23;;:7;:5;:7::i;:::-;:23;;;9977:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52730:13:::1;52715:12;:28;;;;52639:110:::0;:::o;41117:164::-;41214:4;41238:18;:25;41257:5;41238:25;;;;;;;;;;;;;;;:35;41264:8;41238:35;;;;;;;;;;;;;;;;;;;;;;;;;41231:42;;41117:164;;;;:::o;10674:201::-;9996:12;:10;:12::i;:::-;9985:23;;:7;:5;:7::i;:::-;:23;;;9977:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10783:1:::1;10763:22;;:8;:22;;;;10755:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10839:28;10858:8;10839:18;:28::i;:::-;10674:201:::0;:::o;50425:43::-;;;;:::o;26544:157::-;26629:4;26668:25;26653:40;;;:11;:40;;;;26646:47;;26544:157;;;:::o;42455:111::-;42512:4;42546:12;;42536:7;:22;42529:29;;42455:111;;;:::o;8489:98::-;8542:7;8569:10;8562:17;;8489:98;:::o;47375:196::-;47517:2;47490:15;:24;47506:7;47490:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47555:7;47551:2;47535:28;;47544:5;47535:28;;;;;;;;;;;;47375:196;;;:::o;45255:2002::-;45370:35;45408:20;45420:7;45408:11;:20::i;:::-;45370:58;;45441:22;45483:13;:18;;;45467:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;45542:12;:10;:12::i;:::-;45518:36;;:20;45530:7;45518:11;:20::i;:::-;:36;;;45467:87;:154;;;;45571:50;45588:13;:18;;;45608:12;:10;:12::i;:::-;45571:16;:50::i;:::-;45467:154;45441:181;;45643:17;45635:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45758:4;45736:26;;:13;:18;;;:26;;;45728:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45838:1;45824:16;;:2;:16;;;;45816:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;45895:43;45917:4;45923:2;45927:7;45936:1;45895:21;:43::i;:::-;46003:49;46020:1;46024:7;46033:13;:18;;;46003:8;:49::i;:::-;46378:1;46348:12;:18;46361:4;46348:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46422:1;46394:12;:16;46407:2;46394:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46468:2;46440:11;:20;46452:7;46440:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;46530:15;46485:11;:20;46497:7;46485:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;46798:19;46830:1;46820:7;:11;46798:33;;46891:1;46850:43;;:11;:24;46862:11;46850:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;46846:295;;;46918:20;46926:11;46918:7;:20::i;:::-;46914:212;;;46995:13;:18;;;46963:11;:24;46975:11;46963:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;47078:13;:28;;;47036:11;:24;47048:11;47036:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;46914:212;46846:295;46323:829;47188:7;47184:2;47169:27;;47178:4;47169:27;;;;;;;;;;;;47207:42;47228:4;47234:2;47238:7;47247:1;47207:20;:42::i;:::-;45359:1898;;45255:2002;;;:::o;53659:1130::-;53743:1;53731:8;:13;;53723:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;53806:1;53790:12;;:17;;53782:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;53841:33;53877:24;;53841:60;;53946:12;;53918:25;:40;53910:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;54129:16;54187:1;54176:8;54148:25;:36;:40;54129:59;;54281:12;;54277:1;54266:8;:12;:27;54262:91;;;54338:1;54323:12;;:16;54312:27;;54262:91;54372:9;54384:25;54372:37;;54367:354;54416:8;54411:1;:13;54367:354;;54483:1;54452:33;;:11;:14;54464:1;54452:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;54448:260;;;54508:31;54542:14;54554:1;54542:11;:14::i;:::-;54508:48;;54599:9;:14;;;54577:11;:14;54589:1;54577:14;;;;;;;;;;;:19;;;:36;;;;;;;;;;;;;;;;;;54666:9;:24;;;54634:11;:14;54646:1;54634:14;;;;;;;;;;;:29;;;:56;;;;;;;;;;;;;;;;;;54487:221;54448:260;54426:3;;;;;;;54367:354;;;;54773:1;54762:8;:12;54735:24;:39;;;;54106:678;53714:1075;53659:1130;:::o;38120:537::-;38181:21;;:::i;:::-;38223:16;38231:7;38223;:16::i;:::-;38215:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38329:12;38344:7;38329:22;;38324:245;38361:1;38353:4;:9;38324:245;;38391:31;38425:11;:17;38437:4;38425:17;;;;;;;;;;;38391:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38491:1;38465:28;;:9;:14;;;:28;;;38461:93;;38525:9;38518:16;;;;;;38461:93;38372:197;38364:6;;;;;;;;38324:245;;;;38592:57;;;;;;;;;;:::i;:::-;;;;;;;;38120:537;;;;:::o;11035:191::-;11109:16;11128:6;;;;;;;;;;;11109:25;;11154:8;11145:6;;:17;;;;;;;;;;;;;;;;;;11209:8;11178:40;;11199:8;11178:40;;;;;;;;;;;;11098:128;11035:191;:::o;42574:104::-;42643:27;42653:2;42657:8;42643:27;;;;;;;;;;;;:9;:27::i;:::-;42574:104;;:::o;48136:804::-;48291:4;48312:15;:2;:13;;;:15::i;:::-;48308:625;;;48364:2;48348:36;;;48385:12;:10;:12::i;:::-;48399:4;48405:7;48414:5;48348:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48344:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48611:1;48594:6;:13;:18;48590:273;;;48637:61;;;;;;;;;;:::i;:::-;;;;;;;;48590:273;48813:6;48807:13;48798:6;48794:2;48790:15;48783:38;48344:534;48481:45;;;48471:55;;;:6;:55;;;;48464:62;;;;;48308:625;48917:4;48910:11;;48136:804;;;;;;;:::o;52859:102::-;52919:13;52948:7;52941:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52859:102;:::o;6051:723::-;6107:13;6337:1;6328:5;:10;6324:53;;;6355:10;;;;;;;;;;;;;;;;;;;;;6324:53;6387:12;6402:5;6387:20;;6418:14;6443:78;6458:1;6450:4;:9;6443:78;;6476:8;;;;;:::i;:::-;;;;6507:2;6499:10;;;;;:::i;:::-;;;6443:78;;;6531:19;6563:6;6553:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6531:39;;6581:154;6597:1;6588:5;:10;6581:154;;6625:1;6615:11;;;;;:::i;:::-;;;6692:2;6684:5;:10;;;;:::i;:::-;6671:2;:24;;;;:::i;:::-;6658:39;;6641:6;6648;6641:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6721:2;6712:11;;;;;:::i;:::-;;;6581:154;;;6759:6;6745:21;;;;;6051:723;;;;:::o;37689:229::-;37750:7;37795:1;37778:19;;:5;:19;;;;37770:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;37877:12;:19;37890:5;37877:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;37869:41;;37862:48;;37689:229;;;:::o;49428:159::-;;;;;:::o;49999:158::-;;;;;:::o;43041:163::-;43164:32;43170:2;43174:8;43184:5;43191:4;43164:5;:32::i;:::-;43041:163;;;:::o;12466:326::-;12526:4;12783:1;12761:7;:19;;;:23;12754:30;;12466:326;;;:::o;43463:1538::-;43602:20;43625:12;;43602:35;;43670:1;43656:16;;:2;:16;;;;43648:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;43741:1;43729:8;:13;;43721:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43800:61;43830:1;43834:2;43838:12;43852:8;43800:21;:61::i;:::-;44175:8;44139:12;:16;44152:2;44139:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44240:8;44199:12;:16;44212:2;44199:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44299:2;44266:11;:25;44278:12;44266:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44366:15;44316:11;:25;44328:12;44316:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44399:20;44422:12;44399:35;;44456:9;44451:415;44471:8;44467:1;:12;44451:415;;;44535:12;44531:2;44510:38;;44527:1;44510:38;;;;;;;;;;;;44571:4;44567:249;;;44634:59;44665:1;44669:2;44673:12;44687:5;44634:22;:59::i;:::-;44600:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;44567:249;44836:14;;;;;;;44481:3;;;;;;;44451:415;;;;44897:12;44882;:27;;;;44114:807;44933:60;44962:1;44966:2;44970:12;44984:8;44933:20;:60::i;:::-;43591:1410;43463:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;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:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:108::-;7050:24;7068:5;7050:24;:::i;:::-;7045:3;7038:37;6973:108;;:::o;7087:118::-;7174:24;7192:5;7174:24;:::i;:::-;7169:3;7162:37;7087:118;;:::o;7211:109::-;7292:21;7307:5;7292:21;:::i;:::-;7287:3;7280:34;7211:109;;:::o;7326:360::-;7412:3;7440:38;7472:5;7440:38;:::i;:::-;7494:70;7557:6;7552:3;7494:70;:::i;:::-;7487:77;;7573:52;7618:6;7613:3;7606:4;7599:5;7595:16;7573:52;:::i;:::-;7650:29;7672:6;7650:29;:::i;:::-;7645:3;7641:39;7634:46;;7416:270;7326:360;;;;:::o;7692:364::-;7780:3;7808:39;7841:5;7808:39;:::i;:::-;7863:71;7927:6;7922:3;7863:71;:::i;:::-;7856:78;;7943:52;7988:6;7983:3;7976:4;7969:5;7965:16;7943:52;:::i;:::-;8020:29;8042:6;8020:29;:::i;:::-;8015:3;8011:39;8004:46;;7784:272;7692:364;;;;:::o;8062:377::-;8168:3;8196:39;8229:5;8196:39;:::i;:::-;8251:89;8333:6;8328:3;8251:89;:::i;:::-;8244:96;;8349:52;8394:6;8389:3;8382:4;8375:5;8371:16;8349:52;:::i;:::-;8426:6;8421:3;8417:16;8410:23;;8172:267;8062:377;;;;:::o;8469:845::-;8572:3;8609:5;8603:12;8638:36;8664:9;8638:36;:::i;:::-;8690:89;8772:6;8767:3;8690:89;:::i;:::-;8683:96;;8810:1;8799:9;8795:17;8826:1;8821:137;;;;8972:1;8967:341;;;;8788:520;;8821:137;8905:4;8901:9;8890;8886:25;8881:3;8874:38;8941:6;8936:3;8932:16;8925:23;;8821:137;;8967:341;9034:38;9066:5;9034:38;:::i;:::-;9094:1;9108:154;9122:6;9119:1;9116:13;9108:154;;;9196:7;9190:14;9186:1;9181:3;9177:11;9170:35;9246:1;9237:7;9233:15;9222:26;;9144:4;9141:1;9137:12;9132:17;;9108:154;;;9291:6;9286:3;9282:16;9275:23;;8974:334;;8788:520;;8576:738;;8469:845;;;;:::o;9320:366::-;9462:3;9483:67;9547:2;9542:3;9483:67;:::i;:::-;9476:74;;9559:93;9648:3;9559:93;:::i;:::-;9677:2;9672:3;9668:12;9661:19;;9320:366;;;:::o;9692:::-;9834:3;9855:67;9919:2;9914:3;9855:67;:::i;:::-;9848:74;;9931:93;10020:3;9931:93;:::i;:::-;10049:2;10044:3;10040:12;10033:19;;9692:366;;;:::o;10064:::-;10206:3;10227:67;10291:2;10286:3;10227:67;:::i;:::-;10220:74;;10303:93;10392:3;10303:93;:::i;:::-;10421:2;10416:3;10412:12;10405:19;;10064:366;;;:::o;10436:::-;10578:3;10599:67;10663:2;10658:3;10599:67;:::i;:::-;10592:74;;10675:93;10764:3;10675:93;:::i;:::-;10793:2;10788:3;10784:12;10777:19;;10436:366;;;:::o;10808:::-;10950:3;10971:67;11035:2;11030:3;10971:67;:::i;:::-;10964:74;;11047:93;11136:3;11047:93;:::i;:::-;11165:2;11160:3;11156:12;11149:19;;10808:366;;;:::o;11180:::-;11322:3;11343:67;11407:2;11402:3;11343:67;:::i;:::-;11336:74;;11419:93;11508:3;11419:93;:::i;:::-;11537:2;11532:3;11528:12;11521:19;;11180:366;;;:::o;11552:::-;11694:3;11715:67;11779:2;11774:3;11715:67;:::i;:::-;11708:74;;11791:93;11880:3;11791:93;:::i;:::-;11909:2;11904:3;11900:12;11893:19;;11552:366;;;:::o;11924:::-;12066:3;12087:67;12151:2;12146:3;12087:67;:::i;:::-;12080:74;;12163:93;12252:3;12163:93;:::i;:::-;12281:2;12276:3;12272:12;12265:19;;11924:366;;;:::o;12296:::-;12438:3;12459:67;12523:2;12518:3;12459:67;:::i;:::-;12452:74;;12535:93;12624:3;12535:93;:::i;:::-;12653:2;12648:3;12644:12;12637:19;;12296:366;;;:::o;12668:::-;12810:3;12831:67;12895:2;12890:3;12831:67;:::i;:::-;12824:74;;12907:93;12996:3;12907:93;:::i;:::-;13025:2;13020:3;13016:12;13009:19;;12668:366;;;:::o;13040:365::-;13182:3;13203:66;13267:1;13262:3;13203:66;:::i;:::-;13196:73;;13278:93;13367:3;13278:93;:::i;:::-;13396:2;13391:3;13387:12;13380:19;;13040:365;;;:::o;13411:366::-;13553:3;13574:67;13638:2;13633:3;13574:67;:::i;:::-;13567:74;;13650:93;13739:3;13650:93;:::i;:::-;13768:2;13763:3;13759:12;13752:19;;13411:366;;;:::o;13783:::-;13925:3;13946:67;14010:2;14005:3;13946:67;:::i;:::-;13939:74;;14022:93;14111:3;14022:93;:::i;:::-;14140:2;14135:3;14131:12;14124:19;;13783:366;;;:::o;14155:::-;14297:3;14318:67;14382:2;14377:3;14318:67;:::i;:::-;14311:74;;14394:93;14483:3;14394:93;:::i;:::-;14512:2;14507:3;14503:12;14496:19;;14155:366;;;:::o;14527:::-;14669:3;14690:67;14754:2;14749:3;14690:67;:::i;:::-;14683:74;;14766:93;14855:3;14766:93;:::i;:::-;14884:2;14879:3;14875:12;14868:19;;14527:366;;;:::o;14899:::-;15041:3;15062:67;15126:2;15121:3;15062:67;:::i;:::-;15055:74;;15138:93;15227:3;15138:93;:::i;:::-;15256:2;15251:3;15247:12;15240:19;;14899:366;;;:::o;15271:365::-;15413:3;15434:66;15498:1;15493:3;15434:66;:::i;:::-;15427:73;;15509:93;15598:3;15509:93;:::i;:::-;15627:2;15622:3;15618:12;15611:19;;15271:365;;;:::o;15642:366::-;15784:3;15805:67;15869:2;15864:3;15805:67;:::i;:::-;15798:74;;15881:93;15970:3;15881:93;:::i;:::-;15999:2;15994:3;15990:12;15983:19;;15642:366;;;:::o;16014:::-;16156:3;16177:67;16241:2;16236:3;16177:67;:::i;:::-;16170:74;;16253:93;16342:3;16253:93;:::i;:::-;16371:2;16366:3;16362:12;16355:19;;16014:366;;;:::o;16386:::-;16528:3;16549:67;16613:2;16608:3;16549:67;:::i;:::-;16542:74;;16625:93;16714:3;16625:93;:::i;:::-;16743:2;16738:3;16734:12;16727:19;;16386:366;;;:::o;16758:::-;16900:3;16921:67;16985:2;16980:3;16921:67;:::i;:::-;16914:74;;16997:93;17086:3;16997:93;:::i;:::-;17115:2;17110:3;17106:12;17099:19;;16758:366;;;:::o;17130:::-;17272:3;17293:67;17357:2;17352:3;17293:67;:::i;:::-;17286:74;;17369:93;17458:3;17369:93;:::i;:::-;17487:2;17482:3;17478:12;17471:19;;17130:366;;;:::o;17502:::-;17644:3;17665:67;17729:2;17724:3;17665:67;:::i;:::-;17658:74;;17741:93;17830:3;17741:93;:::i;:::-;17859:2;17854:3;17850:12;17843:19;;17502:366;;;:::o;17874:398::-;18033:3;18054:83;18135:1;18130:3;18054:83;:::i;:::-;18047:90;;18146:93;18235:3;18146:93;:::i;:::-;18264:1;18259:3;18255:11;18248:18;;17874:398;;;:::o;18278:366::-;18420:3;18441:67;18505:2;18500:3;18441:67;:::i;:::-;18434:74;;18517:93;18606:3;18517:93;:::i;:::-;18635:2;18630:3;18626:12;18619:19;;18278:366;;;:::o;18650:::-;18792:3;18813:67;18877:2;18872:3;18813:67;:::i;:::-;18806:74;;18889:93;18978:3;18889:93;:::i;:::-;19007:2;19002:3;18998:12;18991:19;;18650:366;;;:::o;19022:::-;19164:3;19185:67;19249:2;19244:3;19185:67;:::i;:::-;19178:74;;19261:93;19350:3;19261:93;:::i;:::-;19379:2;19374:3;19370:12;19363:19;;19022:366;;;:::o;19394:::-;19536:3;19557:67;19621:2;19616:3;19557:67;:::i;:::-;19550:74;;19633:93;19722:3;19633:93;:::i;:::-;19751:2;19746:3;19742:12;19735:19;;19394:366;;;:::o;19766:::-;19908:3;19929:67;19993:2;19988:3;19929:67;:::i;:::-;19922:74;;20005:93;20094:3;20005:93;:::i;:::-;20123:2;20118:3;20114:12;20107:19;;19766:366;;;:::o;20138:::-;20280:3;20301:67;20365:2;20360:3;20301:67;:::i;:::-;20294:74;;20377:93;20466:3;20377:93;:::i;:::-;20495:2;20490:3;20486:12;20479:19;;20138:366;;;:::o;20510:::-;20652:3;20673:67;20737:2;20732:3;20673:67;:::i;:::-;20666:74;;20749:93;20838:3;20749:93;:::i;:::-;20867:2;20862:3;20858:12;20851:19;;20510:366;;;:::o;20882:::-;21024:3;21045:67;21109:2;21104:3;21045:67;:::i;:::-;21038:74;;21121:93;21210:3;21121:93;:::i;:::-;21239:2;21234:3;21230:12;21223:19;;20882:366;;;:::o;21254:::-;21396:3;21417:67;21481:2;21476:3;21417:67;:::i;:::-;21410:74;;21493:93;21582:3;21493:93;:::i;:::-;21611:2;21606:3;21602:12;21595:19;;21254:366;;;:::o;21696:529::-;21857:4;21852:3;21848:14;21944:4;21937:5;21933:16;21927:23;21963:63;22020:4;22015:3;22011:14;21997:12;21963:63;:::i;:::-;21872:164;22128:4;22121:5;22117:16;22111:23;22147:61;22202:4;22197:3;22193:14;22179:12;22147:61;:::i;:::-;22046:172;21826:399;21696:529;;:::o;22231:118::-;22318:24;22336:5;22318:24;:::i;:::-;22313:3;22306:37;22231:118;;:::o;22355:105::-;22430:23;22447:5;22430:23;:::i;:::-;22425:3;22418:36;22355:105;;:::o;22466:589::-;22691:3;22713:95;22804:3;22795:6;22713:95;:::i;:::-;22706:102;;22825:95;22916:3;22907:6;22825:95;:::i;:::-;22818:102;;22937:92;23025:3;23016:6;22937:92;:::i;:::-;22930:99;;23046:3;23039:10;;22466:589;;;;;;:::o;23061:379::-;23245:3;23267:147;23410:3;23267:147;:::i;:::-;23260:154;;23431:3;23424:10;;23061:379;;;:::o;23446:222::-;23539:4;23577:2;23566:9;23562:18;23554:26;;23590:71;23658:1;23647:9;23643:17;23634:6;23590:71;:::i;:::-;23446:222;;;;:::o;23674:640::-;23869:4;23907:3;23896:9;23892:19;23884:27;;23921:71;23989:1;23978:9;23974:17;23965:6;23921:71;:::i;:::-;24002:72;24070:2;24059:9;24055:18;24046:6;24002:72;:::i;:::-;24084;24152:2;24141:9;24137:18;24128:6;24084:72;:::i;:::-;24203:9;24197:4;24193:20;24188:2;24177:9;24173:18;24166:48;24231:76;24302:4;24293:6;24231:76;:::i;:::-;24223:84;;23674:640;;;;;;;:::o;24320:210::-;24407:4;24445:2;24434:9;24430:18;24422:26;;24458:65;24520:1;24509:9;24505:17;24496:6;24458:65;:::i;:::-;24320:210;;;;:::o;24536:313::-;24649:4;24687:2;24676:9;24672:18;24664:26;;24736:9;24730:4;24726:20;24722:1;24711:9;24707:17;24700:47;24764:78;24837:4;24828:6;24764:78;:::i;:::-;24756:86;;24536:313;;;;:::o;24855:419::-;25021:4;25059:2;25048:9;25044:18;25036:26;;25108:9;25102:4;25098:20;25094:1;25083:9;25079:17;25072:47;25136:131;25262:4;25136:131;:::i;:::-;25128:139;;24855:419;;;:::o;25280:::-;25446:4;25484:2;25473:9;25469:18;25461:26;;25533:9;25527:4;25523:20;25519:1;25508:9;25504:17;25497:47;25561:131;25687:4;25561:131;:::i;:::-;25553:139;;25280:419;;;:::o;25705:::-;25871:4;25909:2;25898:9;25894:18;25886:26;;25958:9;25952:4;25948:20;25944:1;25933:9;25929:17;25922:47;25986:131;26112:4;25986:131;:::i;:::-;25978:139;;25705:419;;;:::o;26130:::-;26296:4;26334:2;26323:9;26319:18;26311:26;;26383:9;26377:4;26373:20;26369:1;26358:9;26354:17;26347:47;26411:131;26537:4;26411:131;:::i;:::-;26403:139;;26130:419;;;:::o;26555:::-;26721:4;26759:2;26748:9;26744:18;26736:26;;26808:9;26802:4;26798:20;26794:1;26783:9;26779:17;26772:47;26836:131;26962:4;26836:131;:::i;:::-;26828:139;;26555:419;;;:::o;26980:::-;27146:4;27184:2;27173:9;27169:18;27161:26;;27233:9;27227:4;27223:20;27219:1;27208:9;27204:17;27197:47;27261:131;27387:4;27261:131;:::i;:::-;27253:139;;26980:419;;;:::o;27405:::-;27571:4;27609:2;27598:9;27594:18;27586:26;;27658:9;27652:4;27648:20;27644:1;27633:9;27629:17;27622:47;27686:131;27812:4;27686:131;:::i;:::-;27678:139;;27405:419;;;:::o;27830:::-;27996:4;28034:2;28023:9;28019:18;28011:26;;28083:9;28077:4;28073:20;28069:1;28058:9;28054:17;28047:47;28111:131;28237:4;28111:131;:::i;:::-;28103:139;;27830:419;;;:::o;28255:::-;28421:4;28459:2;28448:9;28444:18;28436:26;;28508:9;28502:4;28498:20;28494:1;28483:9;28479:17;28472:47;28536:131;28662:4;28536:131;:::i;:::-;28528:139;;28255:419;;;:::o;28680:::-;28846:4;28884:2;28873:9;28869:18;28861:26;;28933:9;28927:4;28923:20;28919:1;28908:9;28904:17;28897:47;28961:131;29087:4;28961:131;:::i;:::-;28953:139;;28680:419;;;:::o;29105:::-;29271:4;29309:2;29298:9;29294:18;29286:26;;29358:9;29352:4;29348:20;29344:1;29333:9;29329:17;29322:47;29386:131;29512:4;29386:131;:::i;:::-;29378:139;;29105:419;;;:::o;29530:::-;29696:4;29734:2;29723:9;29719:18;29711:26;;29783:9;29777:4;29773:20;29769:1;29758:9;29754:17;29747:47;29811:131;29937:4;29811:131;:::i;:::-;29803:139;;29530:419;;;:::o;29955:::-;30121:4;30159:2;30148:9;30144:18;30136:26;;30208:9;30202:4;30198:20;30194:1;30183:9;30179:17;30172:47;30236:131;30362:4;30236:131;:::i;:::-;30228:139;;29955:419;;;:::o;30380:::-;30546:4;30584:2;30573:9;30569:18;30561:26;;30633:9;30627:4;30623:20;30619:1;30608:9;30604:17;30597:47;30661:131;30787:4;30661:131;:::i;:::-;30653:139;;30380:419;;;:::o;30805:::-;30971:4;31009:2;30998:9;30994:18;30986:26;;31058:9;31052:4;31048:20;31044:1;31033:9;31029:17;31022:47;31086:131;31212:4;31086:131;:::i;:::-;31078:139;;30805:419;;;:::o;31230:::-;31396:4;31434:2;31423:9;31419:18;31411:26;;31483:9;31477:4;31473:20;31469:1;31458:9;31454:17;31447:47;31511:131;31637:4;31511:131;:::i;:::-;31503:139;;31230:419;;;:::o;31655:::-;31821:4;31859:2;31848:9;31844:18;31836:26;;31908:9;31902:4;31898:20;31894:1;31883:9;31879:17;31872:47;31936:131;32062:4;31936:131;:::i;:::-;31928:139;;31655:419;;;:::o;32080:::-;32246:4;32284:2;32273:9;32269:18;32261:26;;32333:9;32327:4;32323:20;32319:1;32308:9;32304:17;32297:47;32361:131;32487:4;32361:131;:::i;:::-;32353:139;;32080:419;;;:::o;32505:::-;32671:4;32709:2;32698:9;32694:18;32686:26;;32758:9;32752:4;32748:20;32744:1;32733:9;32729:17;32722:47;32786:131;32912:4;32786:131;:::i;:::-;32778:139;;32505:419;;;:::o;32930:::-;33096:4;33134:2;33123:9;33119:18;33111:26;;33183:9;33177:4;33173:20;33169:1;33158:9;33154:17;33147:47;33211:131;33337:4;33211:131;:::i;:::-;33203:139;;32930:419;;;:::o;33355:::-;33521:4;33559:2;33548:9;33544:18;33536:26;;33608:9;33602:4;33598:20;33594:1;33583:9;33579:17;33572:47;33636:131;33762:4;33636:131;:::i;:::-;33628:139;;33355:419;;;:::o;33780:::-;33946:4;33984:2;33973:9;33969:18;33961:26;;34033:9;34027:4;34023:20;34019:1;34008:9;34004:17;33997:47;34061:131;34187:4;34061:131;:::i;:::-;34053:139;;33780:419;;;:::o;34205:::-;34371:4;34409:2;34398:9;34394:18;34386:26;;34458:9;34452:4;34448:20;34444:1;34433:9;34429:17;34422:47;34486:131;34612:4;34486:131;:::i;:::-;34478:139;;34205:419;;;:::o;34630:::-;34796:4;34834:2;34823:9;34819:18;34811:26;;34883:9;34877:4;34873:20;34869:1;34858:9;34854:17;34847:47;34911:131;35037:4;34911:131;:::i;:::-;34903:139;;34630:419;;;:::o;35055:::-;35221:4;35259:2;35248:9;35244:18;35236:26;;35308:9;35302:4;35298:20;35294:1;35283:9;35279:17;35272:47;35336:131;35462:4;35336:131;:::i;:::-;35328:139;;35055:419;;;:::o;35480:::-;35646:4;35684:2;35673:9;35669:18;35661:26;;35733:9;35727:4;35723:20;35719:1;35708:9;35704:17;35697:47;35761:131;35887:4;35761:131;:::i;:::-;35753:139;;35480:419;;;:::o;35905:::-;36071:4;36109:2;36098:9;36094:18;36086:26;;36158:9;36152:4;36148:20;36144:1;36133:9;36129:17;36122:47;36186:131;36312:4;36186:131;:::i;:::-;36178:139;;35905:419;;;:::o;36330:::-;36496:4;36534:2;36523:9;36519:18;36511:26;;36583:9;36577:4;36573:20;36569:1;36558:9;36554:17;36547:47;36611:131;36737:4;36611:131;:::i;:::-;36603:139;;36330:419;;;:::o;36755:::-;36921:4;36959:2;36948:9;36944:18;36936:26;;37008:9;37002:4;36998:20;36994:1;36983:9;36979:17;36972:47;37036:131;37162:4;37036:131;:::i;:::-;37028:139;;36755:419;;;:::o;37180:::-;37346:4;37384:2;37373:9;37369:18;37361:26;;37433:9;37427:4;37423:20;37419:1;37408:9;37404:17;37397:47;37461:131;37587:4;37461:131;:::i;:::-;37453:139;;37180:419;;;:::o;37605:::-;37771:4;37809:2;37798:9;37794:18;37786:26;;37858:9;37852:4;37848:20;37844:1;37833:9;37829:17;37822:47;37886:131;38012:4;37886:131;:::i;:::-;37878:139;;37605:419;;;:::o;38030:::-;38196:4;38234:2;38223:9;38219:18;38211:26;;38283:9;38277:4;38273:20;38269:1;38258:9;38254:17;38247:47;38311:131;38437:4;38311:131;:::i;:::-;38303:139;;38030:419;;;:::o;38455:350::-;38612:4;38650:2;38639:9;38635:18;38627:26;;38663:135;38795:1;38784:9;38780:17;38771:6;38663:135;:::i;:::-;38455:350;;;;:::o;38811:222::-;38904:4;38942:2;38931:9;38927:18;38919:26;;38955:71;39023:1;39012:9;39008:17;38999:6;38955:71;:::i;:::-;38811:222;;;;:::o;39039:129::-;39073:6;39100:20;;:::i;:::-;39090:30;;39129:33;39157:4;39149:6;39129:33;:::i;:::-;39039:129;;;:::o;39174:75::-;39207:6;39240:2;39234:9;39224:19;;39174:75;:::o;39255:307::-;39316:4;39406:18;39398:6;39395:30;39392:56;;;39428:18;;:::i;:::-;39392:56;39466:29;39488:6;39466:29;:::i;:::-;39458:37;;39550:4;39544;39540:15;39532:23;;39255:307;;;:::o;39568:141::-;39617:4;39640:3;39632:11;;39663:3;39660:1;39653:14;39697:4;39694:1;39684:18;39676:26;;39568:141;;;:::o;39715:98::-;39766:6;39800:5;39794:12;39784:22;;39715:98;;;:::o;39819:99::-;39871:6;39905:5;39899:12;39889:22;;39819:99;;;:::o;39924:168::-;40007:11;40041:6;40036:3;40029:19;40081:4;40076:3;40072:14;40057:29;;39924:168;;;;:::o;40098:147::-;40199:11;40236:3;40221:18;;40098:147;;;;:::o;40251:169::-;40335:11;40369:6;40364:3;40357:19;40409:4;40404:3;40400:14;40385:29;;40251:169;;;;:::o;40426:148::-;40528:11;40565:3;40550:18;;40426:148;;;;:::o;40580:305::-;40620:3;40639:20;40657:1;40639:20;:::i;:::-;40634:25;;40673:20;40691:1;40673:20;:::i;:::-;40668:25;;40827:1;40759:66;40755:74;40752:1;40749:81;40746:107;;;40833:18;;:::i;:::-;40746:107;40877:1;40874;40870:9;40863:16;;40580:305;;;;:::o;40891:185::-;40931:1;40948:20;40966:1;40948:20;:::i;:::-;40943:25;;40982:20;41000:1;40982:20;:::i;:::-;40977:25;;41021:1;41011:35;;41026:18;;:::i;:::-;41011:35;41068:1;41065;41061:9;41056:14;;40891:185;;;;:::o;41082:348::-;41122:7;41145:20;41163:1;41145:20;:::i;:::-;41140:25;;41179:20;41197:1;41179:20;:::i;:::-;41174:25;;41367:1;41299:66;41295:74;41292:1;41289:81;41284:1;41277:9;41270:17;41266:105;41263:131;;;41374:18;;:::i;:::-;41263:131;41422:1;41419;41415:9;41404:20;;41082:348;;;;:::o;41436:191::-;41476:4;41496:20;41514:1;41496:20;:::i;:::-;41491:25;;41530:20;41548:1;41530:20;:::i;:::-;41525:25;;41569:1;41566;41563:8;41560:34;;;41574:18;;:::i;:::-;41560:34;41619:1;41616;41612:9;41604:17;;41436:191;;;;:::o;41633:96::-;41670:7;41699:24;41717:5;41699:24;:::i;:::-;41688:35;;41633:96;;;:::o;41735:90::-;41769:7;41812:5;41805:13;41798:21;41787:32;;41735:90;;;:::o;41831:149::-;41867:7;41907:66;41900:5;41896:78;41885:89;;41831:149;;;:::o;41986:126::-;42023:7;42063:42;42056:5;42052:54;42041:65;;41986:126;;;:::o;42118:77::-;42155:7;42184:5;42173:16;;42118:77;;;:::o;42201:101::-;42237:7;42277:18;42270:5;42266:30;42255:41;;42201:101;;;:::o;42308:154::-;42392:6;42387:3;42382;42369:30;42454:1;42445:6;42440:3;42436:16;42429:27;42308:154;;;:::o;42468:307::-;42536:1;42546:113;42560:6;42557:1;42554:13;42546:113;;;42645:1;42640:3;42636:11;42630:18;42626:1;42621:3;42617:11;42610:39;42582:2;42579:1;42575:10;42570:15;;42546:113;;;42677:6;42674:1;42671:13;42668:101;;;42757:1;42748:6;42743:3;42739:16;42732:27;42668:101;42517:258;42468:307;;;:::o;42781:320::-;42825:6;42862:1;42856:4;42852:12;42842:22;;42909:1;42903:4;42899:12;42930:18;42920:81;;42986:4;42978:6;42974:17;42964:27;;42920:81;43048:2;43040:6;43037:14;43017:18;43014:38;43011:84;;;43067:18;;:::i;:::-;43011:84;42832:269;42781:320;;;:::o;43107:281::-;43190:27;43212:4;43190:27;:::i;:::-;43182:6;43178:40;43320:6;43308:10;43305:22;43284:18;43272:10;43269:34;43266:62;43263:88;;;43331:18;;:::i;:::-;43263:88;43371:10;43367:2;43360:22;43150:238;43107:281;;:::o;43394:233::-;43433:3;43456:24;43474:5;43456:24;:::i;:::-;43447:33;;43502:66;43495:5;43492:77;43489:103;;;43572:18;;:::i;:::-;43489:103;43619:1;43612:5;43608:13;43601:20;;43394:233;;;:::o;43633:176::-;43665:1;43682:20;43700:1;43682:20;:::i;:::-;43677:25;;43716:20;43734:1;43716:20;:::i;:::-;43711:25;;43755:1;43745:35;;43760:18;;:::i;:::-;43745:35;43801:1;43798;43794:9;43789:14;;43633:176;;;;:::o;43815:180::-;43863:77;43860:1;43853:88;43960:4;43957:1;43950:15;43984:4;43981:1;43974:15;44001:180;44049:77;44046:1;44039:88;44146:4;44143:1;44136:15;44170:4;44167:1;44160:15;44187:180;44235:77;44232:1;44225:88;44332:4;44329:1;44322:15;44356:4;44353:1;44346:15;44373:180;44421:77;44418:1;44411:88;44518:4;44515:1;44508:15;44542:4;44539:1;44532:15;44559:180;44607:77;44604:1;44597:88;44704:4;44701:1;44694:15;44728:4;44725:1;44718:15;44745:117;44854:1;44851;44844:12;44868:117;44977:1;44974;44967:12;44991:117;45100:1;45097;45090:12;45114:117;45223:1;45220;45213:12;45237:117;45346:1;45343;45336:12;45360:117;45469:1;45466;45459:12;45483:102;45524:6;45575:2;45571:7;45566:2;45559:5;45555:14;45551:28;45541:38;;45483:102;;;:::o;45591:221::-;45731:34;45727:1;45719:6;45715:14;45708:58;45800:4;45795:2;45787:6;45783:15;45776:29;45591:221;:::o;45818:225::-;45958:34;45954:1;45946:6;45942:14;45935:58;46027:8;46022:2;46014:6;46010:15;46003:33;45818:225;:::o;46049:229::-;46189:34;46185:1;46177:6;46173:14;46166:58;46258:12;46253:2;46245:6;46241:15;46234:37;46049:229;:::o;46284:170::-;46424:22;46420:1;46412:6;46408:14;46401:46;46284:170;:::o;46460:::-;46600:22;46596:1;46588:6;46584:14;46577:46;46460:170;:::o;46636:169::-;46776:21;46772:1;46764:6;46760:14;46753:45;46636:169;:::o;46811:222::-;46951:34;46947:1;46939:6;46935:14;46928:58;47020:5;47015:2;47007:6;47003:15;46996:30;46811:222;:::o;47039:224::-;47179:34;47175:1;47167:6;47163:14;47156:58;47248:7;47243:2;47235:6;47231:15;47224:32;47039:224;:::o;47269:236::-;47409:34;47405:1;47397:6;47393:14;47386:58;47478:19;47473:2;47465:6;47461:15;47454:44;47269:236;:::o;47511:178::-;47651:30;47647:1;47639:6;47635:14;47628:54;47511:178;:::o;47695:159::-;47835:11;47831:1;47823:6;47819:14;47812:35;47695:159;:::o;47860:244::-;48000:34;47996:1;47988:6;47984:14;47977:58;48069:27;48064:2;48056:6;48052:15;48045:52;47860:244;:::o;48110:174::-;48250:26;48246:1;48238:6;48234:14;48227:50;48110:174;:::o;48290:230::-;48430:34;48426:1;48418:6;48414:14;48407:58;48499:13;48494:2;48486:6;48482:15;48475:38;48290:230;:::o;48526:225::-;48666:34;48662:1;48654:6;48650:14;48643:58;48735:8;48730:2;48722:6;48718:15;48711:33;48526:225;:::o;48757:182::-;48897:34;48893:1;48885:6;48881:14;48874:58;48757:182;:::o;48945:159::-;49085:11;49081:1;49073:6;49069:14;49062:35;48945:159;:::o;49110:174::-;49250:26;49246:1;49238:6;49234:14;49227:50;49110:174;:::o;49290:234::-;49430:34;49426:1;49418:6;49414:14;49407:58;49499:17;49494:2;49486:6;49482:15;49475:42;49290:234;:::o;49530:176::-;49670:28;49666:1;49658:6;49654:14;49647:52;49530:176;:::o;49712:237::-;49852:34;49848:1;49840:6;49836:14;49829:58;49921:20;49916:2;49908:6;49904:15;49897:45;49712:237;:::o;49955:179::-;50095:31;50091:1;50083:6;50079:14;50072:55;49955:179;:::o;50140:221::-;50280:34;50276:1;50268:6;50264:14;50257:58;50349:4;50344:2;50336:6;50332:15;50325:29;50140:221;:::o;50367:114::-;;:::o;50487:166::-;50627:18;50623:1;50615:6;50611:14;50604:42;50487:166;:::o;50659:238::-;50799:34;50795:1;50787:6;50783:14;50776:58;50868:21;50863:2;50855:6;50851:15;50844:46;50659:238;:::o;50903:220::-;51043:34;51039:1;51031:6;51027:14;51020:58;51112:3;51107:2;51099:6;51095:15;51088:28;50903:220;:::o;51129:227::-;51269:34;51265:1;51257:6;51253:14;51246:58;51338:10;51333:2;51325:6;51321:15;51314:35;51129:227;:::o;51362:169::-;51502:21;51498:1;51490:6;51486:14;51479:45;51362:169;:::o;51537:233::-;51677:34;51673:1;51665:6;51661:14;51654:58;51746:16;51741:2;51733:6;51729:15;51722:41;51537:233;:::o;51776:181::-;51916:33;51912:1;51904:6;51900:14;51893:57;51776:181;:::o;51963:234::-;52103:34;52099:1;52091:6;52087:14;52080:58;52172:17;52167:2;52159:6;52155:15;52148:42;51963:234;:::o;52203:232::-;52343:34;52339:1;52331:6;52327:14;52320:58;52412:15;52407:2;52399:6;52395:15;52388:40;52203:232;:::o;52441:122::-;52514:24;52532:5;52514:24;:::i;:::-;52507:5;52504:35;52494:63;;52553:1;52550;52543:12;52494:63;52441:122;:::o;52569:116::-;52639:21;52654:5;52639:21;:::i;:::-;52632:5;52629:32;52619:60;;52675:1;52672;52665:12;52619:60;52569:116;:::o;52691:120::-;52763:23;52780:5;52763:23;:::i;:::-;52756:5;52753:34;52743:62;;52801:1;52798;52791:12;52743:62;52691:120;:::o;52817:122::-;52890:24;52908:5;52890:24;:::i;:::-;52883:5;52880:35;52870:63;;52929:1;52926;52919:12;52870:63;52817:122;:::o

Swarm Source

ipfs://39000a5cce8cdd3e93967cefac516ce2b78afc383d1a8c2975ae9ff06086a8a8
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.