ERC-721
Overview
Max Total Supply
4,475 QQLYC
Holders
99
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
75 QQLYCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
QQLYC
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-22 */ /** *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 QQLYC is ERC721A, Ownable, ReentrancyGuard { string public baseURI="https://ipfs.io/ipfs/QmeJ8aBk9tViYo3XNWHwxFDVXToWHN6vjoUQNSeD4ZLZQL/"; string public baseExtension= ".json"; uint public price = 0.001 ether; uint public maxPerTx = 15; uint public maxPerWallet = 1000; uint public totalFree = 0; uint public maxSupply = 10000; uint public nextOwnerToExplicitlySet; bool public mintEnabled; constructor() ERC721A("QQLYC", "QQLYC"){} 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," QQLYC!."); require(totalSupply() + amt < maxSupply + 1,"QQLYC 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(0xDB1cFd82f6ca625Df9A3Cc4a52Aca21127a0e065).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
- No Contract Security Audit Submitted- Submit Audit Here
[{"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"}]
Contract Creation Code
6080604052604051806080016040528060448152602001620055016044913960099080519060200190620000359291906200024f565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a9080519060200190620000839291906200024f565b5066038d7ea4c68000600b55600f600c556103e8600d556000600e55612710600f55348015620000b257600080fd5b506040518060400160405280600581526020017f51514c59430000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f51514c59430000000000000000000000000000000000000000000000000000008152508160019080519060200190620001379291906200024f565b508060029080519060200190620001509291906200024f565b50505062000173620001676200018160201b60201c565b6200018960201b60201c565b600160088190555062000364565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025d90620002ff565b90600052602060002090601f016020900481019282620002815760008555620002cd565b82601f106200029c57805160ff1916838001178555620002cd565b82800160010185558215620002cd579182015b82811115620002cc578251825591602001919060010190620002af565b5b509050620002dc9190620002e0565b5090565b5b80821115620002fb576000816000905550600101620002e1565b5090565b600060028204905060018216806200031857607f821691505b602082108114156200032f576200032e62000335565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61518d80620003746000396000f3fe6080604052600436106102465760003560e01c80637d55094d11610139578063c6682862116100b6578063d7224ba01161007a578063d7224ba014610859578063dc33e68114610884578063e268e4d3146108c1578063e985e9c5146108ea578063f2fde38b14610927578063f968adbe1461095057610246565b8063c668286214610772578063c6f6f2161461079d578063c87b56dd146107c6578063d123973014610803578063d5abeb011461082e57610246565b806395d89b41116100fd57806395d89b41146106ae578063a035b1fe146106d9578063a0712d6814610704578063a22cb46514610720578063b88d4fde1461074957610246565b80637d55094d146105dd5780638da5cb5b146105f45780638db89f071461061f57806391b7f5ed146106485780639231ab2a1461067157610246565b80633ccfd60b116101c7578063563aaf111161018b578063563aaf11146104f85780636352211e146105215780636c0360eb1461055e57806370a0823114610589578063715018a6146105c657610246565b80633ccfd60b1461042757806342842e0e1461043e578063453c2310146104675780634f6ccce71461049257806355f804b3146104cf57610246565b8063228025e81161020e578063228025e81461034457806323b872dd1461036d5780632d20fb60146103965780632f745c59146103bf578063333e44e6146103fc57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806318160ddd14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d919061388a565b61097b565b60405161027f919061402a565b60405180910390f35b34801561029457600080fd5b5061029d610ac5565b6040516102aa9190614045565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613931565b610b57565b6040516102e79190613fc3565b60405180910390f35b3480156102fc57600080fd5b506103176004803603810190610312919061384a565b610bdc565b005b34801561032557600080fd5b5061032e610cf5565b60405161033b9190614482565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613931565b610cfe565b005b34801561037957600080fd5b50610394600480360381019061038f9190613734565b610d84565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190613931565b610d94565b005b3480156103cb57600080fd5b506103e660048036038101906103e1919061384a565b610e72565b6040516103f39190614482565b60405180910390f35b34801561040857600080fd5b50610411611064565b60405161041e9190614482565b60405180910390f35b34801561043357600080fd5b5061043c61106a565b005b34801561044a57600080fd5b5061046560048036038101906104609190613734565b611295565b005b34801561047357600080fd5b5061047c6112b5565b6040516104899190614482565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190613931565b6112bb565b6040516104c69190614482565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f191906138e4565b61130e565b005b34801561050457600080fd5b5061051f600480360381019061051a9190613931565b6113a0565b005b34801561052d57600080fd5b5061054860048036038101906105439190613931565b611426565b6040516105559190613fc3565b60405180910390f35b34801561056a57600080fd5b5061057361143c565b6040516105809190614045565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab91906136c7565b6114ca565b6040516105bd9190614482565b60405180910390f35b3480156105d257600080fd5b506105db6115b3565b005b3480156105e957600080fd5b506105f261163b565b005b34801561060057600080fd5b506106096116e3565b6040516106169190613fc3565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190613931565b61170d565b005b34801561065457600080fd5b5061066f600480360381019061066a9190613931565b6117f8565b005b34801561067d57600080fd5b5061069860048036038101906106939190613931565b61187e565b6040516106a59190614467565b60405180910390f35b3480156106ba57600080fd5b506106c3611896565b6040516106d09190614045565b60405180910390f35b3480156106e557600080fd5b506106ee611928565b6040516106fb9190614482565b60405180910390f35b61071e60048036038101906107199190613931565b61192e565b005b34801561072c57600080fd5b506107476004803603810190610742919061380a565b611b84565b005b34801561075557600080fd5b50610770600480360381019061076b9190613787565b611d05565b005b34801561077e57600080fd5b50610787611d61565b6040516107949190614045565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613931565b611def565b005b3480156107d257600080fd5b506107ed60048036038101906107e89190613931565b611e75565b6040516107fa9190614045565b60405180910390f35b34801561080f57600080fd5b50610818611f1f565b604051610825919061402a565b60405180910390f35b34801561083a57600080fd5b50610843611f32565b6040516108509190614482565b60405180910390f35b34801561086557600080fd5b5061086e611f38565b60405161087b9190614482565b60405180910390f35b34801561089057600080fd5b506108ab60048036038101906108a691906136c7565b611f3e565b6040516108b89190614482565b60405180910390f35b3480156108cd57600080fd5b506108e860048036038101906108e39190613931565b611f50565b005b3480156108f657600080fd5b50610911600480360381019061090c91906136f4565b611fd6565b60405161091e919061402a565b60405180910390f35b34801561093357600080fd5b5061094e600480360381019061094991906136c7565b61206a565b005b34801561095c57600080fd5b50610965612162565b6040516109729190614482565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aae57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610abe5750610abd82612168565b5b9050919050565b606060018054610ad490614735565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0090614735565b8015610b4d5780601f10610b2257610100808354040283529160200191610b4d565b820191906000526020600020905b815481529060010190602001808311610b3057829003601f168201915b5050505050905090565b6000610b62826121d2565b610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9890614427565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be782611426565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f90614307565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c776121df565b73ffffffffffffffffffffffffffffffffffffffff161480610ca65750610ca581610ca06121df565b611fd6565b5b610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc906141c7565b60405180910390fd5b610cf08383836121e7565b505050565b60008054905090565b610d066121df565b73ffffffffffffffffffffffffffffffffffffffff16610d246116e3565b73ffffffffffffffffffffffffffffffffffffffff1614610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190614247565b60405180910390fd5b80600f8190555050565b610d8f838383612299565b505050565b610d9c6121df565b73ffffffffffffffffffffffffffffffffffffffff16610dba6116e3565b73ffffffffffffffffffffffffffffffffffffffff1614610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790614247565b60405180910390fd5b60026008541415610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d906143e7565b60405180910390fd5b6002600881905550610e67816127d9565b600160088190555050565b6000610e7d836114ca565b8210610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590614067565b60405180910390fd5b6000610ec8610cf5565b905060008060005b83811015611022576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fc257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611014578684141561100b57819550505050505061105e565b83806001019450505b508080600101915050610ed0565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611055906143c7565b60405180910390fd5b92915050565b600e5481565b6110726121df565b73ffffffffffffffffffffffffffffffffffffffff166110906116e3565b73ffffffffffffffffffffffffffffffffffffffff16146110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd90614247565b60405180910390fd5b6002600854141561112c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611123906143e7565b60405180910390fd5b6002600881905550600073db1cfd82f6ca625df9a3cc4a52aca21127a0e06573ffffffffffffffffffffffffffffffffffffffff166064601e4761117091906145dd565b61117a91906145ac565b60405161118690613fae565b60006040518083038185875af1925050503d80600081146111c3576040519150601f19603f3d011682016040523d82523d6000602084013e6111c8565b606091505b50509050806111d657600080fd5b60006111e06116e3565b73ffffffffffffffffffffffffffffffffffffffff164760405161120390613fae565b60006040518083038185875af1925050503d8060008114611240576040519150601f19603f3d011682016040523d82523d6000602084013e611245565b606091505b5050905080611289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128090614327565b60405180910390fd5b50506001600881905550565b6112b083838360405180602001604052806000815250611d05565b505050565b600d5481565b60006112c5610cf5565b8210611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd90614107565b60405180910390fd5b819050919050565b6113166121df565b73ffffffffffffffffffffffffffffffffffffffff166113346116e3565b73ffffffffffffffffffffffffffffffffffffffff161461138a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138190614247565b60405180910390fd5b81816009919061139b9291906134bb565b505050565b6113a86121df565b73ffffffffffffffffffffffffffffffffffffffff166113c66116e3565b73ffffffffffffffffffffffffffffffffffffffff161461141c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141390614247565b60405180910390fd5b80600e8190555050565b600061143182612a0b565b600001519050919050565b6009805461144990614735565b80601f016020809104026020016040519081016040528092919081815260200182805461147590614735565b80156114c25780601f10611497576101008083540402835291602001916114c2565b820191906000526020600020905b8154815290600101906020018083116114a557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561153b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153290614207565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6115bb6121df565b73ffffffffffffffffffffffffffffffffffffffff166115d96116e3565b73ffffffffffffffffffffffffffffffffffffffff161461162f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162690614247565b60405180910390fd5b6116396000612ba5565b565b6116436121df565b73ffffffffffffffffffffffffffffffffffffffff166116616116e3565b73ffffffffffffffffffffffffffffffffffffffff16146116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae90614247565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117156121df565b73ffffffffffffffffffffffffffffffffffffffff166117336116e3565b73ffffffffffffffffffffffffffffffffffffffff1614611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090614247565b60405180910390fd5b6001600f546117989190614556565b816117a1610cf5565b6117ab9190614556565b106117eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e2906141a7565b60405180910390fd5b6117f53382612c6b565b50565b6118006121df565b73ffffffffffffffffffffffffffffffffffffffff1661181e6116e3565b73ffffffffffffffffffffffffffffffffffffffff1614611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90614247565b60405180910390fd5b80600b8190555050565b611886613541565b61188f82612a0b565b9050919050565b6060600280546118a590614735565b80601f01602080910402602001604051908101604052809291908181526020018280546118d190614735565b801561191e5780601f106118f35761010080835404028352916020019161191e565b820191906000526020600020905b81548152906001019060200180831161190157829003601f168201915b5050505050905090565b600b5481565b6000600b5490506001600e546119449190614556565b8261194d610cf5565b6119579190614556565b101561196257600090505b808261196e91906145dd565b34146119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a6906142e7565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1490614167565b60405180910390fd5b6001600f54611a2c9190614556565b82611a35610cf5565b611a3f9190614556565b10611a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7690614447565b60405180910390fd5b601160009054906101000a900460ff16611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac590614267565b60405180910390fd5b600d5482611adb33611f3e565b611ae59190614556565b1115611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d906140e7565b60405180910390fd5b6001600c54611b359190614556565b8210611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d906143a7565b60405180910390fd5b611b803383612c6b565b5050565b611b8c6121df565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf1906142a7565b60405180910390fd5b8060066000611c076121df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cb46121df565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cf9919061402a565b60405180910390a35050565b611d10848484612299565b611d1c84848484612c89565b611d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5290614347565b60405180910390fd5b50505050565b600a8054611d6e90614735565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9a90614735565b8015611de75780601f10611dbc57610100808354040283529160200191611de7565b820191906000526020600020905b815481529060010190602001808311611dca57829003601f168201915b505050505081565b611df76121df565b73ffffffffffffffffffffffffffffffffffffffff16611e156116e3565b73ffffffffffffffffffffffffffffffffffffffff1614611e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6290614247565b60405180910390fd5b80600c8190555050565b6060611e80826121d2565b611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb690614287565b60405180910390fd5b6000611ec9612e20565b90506000815111611ee95760405180602001604052806000815250611f17565b80611ef384612eb2565b600a604051602001611f0793929190613f7d565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b600f5481565b60105481565b6000611f4982613013565b9050919050565b611f586121df565b73ffffffffffffffffffffffffffffffffffffffff16611f766116e3565b73ffffffffffffffffffffffffffffffffffffffff1614611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390614247565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120726121df565b73ffffffffffffffffffffffffffffffffffffffff166120906116e3565b73ffffffffffffffffffffffffffffffffffffffff16146120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dd90614247565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214d90614087565b60405180910390fd5b61215f81612ba5565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006122a482612a0b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166122cb6121df565b73ffffffffffffffffffffffffffffffffffffffff16148061232757506122f06121df565b73ffffffffffffffffffffffffffffffffffffffff1661230f84610b57565b73ffffffffffffffffffffffffffffffffffffffff16145b806123435750612342826000015161233d6121df565b611fd6565b5b905080612385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237c906142c7565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146123f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ee90614227565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245e90614127565b60405180910390fd5b61247485858560016130fc565b61248460008484600001516121e7565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612769576126c8816121d2565b156127685782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127d28585856001613102565b5050505050565b600081141561281d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612814906141e7565b60405180910390fd5b600080541415612862576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612859906140c7565b60405180910390fd5b6000601054905060005481106128ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a490614187565b60405180910390fd5b600060018383010390506000546001820111156128cd5760016000540390505b60008290505b8181116129fb57600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129ee57600061295082612a0b565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b80806001019150506128d3565b5060018101601081905550505050565b612a13613541565b612a1c826121d2565b612a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a52906140a7565b60405180910390fd5b60008290505b60008110612b64576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b55578092505050612ba0565b50808060019003915050612a61565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9790614407565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c85828260405180602001604052806000815250613108565b5050565b6000612caa8473ffffffffffffffffffffffffffffffffffffffff1661311a565b15612e13578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cd36121df565b8786866040518563ffffffff1660e01b8152600401612cf59493929190613fde565b602060405180830381600087803b158015612d0f57600080fd5b505af1925050508015612d4057506040513d601f19601f82011682018060405250810190612d3d91906138b7565b60015b612dc3573d8060008114612d70576040519150601f19603f3d011682016040523d82523d6000602084013e612d75565b606091505b50600081511415612dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db290614347565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e18565b600190505b949350505050565b606060098054612e2f90614735565b80601f0160208091040260200160405190810160405280929190818152602001828054612e5b90614735565b8015612ea85780601f10612e7d57610100808354040283529160200191612ea8565b820191906000526020600020905b815481529060010190602001808311612e8b57829003601f168201915b5050505050905090565b60606000821415612efa576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061300e565b600082905060005b60008214612f2c578080612f1590614798565b915050600a82612f2591906145ac565b9150612f02565b60008167ffffffffffffffff811115612f4857612f476148ce565b5b6040519080825280601f01601f191660200182016040528015612f7a5781602001600182028036833780820191505090505b5090505b6000851461300757600182612f939190614637565b9150600a85612fa291906147e1565b6030612fae9190614556565b60f81b818381518110612fc457612fc361489f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561300091906145ac565b9450612f7e565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307b90614147565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b613115838383600161313d565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156131b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131aa90614367565b60405180910390fd5b60008414156131f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ee90614387565b60405180910390fd5b61320460008683876130fc565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561349e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613489576134496000888488612c89565b613488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347f90614347565b60405180910390fd5b5b818060010192505080806001019150506133d2565b5080600081905550506134b46000868387613102565b5050505050565b8280546134c790614735565b90600052602060002090601f0160209004810192826134e95760008555613530565b82601f1061350257803560ff1916838001178555613530565b82800160010185558215613530579182015b8281111561352f578235825591602001919060010190613514565b5b50905061353d919061357b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561359457600081600090555060010161357c565b5090565b60006135ab6135a6846144c2565b61449d565b9050828152602081018484840111156135c7576135c661490c565b5b6135d28482856146f3565b509392505050565b6000813590506135e9816150fb565b92915050565b6000813590506135fe81615112565b92915050565b60008135905061361381615129565b92915050565b60008151905061362881615129565b92915050565b600082601f83011261364357613642614902565b5b8135613653848260208601613598565b91505092915050565b60008083601f84011261367257613671614902565b5b8235905067ffffffffffffffff81111561368f5761368e6148fd565b5b6020830191508360018202830111156136ab576136aa614907565b5b9250929050565b6000813590506136c181615140565b92915050565b6000602082840312156136dd576136dc614916565b5b60006136eb848285016135da565b91505092915050565b6000806040838503121561370b5761370a614916565b5b6000613719858286016135da565b925050602061372a858286016135da565b9150509250929050565b60008060006060848603121561374d5761374c614916565b5b600061375b868287016135da565b935050602061376c868287016135da565b925050604061377d868287016136b2565b9150509250925092565b600080600080608085870312156137a1576137a0614916565b5b60006137af878288016135da565b94505060206137c0878288016135da565b93505060406137d1878288016136b2565b925050606085013567ffffffffffffffff8111156137f2576137f1614911565b5b6137fe8782880161362e565b91505092959194509250565b6000806040838503121561382157613820614916565b5b600061382f858286016135da565b9250506020613840858286016135ef565b9150509250929050565b6000806040838503121561386157613860614916565b5b600061386f858286016135da565b9250506020613880858286016136b2565b9150509250929050565b6000602082840312156138a05761389f614916565b5b60006138ae84828501613604565b91505092915050565b6000602082840312156138cd576138cc614916565b5b60006138db84828501613619565b91505092915050565b600080602083850312156138fb576138fa614916565b5b600083013567ffffffffffffffff81111561391957613918614911565b5b6139258582860161365c565b92509250509250929050565b60006020828403121561394757613946614916565b5b6000613955848285016136b2565b91505092915050565b6139678161466b565b82525050565b6139768161466b565b82525050565b6139858161467d565b82525050565b600061399682614508565b6139a0818561451e565b93506139b0818560208601614702565b6139b98161491b565b840191505092915050565b60006139cf82614513565b6139d9818561453a565b93506139e9818560208601614702565b6139f28161491b565b840191505092915050565b6000613a0882614513565b613a12818561454b565b9350613a22818560208601614702565b80840191505092915050565b60008154613a3b81614735565b613a45818661454b565b94506001821660008114613a605760018114613a7157613aa4565b60ff19831686528186019350613aa4565b613a7a856144f3565b60005b83811015613a9c57815481890152600182019150602081019050613a7d565b838801955050505b50505092915050565b6000613aba60228361453a565b9150613ac58261492c565b604082019050919050565b6000613add60268361453a565b9150613ae88261497b565b604082019050919050565b6000613b00602a8361453a565b9150613b0b826149ca565b604082019050919050565b6000613b2360148361453a565b9150613b2e82614a19565b602082019050919050565b6000613b4660148361453a565b9150613b5182614a42565b602082019050919050565b6000613b6960238361453a565b9150613b7482614a6b565b604082019050919050565b6000613b8c60258361453a565b9150613b9782614aba565b604082019050919050565b6000613baf60318361453a565b9150613bba82614b09565b604082019050919050565b6000613bd260088361453a565b9150613bdd82614b58565b602082019050919050565b6000613bf5601c8361453a565b9150613c0082614b81565b602082019050919050565b6000613c1860098361453a565b9150613c2382614baa565b602082019050919050565b6000613c3b60398361453a565b9150613c4682614bd3565b604082019050919050565b6000613c5e60188361453a565b9150613c6982614c22565b602082019050919050565b6000613c81602b8361453a565b9150613c8c82614c4b565b604082019050919050565b6000613ca460268361453a565b9150613caf82614c9a565b604082019050919050565b6000613cc760208361453a565b9150613cd282614ce9565b602082019050919050565b6000613cea60188361453a565b9150613cf582614d12565b602082019050919050565b6000613d0d602f8361453a565b9150613d1882614d3b565b604082019050919050565b6000613d30601a8361453a565b9150613d3b82614d8a565b602082019050919050565b6000613d5360328361453a565b9150613d5e82614db3565b604082019050919050565b6000613d76601d8361453a565b9150613d8182614e02565b602082019050919050565b6000613d9960228361453a565b9150613da482614e2b565b604082019050919050565b6000613dbc60008361452f565b9150613dc782614e7a565b600082019050919050565b6000613ddf60108361453a565b9150613dea82614e7d565b602082019050919050565b6000613e0260338361453a565b9150613e0d82614ea6565b604082019050919050565b6000613e2560218361453a565b9150613e3082614ef5565b604082019050919050565b6000613e4860288361453a565b9150613e5382614f44565b604082019050919050565b6000613e6b60138361453a565b9150613e7682614f93565b602082019050919050565b6000613e8e602e8361453a565b9150613e9982614fbc565b604082019050919050565b6000613eb1601f8361453a565b9150613ebc8261500b565b602082019050919050565b6000613ed4602f8361453a565b9150613edf82615034565b604082019050919050565b6000613ef7602d8361453a565b9150613f0282615083565b604082019050919050565b6000613f1a60138361453a565b9150613f25826150d2565b602082019050919050565b604082016000820151613f46600085018261395e565b506020820151613f596020850182613f6e565b50505050565b613f68816146d5565b82525050565b613f77816146df565b82525050565b6000613f8982866139fd565b9150613f9582856139fd565b9150613fa18284613a2e565b9150819050949350505050565b6000613fb982613daf565b9150819050919050565b6000602082019050613fd8600083018461396d565b92915050565b6000608082019050613ff3600083018761396d565b614000602083018661396d565b61400d6040830185613f5f565b818103606083015261401f818461398b565b905095945050505050565b600060208201905061403f600083018461397c565b92915050565b6000602082019050818103600083015261405f81846139c4565b905092915050565b6000602082019050818103600083015261408081613aad565b9050919050565b600060208201905081810360008301526140a081613ad0565b9050919050565b600060208201905081810360008301526140c081613af3565b9050919050565b600060208201905081810360008301526140e081613b16565b9050919050565b6000602082019050818103600083015261410081613b39565b9050919050565b6000602082019050818103600083015261412081613b5c565b9050919050565b6000602082019050818103600083015261414081613b7f565b9050919050565b6000602082019050818103600083015261416081613ba2565b9050919050565b6000602082019050818103600083015261418081613bc5565b9050919050565b600060208201905081810360008301526141a081613be8565b9050919050565b600060208201905081810360008301526141c081613c0b565b9050919050565b600060208201905081810360008301526141e081613c2e565b9050919050565b6000602082019050818103600083015261420081613c51565b9050919050565b6000602082019050818103600083015261422081613c74565b9050919050565b6000602082019050818103600083015261424081613c97565b9050919050565b6000602082019050818103600083015261426081613cba565b9050919050565b6000602082019050818103600083015261428081613cdd565b9050919050565b600060208201905081810360008301526142a081613d00565b9050919050565b600060208201905081810360008301526142c081613d23565b9050919050565b600060208201905081810360008301526142e081613d46565b9050919050565b6000602082019050818103600083015261430081613d69565b9050919050565b6000602082019050818103600083015261432081613d8c565b9050919050565b6000602082019050818103600083015261434081613dd2565b9050919050565b6000602082019050818103600083015261436081613df5565b9050919050565b6000602082019050818103600083015261438081613e18565b9050919050565b600060208201905081810360008301526143a081613e3b565b9050919050565b600060208201905081810360008301526143c081613e5e565b9050919050565b600060208201905081810360008301526143e081613e81565b9050919050565b6000602082019050818103600083015261440081613ea4565b9050919050565b6000602082019050818103600083015261442081613ec7565b9050919050565b6000602082019050818103600083015261444081613eea565b9050919050565b6000602082019050818103600083015261446081613f0d565b9050919050565b600060408201905061447c6000830184613f30565b92915050565b60006020820190506144976000830184613f5f565b92915050565b60006144a76144b8565b90506144b38282614767565b919050565b6000604051905090565b600067ffffffffffffffff8211156144dd576144dc6148ce565b5b6144e68261491b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614561826146d5565b915061456c836146d5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145a1576145a0614812565b5b828201905092915050565b60006145b7826146d5565b91506145c2836146d5565b9250826145d2576145d1614841565b5b828204905092915050565b60006145e8826146d5565b91506145f3836146d5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561462c5761462b614812565b5b828202905092915050565b6000614642826146d5565b915061464d836146d5565b9250828210156146605761465f614812565b5b828203905092915050565b6000614676826146b5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614720578082015181840152602081019050614705565b8381111561472f576000848401525b50505050565b6000600282049050600182168061474d57607f821691505b6020821081141561476157614760614870565b5b50919050565b6147708261491b565b810181811067ffffffffffffffff8211171561478f5761478e6148ce565b5b80604052505050565b60006147a3826146d5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147d6576147d5614812565b5b600182019050919050565b60006147ec826146d5565b91506147f7836146d5565b92508261480757614806614841565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000600082015250565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f2051514c5943212e000000000000000000000000000000000000000000000000600082015250565b7f616c6c206f776e657273686970732068617665206265656e2073657400000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f51514c594320697320736f6c64206f7574212000000000000000000000000000600082015250565b6151048161466b565b811461510f57600080fd5b50565b61511b8161467d565b811461512657600080fd5b50565b61513281614689565b811461513d57600080fd5b50565b615149816146d5565b811461515457600080fd5b5056fea2646970667358221220cbb9dc4c10f80bc9887498509ea58a9521b0ae79add18869adb5b32caa89492564736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f516d654a3861426b39745669596f33584e5748777846445658546f57484e36766a6f55514e536544345a4c5a514c2f
Deployed Bytecode
0x6080604052600436106102465760003560e01c80637d55094d11610139578063c6682862116100b6578063d7224ba01161007a578063d7224ba014610859578063dc33e68114610884578063e268e4d3146108c1578063e985e9c5146108ea578063f2fde38b14610927578063f968adbe1461095057610246565b8063c668286214610772578063c6f6f2161461079d578063c87b56dd146107c6578063d123973014610803578063d5abeb011461082e57610246565b806395d89b41116100fd57806395d89b41146106ae578063a035b1fe146106d9578063a0712d6814610704578063a22cb46514610720578063b88d4fde1461074957610246565b80637d55094d146105dd5780638da5cb5b146105f45780638db89f071461061f57806391b7f5ed146106485780639231ab2a1461067157610246565b80633ccfd60b116101c7578063563aaf111161018b578063563aaf11146104f85780636352211e146105215780636c0360eb1461055e57806370a0823114610589578063715018a6146105c657610246565b80633ccfd60b1461042757806342842e0e1461043e578063453c2310146104675780634f6ccce71461049257806355f804b3146104cf57610246565b8063228025e81161020e578063228025e81461034457806323b872dd1461036d5780632d20fb60146103965780632f745c59146103bf578063333e44e6146103fc57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806318160ddd14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d919061388a565b61097b565b60405161027f919061402a565b60405180910390f35b34801561029457600080fd5b5061029d610ac5565b6040516102aa9190614045565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613931565b610b57565b6040516102e79190613fc3565b60405180910390f35b3480156102fc57600080fd5b506103176004803603810190610312919061384a565b610bdc565b005b34801561032557600080fd5b5061032e610cf5565b60405161033b9190614482565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613931565b610cfe565b005b34801561037957600080fd5b50610394600480360381019061038f9190613734565b610d84565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190613931565b610d94565b005b3480156103cb57600080fd5b506103e660048036038101906103e1919061384a565b610e72565b6040516103f39190614482565b60405180910390f35b34801561040857600080fd5b50610411611064565b60405161041e9190614482565b60405180910390f35b34801561043357600080fd5b5061043c61106a565b005b34801561044a57600080fd5b5061046560048036038101906104609190613734565b611295565b005b34801561047357600080fd5b5061047c6112b5565b6040516104899190614482565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190613931565b6112bb565b6040516104c69190614482565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f191906138e4565b61130e565b005b34801561050457600080fd5b5061051f600480360381019061051a9190613931565b6113a0565b005b34801561052d57600080fd5b5061054860048036038101906105439190613931565b611426565b6040516105559190613fc3565b60405180910390f35b34801561056a57600080fd5b5061057361143c565b6040516105809190614045565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab91906136c7565b6114ca565b6040516105bd9190614482565b60405180910390f35b3480156105d257600080fd5b506105db6115b3565b005b3480156105e957600080fd5b506105f261163b565b005b34801561060057600080fd5b506106096116e3565b6040516106169190613fc3565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190613931565b61170d565b005b34801561065457600080fd5b5061066f600480360381019061066a9190613931565b6117f8565b005b34801561067d57600080fd5b5061069860048036038101906106939190613931565b61187e565b6040516106a59190614467565b60405180910390f35b3480156106ba57600080fd5b506106c3611896565b6040516106d09190614045565b60405180910390f35b3480156106e557600080fd5b506106ee611928565b6040516106fb9190614482565b60405180910390f35b61071e60048036038101906107199190613931565b61192e565b005b34801561072c57600080fd5b506107476004803603810190610742919061380a565b611b84565b005b34801561075557600080fd5b50610770600480360381019061076b9190613787565b611d05565b005b34801561077e57600080fd5b50610787611d61565b6040516107949190614045565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613931565b611def565b005b3480156107d257600080fd5b506107ed60048036038101906107e89190613931565b611e75565b6040516107fa9190614045565b60405180910390f35b34801561080f57600080fd5b50610818611f1f565b604051610825919061402a565b60405180910390f35b34801561083a57600080fd5b50610843611f32565b6040516108509190614482565b60405180910390f35b34801561086557600080fd5b5061086e611f38565b60405161087b9190614482565b60405180910390f35b34801561089057600080fd5b506108ab60048036038101906108a691906136c7565b611f3e565b6040516108b89190614482565b60405180910390f35b3480156108cd57600080fd5b506108e860048036038101906108e39190613931565b611f50565b005b3480156108f657600080fd5b50610911600480360381019061090c91906136f4565b611fd6565b60405161091e919061402a565b60405180910390f35b34801561093357600080fd5b5061094e600480360381019061094991906136c7565b61206a565b005b34801561095c57600080fd5b50610965612162565b6040516109729190614482565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aae57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610abe5750610abd82612168565b5b9050919050565b606060018054610ad490614735565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0090614735565b8015610b4d5780601f10610b2257610100808354040283529160200191610b4d565b820191906000526020600020905b815481529060010190602001808311610b3057829003601f168201915b5050505050905090565b6000610b62826121d2565b610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9890614427565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be782611426565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f90614307565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c776121df565b73ffffffffffffffffffffffffffffffffffffffff161480610ca65750610ca581610ca06121df565b611fd6565b5b610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc906141c7565b60405180910390fd5b610cf08383836121e7565b505050565b60008054905090565b610d066121df565b73ffffffffffffffffffffffffffffffffffffffff16610d246116e3565b73ffffffffffffffffffffffffffffffffffffffff1614610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190614247565b60405180910390fd5b80600f8190555050565b610d8f838383612299565b505050565b610d9c6121df565b73ffffffffffffffffffffffffffffffffffffffff16610dba6116e3565b73ffffffffffffffffffffffffffffffffffffffff1614610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790614247565b60405180910390fd5b60026008541415610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d906143e7565b60405180910390fd5b6002600881905550610e67816127d9565b600160088190555050565b6000610e7d836114ca565b8210610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590614067565b60405180910390fd5b6000610ec8610cf5565b905060008060005b83811015611022576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fc257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611014578684141561100b57819550505050505061105e565b83806001019450505b508080600101915050610ed0565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611055906143c7565b60405180910390fd5b92915050565b600e5481565b6110726121df565b73ffffffffffffffffffffffffffffffffffffffff166110906116e3565b73ffffffffffffffffffffffffffffffffffffffff16146110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd90614247565b60405180910390fd5b6002600854141561112c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611123906143e7565b60405180910390fd5b6002600881905550600073db1cfd82f6ca625df9a3cc4a52aca21127a0e06573ffffffffffffffffffffffffffffffffffffffff166064601e4761117091906145dd565b61117a91906145ac565b60405161118690613fae565b60006040518083038185875af1925050503d80600081146111c3576040519150601f19603f3d011682016040523d82523d6000602084013e6111c8565b606091505b50509050806111d657600080fd5b60006111e06116e3565b73ffffffffffffffffffffffffffffffffffffffff164760405161120390613fae565b60006040518083038185875af1925050503d8060008114611240576040519150601f19603f3d011682016040523d82523d6000602084013e611245565b606091505b5050905080611289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128090614327565b60405180910390fd5b50506001600881905550565b6112b083838360405180602001604052806000815250611d05565b505050565b600d5481565b60006112c5610cf5565b8210611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd90614107565b60405180910390fd5b819050919050565b6113166121df565b73ffffffffffffffffffffffffffffffffffffffff166113346116e3565b73ffffffffffffffffffffffffffffffffffffffff161461138a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138190614247565b60405180910390fd5b81816009919061139b9291906134bb565b505050565b6113a86121df565b73ffffffffffffffffffffffffffffffffffffffff166113c66116e3565b73ffffffffffffffffffffffffffffffffffffffff161461141c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141390614247565b60405180910390fd5b80600e8190555050565b600061143182612a0b565b600001519050919050565b6009805461144990614735565b80601f016020809104026020016040519081016040528092919081815260200182805461147590614735565b80156114c25780601f10611497576101008083540402835291602001916114c2565b820191906000526020600020905b8154815290600101906020018083116114a557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561153b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153290614207565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6115bb6121df565b73ffffffffffffffffffffffffffffffffffffffff166115d96116e3565b73ffffffffffffffffffffffffffffffffffffffff161461162f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162690614247565b60405180910390fd5b6116396000612ba5565b565b6116436121df565b73ffffffffffffffffffffffffffffffffffffffff166116616116e3565b73ffffffffffffffffffffffffffffffffffffffff16146116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae90614247565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117156121df565b73ffffffffffffffffffffffffffffffffffffffff166117336116e3565b73ffffffffffffffffffffffffffffffffffffffff1614611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090614247565b60405180910390fd5b6001600f546117989190614556565b816117a1610cf5565b6117ab9190614556565b106117eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e2906141a7565b60405180910390fd5b6117f53382612c6b565b50565b6118006121df565b73ffffffffffffffffffffffffffffffffffffffff1661181e6116e3565b73ffffffffffffffffffffffffffffffffffffffff1614611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90614247565b60405180910390fd5b80600b8190555050565b611886613541565b61188f82612a0b565b9050919050565b6060600280546118a590614735565b80601f01602080910402602001604051908101604052809291908181526020018280546118d190614735565b801561191e5780601f106118f35761010080835404028352916020019161191e565b820191906000526020600020905b81548152906001019060200180831161190157829003601f168201915b5050505050905090565b600b5481565b6000600b5490506001600e546119449190614556565b8261194d610cf5565b6119579190614556565b101561196257600090505b808261196e91906145dd565b34146119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a6906142e7565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1490614167565b60405180910390fd5b6001600f54611a2c9190614556565b82611a35610cf5565b611a3f9190614556565b10611a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7690614447565b60405180910390fd5b601160009054906101000a900460ff16611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac590614267565b60405180910390fd5b600d5482611adb33611f3e565b611ae59190614556565b1115611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d906140e7565b60405180910390fd5b6001600c54611b359190614556565b8210611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d906143a7565b60405180910390fd5b611b803383612c6b565b5050565b611b8c6121df565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf1906142a7565b60405180910390fd5b8060066000611c076121df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cb46121df565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cf9919061402a565b60405180910390a35050565b611d10848484612299565b611d1c84848484612c89565b611d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5290614347565b60405180910390fd5b50505050565b600a8054611d6e90614735565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9a90614735565b8015611de75780601f10611dbc57610100808354040283529160200191611de7565b820191906000526020600020905b815481529060010190602001808311611dca57829003601f168201915b505050505081565b611df76121df565b73ffffffffffffffffffffffffffffffffffffffff16611e156116e3565b73ffffffffffffffffffffffffffffffffffffffff1614611e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6290614247565b60405180910390fd5b80600c8190555050565b6060611e80826121d2565b611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb690614287565b60405180910390fd5b6000611ec9612e20565b90506000815111611ee95760405180602001604052806000815250611f17565b80611ef384612eb2565b600a604051602001611f0793929190613f7d565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b600f5481565b60105481565b6000611f4982613013565b9050919050565b611f586121df565b73ffffffffffffffffffffffffffffffffffffffff16611f766116e3565b73ffffffffffffffffffffffffffffffffffffffff1614611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390614247565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120726121df565b73ffffffffffffffffffffffffffffffffffffffff166120906116e3565b73ffffffffffffffffffffffffffffffffffffffff16146120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dd90614247565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214d90614087565b60405180910390fd5b61215f81612ba5565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006122a482612a0b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166122cb6121df565b73ffffffffffffffffffffffffffffffffffffffff16148061232757506122f06121df565b73ffffffffffffffffffffffffffffffffffffffff1661230f84610b57565b73ffffffffffffffffffffffffffffffffffffffff16145b806123435750612342826000015161233d6121df565b611fd6565b5b905080612385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237c906142c7565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146123f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ee90614227565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245e90614127565b60405180910390fd5b61247485858560016130fc565b61248460008484600001516121e7565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612769576126c8816121d2565b156127685782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127d28585856001613102565b5050505050565b600081141561281d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612814906141e7565b60405180910390fd5b600080541415612862576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612859906140c7565b60405180910390fd5b6000601054905060005481106128ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a490614187565b60405180910390fd5b600060018383010390506000546001820111156128cd5760016000540390505b60008290505b8181116129fb57600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129ee57600061295082612a0b565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b80806001019150506128d3565b5060018101601081905550505050565b612a13613541565b612a1c826121d2565b612a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a52906140a7565b60405180910390fd5b60008290505b60008110612b64576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b55578092505050612ba0565b50808060019003915050612a61565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9790614407565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c85828260405180602001604052806000815250613108565b5050565b6000612caa8473ffffffffffffffffffffffffffffffffffffffff1661311a565b15612e13578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cd36121df565b8786866040518563ffffffff1660e01b8152600401612cf59493929190613fde565b602060405180830381600087803b158015612d0f57600080fd5b505af1925050508015612d4057506040513d601f19601f82011682018060405250810190612d3d91906138b7565b60015b612dc3573d8060008114612d70576040519150601f19603f3d011682016040523d82523d6000602084013e612d75565b606091505b50600081511415612dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db290614347565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e18565b600190505b949350505050565b606060098054612e2f90614735565b80601f0160208091040260200160405190810160405280929190818152602001828054612e5b90614735565b8015612ea85780601f10612e7d57610100808354040283529160200191612ea8565b820191906000526020600020905b815481529060010190602001808311612e8b57829003601f168201915b5050505050905090565b60606000821415612efa576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061300e565b600082905060005b60008214612f2c578080612f1590614798565b915050600a82612f2591906145ac565b9150612f02565b60008167ffffffffffffffff811115612f4857612f476148ce565b5b6040519080825280601f01601f191660200182016040528015612f7a5781602001600182028036833780820191505090505b5090505b6000851461300757600182612f939190614637565b9150600a85612fa291906147e1565b6030612fae9190614556565b60f81b818381518110612fc457612fc361489f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561300091906145ac565b9450612f7e565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307b90614147565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b613115838383600161313d565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156131b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131aa90614367565b60405180910390fd5b60008414156131f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ee90614387565b60405180910390fd5b61320460008683876130fc565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561349e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613489576134496000888488612c89565b613488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347f90614347565b60405180910390fd5b5b818060010192505080806001019150506133d2565b5080600081905550506134b46000868387613102565b5050505050565b8280546134c790614735565b90600052602060002090601f0160209004810192826134e95760008555613530565b82601f1061350257803560ff1916838001178555613530565b82800160010185558215613530579182015b8281111561352f578235825591602001919060010190613514565b5b50905061353d919061357b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561359457600081600090555060010161357c565b5090565b60006135ab6135a6846144c2565b61449d565b9050828152602081018484840111156135c7576135c661490c565b5b6135d28482856146f3565b509392505050565b6000813590506135e9816150fb565b92915050565b6000813590506135fe81615112565b92915050565b60008135905061361381615129565b92915050565b60008151905061362881615129565b92915050565b600082601f83011261364357613642614902565b5b8135613653848260208601613598565b91505092915050565b60008083601f84011261367257613671614902565b5b8235905067ffffffffffffffff81111561368f5761368e6148fd565b5b6020830191508360018202830111156136ab576136aa614907565b5b9250929050565b6000813590506136c181615140565b92915050565b6000602082840312156136dd576136dc614916565b5b60006136eb848285016135da565b91505092915050565b6000806040838503121561370b5761370a614916565b5b6000613719858286016135da565b925050602061372a858286016135da565b9150509250929050565b60008060006060848603121561374d5761374c614916565b5b600061375b868287016135da565b935050602061376c868287016135da565b925050604061377d868287016136b2565b9150509250925092565b600080600080608085870312156137a1576137a0614916565b5b60006137af878288016135da565b94505060206137c0878288016135da565b93505060406137d1878288016136b2565b925050606085013567ffffffffffffffff8111156137f2576137f1614911565b5b6137fe8782880161362e565b91505092959194509250565b6000806040838503121561382157613820614916565b5b600061382f858286016135da565b9250506020613840858286016135ef565b9150509250929050565b6000806040838503121561386157613860614916565b5b600061386f858286016135da565b9250506020613880858286016136b2565b9150509250929050565b6000602082840312156138a05761389f614916565b5b60006138ae84828501613604565b91505092915050565b6000602082840312156138cd576138cc614916565b5b60006138db84828501613619565b91505092915050565b600080602083850312156138fb576138fa614916565b5b600083013567ffffffffffffffff81111561391957613918614911565b5b6139258582860161365c565b92509250509250929050565b60006020828403121561394757613946614916565b5b6000613955848285016136b2565b91505092915050565b6139678161466b565b82525050565b6139768161466b565b82525050565b6139858161467d565b82525050565b600061399682614508565b6139a0818561451e565b93506139b0818560208601614702565b6139b98161491b565b840191505092915050565b60006139cf82614513565b6139d9818561453a565b93506139e9818560208601614702565b6139f28161491b565b840191505092915050565b6000613a0882614513565b613a12818561454b565b9350613a22818560208601614702565b80840191505092915050565b60008154613a3b81614735565b613a45818661454b565b94506001821660008114613a605760018114613a7157613aa4565b60ff19831686528186019350613aa4565b613a7a856144f3565b60005b83811015613a9c57815481890152600182019150602081019050613a7d565b838801955050505b50505092915050565b6000613aba60228361453a565b9150613ac58261492c565b604082019050919050565b6000613add60268361453a565b9150613ae88261497b565b604082019050919050565b6000613b00602a8361453a565b9150613b0b826149ca565b604082019050919050565b6000613b2360148361453a565b9150613b2e82614a19565b602082019050919050565b6000613b4660148361453a565b9150613b5182614a42565b602082019050919050565b6000613b6960238361453a565b9150613b7482614a6b565b604082019050919050565b6000613b8c60258361453a565b9150613b9782614aba565b604082019050919050565b6000613baf60318361453a565b9150613bba82614b09565b604082019050919050565b6000613bd260088361453a565b9150613bdd82614b58565b602082019050919050565b6000613bf5601c8361453a565b9150613c0082614b81565b602082019050919050565b6000613c1860098361453a565b9150613c2382614baa565b602082019050919050565b6000613c3b60398361453a565b9150613c4682614bd3565b604082019050919050565b6000613c5e60188361453a565b9150613c6982614c22565b602082019050919050565b6000613c81602b8361453a565b9150613c8c82614c4b565b604082019050919050565b6000613ca460268361453a565b9150613caf82614c9a565b604082019050919050565b6000613cc760208361453a565b9150613cd282614ce9565b602082019050919050565b6000613cea60188361453a565b9150613cf582614d12565b602082019050919050565b6000613d0d602f8361453a565b9150613d1882614d3b565b604082019050919050565b6000613d30601a8361453a565b9150613d3b82614d8a565b602082019050919050565b6000613d5360328361453a565b9150613d5e82614db3565b604082019050919050565b6000613d76601d8361453a565b9150613d8182614e02565b602082019050919050565b6000613d9960228361453a565b9150613da482614e2b565b604082019050919050565b6000613dbc60008361452f565b9150613dc782614e7a565b600082019050919050565b6000613ddf60108361453a565b9150613dea82614e7d565b602082019050919050565b6000613e0260338361453a565b9150613e0d82614ea6565b604082019050919050565b6000613e2560218361453a565b9150613e3082614ef5565b604082019050919050565b6000613e4860288361453a565b9150613e5382614f44565b604082019050919050565b6000613e6b60138361453a565b9150613e7682614f93565b602082019050919050565b6000613e8e602e8361453a565b9150613e9982614fbc565b604082019050919050565b6000613eb1601f8361453a565b9150613ebc8261500b565b602082019050919050565b6000613ed4602f8361453a565b9150613edf82615034565b604082019050919050565b6000613ef7602d8361453a565b9150613f0282615083565b604082019050919050565b6000613f1a60138361453a565b9150613f25826150d2565b602082019050919050565b604082016000820151613f46600085018261395e565b506020820151613f596020850182613f6e565b50505050565b613f68816146d5565b82525050565b613f77816146df565b82525050565b6000613f8982866139fd565b9150613f9582856139fd565b9150613fa18284613a2e565b9150819050949350505050565b6000613fb982613daf565b9150819050919050565b6000602082019050613fd8600083018461396d565b92915050565b6000608082019050613ff3600083018761396d565b614000602083018661396d565b61400d6040830185613f5f565b818103606083015261401f818461398b565b905095945050505050565b600060208201905061403f600083018461397c565b92915050565b6000602082019050818103600083015261405f81846139c4565b905092915050565b6000602082019050818103600083015261408081613aad565b9050919050565b600060208201905081810360008301526140a081613ad0565b9050919050565b600060208201905081810360008301526140c081613af3565b9050919050565b600060208201905081810360008301526140e081613b16565b9050919050565b6000602082019050818103600083015261410081613b39565b9050919050565b6000602082019050818103600083015261412081613b5c565b9050919050565b6000602082019050818103600083015261414081613b7f565b9050919050565b6000602082019050818103600083015261416081613ba2565b9050919050565b6000602082019050818103600083015261418081613bc5565b9050919050565b600060208201905081810360008301526141a081613be8565b9050919050565b600060208201905081810360008301526141c081613c0b565b9050919050565b600060208201905081810360008301526141e081613c2e565b9050919050565b6000602082019050818103600083015261420081613c51565b9050919050565b6000602082019050818103600083015261422081613c74565b9050919050565b6000602082019050818103600083015261424081613c97565b9050919050565b6000602082019050818103600083015261426081613cba565b9050919050565b6000602082019050818103600083015261428081613cdd565b9050919050565b600060208201905081810360008301526142a081613d00565b9050919050565b600060208201905081810360008301526142c081613d23565b9050919050565b600060208201905081810360008301526142e081613d46565b9050919050565b6000602082019050818103600083015261430081613d69565b9050919050565b6000602082019050818103600083015261432081613d8c565b9050919050565b6000602082019050818103600083015261434081613dd2565b9050919050565b6000602082019050818103600083015261436081613df5565b9050919050565b6000602082019050818103600083015261438081613e18565b9050919050565b600060208201905081810360008301526143a081613e3b565b9050919050565b600060208201905081810360008301526143c081613e5e565b9050919050565b600060208201905081810360008301526143e081613e81565b9050919050565b6000602082019050818103600083015261440081613ea4565b9050919050565b6000602082019050818103600083015261442081613ec7565b9050919050565b6000602082019050818103600083015261444081613eea565b9050919050565b6000602082019050818103600083015261446081613f0d565b9050919050565b600060408201905061447c6000830184613f30565b92915050565b60006020820190506144976000830184613f5f565b92915050565b60006144a76144b8565b90506144b38282614767565b919050565b6000604051905090565b600067ffffffffffffffff8211156144dd576144dc6148ce565b5b6144e68261491b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614561826146d5565b915061456c836146d5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145a1576145a0614812565b5b828201905092915050565b60006145b7826146d5565b91506145c2836146d5565b9250826145d2576145d1614841565b5b828204905092915050565b60006145e8826146d5565b91506145f3836146d5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561462c5761462b614812565b5b828202905092915050565b6000614642826146d5565b915061464d836146d5565b9250828210156146605761465f614812565b5b828203905092915050565b6000614676826146b5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614720578082015181840152602081019050614705565b8381111561472f576000848401525b50505050565b6000600282049050600182168061474d57607f821691505b6020821081141561476157614760614870565b5b50919050565b6147708261491b565b810181811067ffffffffffffffff8211171561478f5761478e6148ce565b5b80604052505050565b60006147a3826146d5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147d6576147d5614812565b5b600182019050919050565b60006147ec826146d5565b91506147f7836146d5565b92508261480757614806614841565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000600082015250565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f2051514c5943212e000000000000000000000000000000000000000000000000600082015250565b7f616c6c206f776e657273686970732068617665206265656e2073657400000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f51514c594320697320736f6c64206f7574212000000000000000000000000000600082015250565b6151048161466b565b811461510f57600080fd5b50565b61511b8161467d565b811461512657600080fd5b50565b61513281614689565b811461513d57600080fd5b50565b615149816146d5565b811461515457600080fd5b5056fea2646970667358221220cbb9dc4c10f80bc9887498509ea58a9521b0ae79add18869adb5b32caa89492564736f6c63430008070033
Deployed Bytecode Sourcemap
50235:4627:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37095:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38981:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40543:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40064:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35352:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52825:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41419:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53365:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36016:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50594:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53037:322;;;;;;;;;;;;;:::i;:::-;;41660:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50544:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35529:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52315:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52505:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38790:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50294:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37531:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10487:103;;;;;;;;;;;;;:::i;:::-;;52111:85;;;;;;;;;;;;;:::i;:::-;;9836:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51411:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52417:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53489:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39150:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50439:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50828:577;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40829:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41916:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50398:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52609:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51578:527;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50742:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50641:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50692:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52202:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52709:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41188:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10745:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50496:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37095:372;37197:4;37249:25;37234:40;;;:11;:40;;;;:105;;;;37306:33;37291:48;;;:11;:48;;;;37234:105;:172;;;;37371:35;37356:50;;;:11;:50;;;;37234:172;:225;;;;37423:36;37447:11;37423:23;:36::i;:::-;37234:225;37214:245;;37095:372;;;:::o;38981:100::-;39035:13;39068:5;39061:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38981:100;:::o;40543:214::-;40611:7;40639:16;40647:7;40639;:16::i;:::-;40631:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;40725:15;:24;40741:7;40725:24;;;;;;;;;;;;;;;;;;;;;40718:31;;40543:214;;;:::o;40064:413::-;40137:13;40153:24;40169:7;40153:15;:24::i;:::-;40137:40;;40202:5;40196:11;;:2;:11;;;;40188:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40297:5;40281:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;40306:37;40323:5;40330:12;:10;:12::i;:::-;40306:16;:37::i;:::-;40281:62;40259:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40441:28;40450:2;40454:7;40463:5;40441:8;:28::i;:::-;40126:351;40064:413;;:::o;35352:100::-;35405:7;35432:12;;35425:19;;35352:100;:::o;52825:98::-;10067:12;:10;:12::i;:::-;10056:23;;:7;:5;:7::i;:::-;:23;;;10048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52907:10:::1;52895:9;:22;;;;52825:98:::0;:::o;41419:170::-;41553:28;41563:4;41569:2;41573:7;41553:9;:28::i;:::-;41419:170;;;:::o;53365:118::-;10067:12;:10;:12::i;:::-;10056:23;;:7;:5;:7::i;:::-;:23;;;10048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4810:1:::1;5408:7;;:19;;5400:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4810:1;5541:7;:18;;;;53449:28:::2;53468:8;53449:18;:28::i;:::-;4766:1:::1;5720:7;:22;;;;53365:118:::0;:::o;36016:1007::-;36105:7;36141:16;36151:5;36141:9;:16::i;:::-;36133:5;:24;36125:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36207:22;36232:13;:11;:13::i;:::-;36207:38;;36256:19;36286:25;36475:9;36470:466;36490:14;36486:1;:18;36470:466;;;36530:31;36564:11;:14;36576:1;36564:14;;;;;;;;;;;36530:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36627:1;36601:28;;:9;:14;;;:28;;;36597:111;;36674:9;:14;;;36654:34;;36597:111;36751:5;36730:26;;:17;:26;;;36726:195;;;36800:5;36785:11;:20;36781:85;;;36841:1;36834:8;;;;;;;;;36781:85;36888:13;;;;;;;36726:195;36511:425;36506:3;;;;;;;36470:466;;;;36959:56;;;;;;;;;;:::i;:::-;;;;;;;;36016:1007;;;;;:::o;50594:42::-;;;;:::o;53037:322::-;10067:12;:10;:12::i;:::-;10056:23;;:7;:5;:7::i;:::-;:23;;;10048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4810:1:::1;5408:7;;:19;;5400:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4810:1;5541:7;:18;;;;53097:7:::2;53118:42;53110:56;;53203:3;53198:2;53174:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;53110:101;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53096:115;;;53226:2;53218:11;;;::::0;::::2;;53237:12;53263:7;:5;:7::i;:::-;53255:21;;53284;53255:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53236:74;;;53325:7;53317:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;53089:270;;4766:1:::1;5720:7;:22;;;;53037:322::o:0;41660:185::-;41798:39;41815:4;41821:2;41825:7;41798:39;;;;;;;;;;;;:16;:39::i;:::-;41660:185;;;:::o;50544:45::-;;;;:::o;35529:187::-;35596:7;35632:13;:11;:13::i;:::-;35624:5;:21;35616:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;35703:5;35696:12;;35529:187;;;:::o;52315:96::-;10067:12;:10;:12::i;:::-;10056:23;;:7;:5;:7::i;:::-;:23;;;10048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52397:8:::1;;52387:7;:18;;;;;;;:::i;:::-;;52315:96:::0;;:::o;52505:98::-;10067:12;:10;:12::i;:::-;10056:23;;:7;:5;:7::i;:::-;:23;;;10048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52587:10:::1;52575:9;:22;;;;52505:98:::0;:::o;38790:124::-;38854:7;38881:20;38893:7;38881:11;:20::i;:::-;:25;;;38874:32;;38790:124;;;:::o;50294:99::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37531:221::-;37595:7;37640:1;37623:19;;:5;:19;;;;37615:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;37716:12;:19;37729:5;37716:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;37708:36;;37701:43;;37531:221;;;:::o;10487:103::-;10067:12;:10;:12::i;:::-;10056:23;;:7;:5;:7::i;:::-;:23;;;10048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10552:30:::1;10579:1;10552:18;:30::i;:::-;10487:103::o:0;52111:85::-;10067:12;:10;:12::i;:::-;10056:23;;:7;:5;:7::i;:::-;:23;;;10048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52179:11:::1;;;;;;;;;;;52178:12;52164:11;;:26;;;;;;;;;;;;;;;;;;52111:85::o:0;9836:87::-;9882:7;9909:6;;;;;;;;;;;9902:13;;9836:87;:::o;51411:163::-;10067:12;:10;:12::i;:::-;10056:23;;:7;:5;:7::i;:::-;:23;;;10048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51519:1:::1;51507:9;;:13;;;;:::i;:::-;51501:3;51485:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;51477:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;51542:26;51552:10;51564:3;51542:9;:26::i;:::-;51411:163:::0;:::o;52417:82::-;10067:12;:10;:12::i;:::-;10056:23;;:7;:5;:7::i;:::-;:23;;;10048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52487:6:::1;52479:5;:14;;;;52417:82:::0;:::o;53489:132::-;53555:21;;:::i;:::-;53595:20;53607:7;53595:11;:20::i;:::-;53588:27;;53489:132;;;:::o;39150:104::-;39206:13;39239:7;39232:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39150:104;:::o;50439:52::-;;;;:::o;50828:577::-;50882:9;50894:5;;50882:17;;50943:1;50931:9;;:13;;;;:::i;:::-;50925:3;50909:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;50906:65;;;50962:1;50955:8;;50906:65;51006:4;51000:3;:10;;;;:::i;:::-;50987:9;:23;50979:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;51072:9;51058:23;;:10;:23;;;51050:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;51142:1;51130:9;;:13;;;;:::i;:::-;51124:3;51108:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;51100:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;51181:11;;;;;;;;;;;51173:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;51270:12;;51263:3;51236:24;51249:10;51236:12;:24::i;:::-;:30;;;;:::i;:::-;:46;;51228:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;51339:1;51328:8;;:12;;;;:::i;:::-;51322:3;:18;51313:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;51373:26;51383:10;51395:3;51373:9;:26::i;:::-;50875:530;50828:577;:::o;40829:288::-;40936:12;:10;:12::i;:::-;40924:24;;:8;:24;;;;40916:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41037:8;40992:18;:32;41011:12;:10;:12::i;:::-;40992:32;;;;;;;;;;;;;;;:42;41025:8;40992:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41090:8;41061:48;;41076:12;:10;:12::i;:::-;41061:48;;;41100:8;41061:48;;;;;;:::i;:::-;;;;;;;;40829:288;;:::o;41916:355::-;42075:28;42085:4;42091:2;42095:7;42075:9;:28::i;:::-;42136:48;42159:4;42165:2;42169:7;42178:5;42136:22;:48::i;:::-;42114:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;41916:355;;;;:::o;50398:36::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52609:94::-;10067:12;:10;:12::i;:::-;10056:23;;:7;:5;:7::i;:::-;:23;;;10048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52688:9:::1;52677:8;:20;;;;52609:94:::0;:::o;51578:527::-;51643:13;51681:16;51689:7;51681;:16::i;:::-;51665:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;51871:28;51902:10;:8;:10::i;:::-;51871:41;;51965:1;51940:14;51934:28;:32;:156;;;;;;;;;;;;;;;;;52010:14;52026:25;52043:7;52026:16;:25::i;:::-;52053:13;51993:74;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51934:156;51927:163;;;51578:527;;;:::o;50742:32::-;;;;;;;;;;;;;:::o;50641:46::-;;;;:::o;50692:45::-;;;;:::o;52202:107::-;52260:7;52283:20;52297:5;52283:13;:20::i;:::-;52276:27;;52202:107;;;:::o;52709:110::-;10067:12;:10;:12::i;:::-;10056:23;;:7;:5;:7::i;:::-;:23;;;10048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52800:13:::1;52785:12;:28;;;;52709:110:::0;:::o;41188:164::-;41285:4;41309:18;:25;41328:5;41309:25;;;;;;;;;;;;;;;:35;41335:8;41309:35;;;;;;;;;;;;;;;;;;;;;;;;;41302:42;;41188:164;;;;:::o;10745:201::-;10067:12;:10;:12::i;:::-;10056:23;;:7;:5;:7::i;:::-;:23;;;10048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10854:1:::1;10834:22;;:8;:22;;;;10826:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10910:28;10929:8;10910:18;:28::i;:::-;10745:201:::0;:::o;50496:43::-;;;;:::o;26615:157::-;26700:4;26739:25;26724:40;;;:11;:40;;;;26717:47;;26615:157;;;:::o;42526:111::-;42583:4;42617:12;;42607:7;:22;42600:29;;42526:111;;;:::o;8560:98::-;8613:7;8640:10;8633:17;;8560:98;:::o;47446:196::-;47588:2;47561:15;:24;47577:7;47561:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47626:7;47622:2;47606:28;;47615:5;47606:28;;;;;;;;;;;;47446:196;;;:::o;45326:2002::-;45441:35;45479:20;45491:7;45479:11;:20::i;:::-;45441:58;;45512:22;45554:13;:18;;;45538:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;45613:12;:10;:12::i;:::-;45589:36;;:20;45601:7;45589:11;:20::i;:::-;:36;;;45538:87;:154;;;;45642:50;45659:13;:18;;;45679:12;:10;:12::i;:::-;45642:16;:50::i;:::-;45538:154;45512:181;;45714:17;45706:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45829:4;45807:26;;:13;:18;;;:26;;;45799:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45909:1;45895:16;;:2;:16;;;;45887:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;45966:43;45988:4;45994:2;45998:7;46007:1;45966:21;:43::i;:::-;46074:49;46091:1;46095:7;46104:13;:18;;;46074:8;:49::i;:::-;46449:1;46419:12;:18;46432:4;46419:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46493:1;46465:12;:16;46478:2;46465:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46539:2;46511:11;:20;46523:7;46511:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;46601:15;46556:11;:20;46568:7;46556:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;46869:19;46901:1;46891:7;:11;46869:33;;46962:1;46921:43;;:11;:24;46933:11;46921:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;46917:295;;;46989:20;46997:11;46989:7;:20::i;:::-;46985:212;;;47066:13;:18;;;47034:11;:24;47046:11;47034:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;47149:13;:28;;;47107:11;:24;47119:11;47107:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;46985:212;46917:295;46394:829;47259:7;47255:2;47240:27;;47249:4;47240:27;;;;;;;;;;;;47278:42;47299:4;47305:2;47309:7;47318:1;47278:20;:42::i;:::-;45430:1898;;45326:2002;;;:::o;53729:1130::-;53813:1;53801:8;:13;;53793:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;53876:1;53860:12;;:17;;53852:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;53911:33;53947:24;;53911:60;;54016:12;;53988:25;:40;53980:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;54199:16;54257:1;54246:8;54218:25;:36;:40;54199:59;;54351:12;;54347:1;54336:8;:12;:27;54332:91;;;54408:1;54393:12;;:16;54382:27;;54332:91;54442:9;54454:25;54442:37;;54437:354;54486:8;54481:1;:13;54437:354;;54553:1;54522:33;;:11;:14;54534:1;54522:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;54518:260;;;54578:31;54612:14;54624:1;54612:11;:14::i;:::-;54578:48;;54669:9;:14;;;54647:11;:14;54659:1;54647:14;;;;;;;;;;;:19;;;:36;;;;;;;;;;;;;;;;;;54736:9;:24;;;54704:11;:14;54716:1;54704:14;;;;;;;;;;;:29;;;:56;;;;;;;;;;;;;;;;;;54557:221;54518:260;54496:3;;;;;;;54437:354;;;;54843:1;54832:8;:12;54805:24;:39;;;;54176:678;53784:1075;53729:1130;:::o;38191:537::-;38252:21;;:::i;:::-;38294:16;38302:7;38294;:16::i;:::-;38286:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38400:12;38415:7;38400:22;;38395:245;38432:1;38424:4;:9;38395:245;;38462:31;38496:11;:17;38508:4;38496:17;;;;;;;;;;;38462:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38562:1;38536:28;;:9;:14;;;:28;;;38532:93;;38596:9;38589:16;;;;;;38532:93;38443:197;38435:6;;;;;;;;38395:245;;;;38663:57;;;;;;;;;;:::i;:::-;;;;;;;;38191:537;;;;:::o;11106:191::-;11180:16;11199:6;;;;;;;;;;;11180:25;;11225:8;11216:6;;:17;;;;;;;;;;;;;;;;;;11280:8;11249:40;;11270:8;11249:40;;;;;;;;;;;;11169:128;11106:191;:::o;42645:104::-;42714:27;42724:2;42728:8;42714:27;;;;;;;;;;;;:9;:27::i;:::-;42645:104;;:::o;48207:804::-;48362:4;48383:15;:2;:13;;;:15::i;:::-;48379:625;;;48435:2;48419:36;;;48456:12;:10;:12::i;:::-;48470:4;48476:7;48485:5;48419:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48415:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48682:1;48665:6;:13;:18;48661:273;;;48708:61;;;;;;;;;;:::i;:::-;;;;;;;;48661:273;48884:6;48878:13;48869:6;48865:2;48861:15;48854:38;48415:534;48552:45;;;48542:55;;;:6;:55;;;;48535:62;;;;;48379:625;48988:4;48981:11;;48207:804;;;;;;;:::o;52929:102::-;52989:13;53018:7;53011:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52929:102;:::o;6122:723::-;6178:13;6408:1;6399:5;:10;6395:53;;;6426:10;;;;;;;;;;;;;;;;;;;;;6395:53;6458:12;6473:5;6458:20;;6489:14;6514:78;6529:1;6521:4;:9;6514:78;;6547:8;;;;;:::i;:::-;;;;6578:2;6570:10;;;;;:::i;:::-;;;6514:78;;;6602:19;6634:6;6624:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6602:39;;6652:154;6668:1;6659:5;:10;6652:154;;6696:1;6686:11;;;;;:::i;:::-;;;6763:2;6755:5;:10;;;;:::i;:::-;6742:2;:24;;;;:::i;:::-;6729:39;;6712:6;6719;6712:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6792:2;6783:11;;;;;:::i;:::-;;;6652:154;;;6830:6;6816:21;;;;;6122:723;;;;:::o;37760:229::-;37821:7;37866:1;37849:19;;:5;:19;;;;37841:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;37948:12;:19;37961:5;37948:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;37940:41;;37933:48;;37760:229;;;:::o;49499:159::-;;;;;:::o;50070:158::-;;;;;:::o;43112:163::-;43235:32;43241:2;43245:8;43255:5;43262:4;43235:5;:32::i;:::-;43112:163;;;:::o;12537:326::-;12597:4;12854:1;12832:7;:19;;;:23;12825:30;;12537:326;;;:::o;43534:1538::-;43673:20;43696:12;;43673:35;;43741:1;43727:16;;:2;:16;;;;43719:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;43812:1;43800:8;:13;;43792:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43871:61;43901:1;43905:2;43909:12;43923:8;43871:21;:61::i;:::-;44246:8;44210:12;:16;44223:2;44210:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44311:8;44270:12;:16;44283:2;44270:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44370:2;44337:11;:25;44349:12;44337:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44437:15;44387:11;:25;44399:12;44387:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44470:20;44493:12;44470:35;;44527:9;44522:415;44542:8;44538:1;:12;44522:415;;;44606:12;44602:2;44581:38;;44598:1;44581:38;;;;;;;;;;;;44642:4;44638:249;;;44705:59;44736:1;44740:2;44744:12;44758:5;44705:22;:59::i;:::-;44671:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;44638:249;44907:14;;;;;;;44552:3;;;;;;;44522:415;;;;44968:12;44953;:27;;;;44185:807;45004:60;45033:1;45037:2;45041:12;45055:8;45004:20;:60::i;:::-;43662:1410;43534: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:365::-;12438:3;12459:66;12523:1;12518:3;12459:66;:::i;:::-;12452:73;;12534:93;12623:3;12534:93;:::i;:::-;12652:2;12647:3;12643:12;12636:19;;12296:365;;;:::o;12667:366::-;12809:3;12830:67;12894:2;12889:3;12830:67;:::i;:::-;12823:74;;12906:93;12995:3;12906:93;:::i;:::-;13024:2;13019:3;13015:12;13008:19;;12667:366;;;:::o;13039:365::-;13181:3;13202:66;13266:1;13261:3;13202:66;:::i;:::-;13195:73;;13277:93;13366:3;13277:93;:::i;:::-;13395:2;13390:3;13386:12;13379:19;;13039:365;;;:::o;13410:366::-;13552:3;13573:67;13637:2;13632:3;13573:67;:::i;:::-;13566:74;;13649:93;13738:3;13649:93;:::i;:::-;13767:2;13762:3;13758:12;13751:19;;13410:366;;;:::o;13782:::-;13924:3;13945:67;14009:2;14004:3;13945:67;:::i;:::-;13938:74;;14021:93;14110:3;14021:93;:::i;:::-;14139:2;14134:3;14130:12;14123:19;;13782:366;;;:::o;14154:::-;14296:3;14317:67;14381:2;14376:3;14317:67;:::i;:::-;14310:74;;14393:93;14482:3;14393:93;:::i;:::-;14511:2;14506:3;14502:12;14495:19;;14154:366;;;:::o;14526:::-;14668:3;14689:67;14753:2;14748:3;14689:67;:::i;:::-;14682:74;;14765:93;14854:3;14765:93;:::i;:::-;14883:2;14878:3;14874:12;14867:19;;14526:366;;;:::o;14898:::-;15040:3;15061:67;15125:2;15120:3;15061:67;:::i;:::-;15054:74;;15137:93;15226:3;15137:93;:::i;:::-;15255:2;15250:3;15246:12;15239:19;;14898:366;;;:::o;15270:::-;15412:3;15433:67;15497:2;15492:3;15433:67;:::i;:::-;15426:74;;15509:93;15598:3;15509:93;:::i;:::-;15627:2;15622:3;15618:12;15611:19;;15270:366;;;:::o;15642:::-;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:398::-;17661:3;17682:83;17763:1;17758:3;17682:83;:::i;:::-;17675:90;;17774:93;17863:3;17774:93;:::i;:::-;17892:1;17887:3;17883:11;17876:18;;17502:398;;;:::o;17906:366::-;18048:3;18069:67;18133:2;18128:3;18069:67;:::i;:::-;18062:74;;18145:93;18234:3;18145:93;:::i;:::-;18263:2;18258:3;18254:12;18247:19;;17906:366;;;:::o;18278:::-;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:222::-;46776:34;46772:1;46764:6;46760:14;46753:58;46845:5;46840:2;46832:6;46828:15;46821:30;46636:222;:::o;46864:224::-;47004:34;47000:1;46992:6;46988:14;46981:58;47073:7;47068:2;47060:6;47056:15;47049:32;46864:224;:::o;47094:236::-;47234:34;47230:1;47222:6;47218:14;47211:58;47303:19;47298:2;47290:6;47286:15;47279:44;47094:236;:::o;47336:158::-;47476:10;47472:1;47464:6;47460:14;47453:34;47336:158;:::o;47500:178::-;47640:30;47636:1;47628:6;47624:14;47617:54;47500:178;:::o;47684:159::-;47824:11;47820:1;47812:6;47808:14;47801:35;47684:159;:::o;47849:244::-;47989:34;47985:1;47977:6;47973:14;47966:58;48058:27;48053:2;48045:6;48041:15;48034:52;47849:244;:::o;48099:174::-;48239:26;48235:1;48227:6;48223:14;48216:50;48099:174;:::o;48279:230::-;48419:34;48415:1;48407:6;48403:14;48396:58;48488:13;48483:2;48475:6;48471:15;48464:38;48279:230;:::o;48515:225::-;48655:34;48651:1;48643:6;48639:14;48632:58;48724:8;48719:2;48711:6;48707:15;48700:33;48515:225;:::o;48746:182::-;48886:34;48882:1;48874:6;48870:14;48863:58;48746:182;:::o;48934:174::-;49074:26;49070:1;49062:6;49058:14;49051:50;48934:174;:::o;49114:234::-;49254:34;49250:1;49242:6;49238:14;49231:58;49323:17;49318:2;49310:6;49306:15;49299:42;49114:234;:::o;49354:176::-;49494:28;49490:1;49482:6;49478:14;49471:52;49354:176;:::o;49536:237::-;49676:34;49672:1;49664:6;49660:14;49653:58;49745:20;49740:2;49732:6;49728:15;49721:45;49536:237;:::o;49779:179::-;49919:31;49915:1;49907:6;49903:14;49896:55;49779:179;:::o;49964:221::-;50104:34;50100:1;50092:6;50088:14;50081:58;50173:4;50168:2;50160:6;50156:15;50149:29;49964:221;:::o;50191:114::-;;:::o;50311:166::-;50451:18;50447:1;50439:6;50435:14;50428:42;50311:166;:::o;50483:238::-;50623:34;50619:1;50611:6;50607:14;50600:58;50692:21;50687:2;50679:6;50675:15;50668:46;50483:238;:::o;50727:220::-;50867:34;50863:1;50855:6;50851:14;50844:58;50936:3;50931:2;50923:6;50919:15;50912:28;50727:220;:::o;50953:227::-;51093:34;51089:1;51081:6;51077:14;51070:58;51162:10;51157:2;51149:6;51145:15;51138:35;50953:227;:::o;51186:169::-;51326:21;51322:1;51314:6;51310:14;51303:45;51186:169;:::o;51361:233::-;51501:34;51497:1;51489:6;51485:14;51478:58;51570:16;51565:2;51557:6;51553:15;51546:41;51361:233;:::o;51600:181::-;51740:33;51736:1;51728:6;51724:14;51717:57;51600:181;:::o;51787:234::-;51927:34;51923:1;51915:6;51911:14;51904:58;51996:17;51991:2;51983:6;51979:15;51972:42;51787:234;:::o;52027:232::-;52167:34;52163:1;52155:6;52151:14;52144:58;52236:15;52231:2;52223:6;52219:15;52212:40;52027:232;:::o;52265:169::-;52405:21;52401:1;52393:6;52389:14;52382:45;52265:169;:::o;52440:122::-;52513:24;52531:5;52513:24;:::i;:::-;52506:5;52503:35;52493:63;;52552:1;52549;52542:12;52493:63;52440:122;:::o;52568:116::-;52638:21;52653:5;52638:21;:::i;:::-;52631:5;52628:32;52618:60;;52674:1;52671;52664:12;52618:60;52568:116;:::o;52690:120::-;52762:23;52779:5;52762:23;:::i;:::-;52755:5;52752:34;52742:62;;52800:1;52797;52790:12;52742:62;52690:120;:::o;52816:122::-;52889:24;52907:5;52889:24;:::i;:::-;52882:5;52879:35;52869:63;;52928:1;52925;52918:12;52869:63;52816:122;:::o
Swarm Source
ipfs://cbb9dc4c10f80bc9887498509ea58a9521b0ae79add18869adb5b32caa894925
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.