ERC-721
Overview
Max Total Supply
4,444 UA
Holders
1,382
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 UALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
unitedAnons
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-09 */ // SPDX-License-Identifier: MIT // HHHHHHHHH HHHHHHHHH iiii // H:::::::H H:::::::H i::::i // H:::::::H H:::::::H iiii // HH::::::H H::::::HH // H:::::H H:::::H iiiiiii aaaaaaaaaaaaa nnnn nnnnnnnn ooooooooooo nnnn nnnnnnnn // H:::::H H:::::H i:::::i a::::::::::::a n:::nn::::::::nn oo:::::::::::oo n:::nn::::::::nn // H::::::HHHHH::::::H i::::i aaaaaaaaa:::::a n::::::::::::::nn o:::::::::::::::on::::::::::::::nn // H:::::::::::::::::H i::::i a::::a nn:::::::::::::::no:::::ooooo:::::onn:::::::::::::::n // H:::::::::::::::::H i::::i aaaaaaa:::::a n:::::nnnn:::::no::::o o::::o n:::::nnnn:::::n // H::::::HHHHH::::::H i::::i aa::::::::::::a n::::n n::::no::::o o::::o n::::n n::::n // H:::::H H:::::H i::::i a::::aaaa::::::a n::::n n::::no::::o o::::o n::::n n::::n // H:::::H H:::::H i::::i a::::a a:::::a n::::n n::::no::::o o::::o n::::n n::::n // HH::::::H H::::::HHi::::::i a::::a a:::::a n::::n n::::no:::::ooooo:::::o n::::n n::::n // H:::::::H H:::::::Hi::::::i a:::::aaaa::::::a n::::n n::::no:::::::::::::::o n::::n n::::n // H:::::::H H:::::::Hi::::::i a::::::::::aa:::a n::::n n::::n oo:::::::::::oo n::::n n::::n // HHHHHHHHH HHHHHHHHHiiiiiiii aaaaaaaaaa aaaa nnnnnn nnnnnn ooooooooooo nnnnnn nnnnnn // 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())) : "ipfs://QmQ8p3FoNVu8UBmb2uu5SBh7dXxLmfQcwMTcxDAG11sJ87/"; } /** * @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 unitedAnons is ERC721A, Ownable, ReentrancyGuard { string public baseURI = ""; uint public maxSupply = 4444; uint public maxPerWallet = 3; constructor() ERC721A("unitedAnons", "UA"){_safeMint(msg.sender,222);} // Founder has plans to do with 222 nfts! function mint(uint256 amount) external payable { require(amount>0,"anon u must mint atleast one"); require(msg.sender == tx.origin, "robots cant mint"); // because currently theres huge war between anons vs robots controled by AI require(totalSupply() + amount <= maxSupply,"anons has been minted out. to buy go to opensea"); require(numberMinted(msg.sender) + amount <= maxPerWallet, "leave some for other anons u can only mint 3."); _safeMint(msg.sender, amount); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } //when this function is used real metadata will reveal. function setBaseURI(string calldata baseURI_) external onlyOwner { baseURI = baseURI_; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function withdraw() external onlyOwner nonReentrant { //if generous anons donate some anon will take eth! if not all cool (bool anon, ) = payable(0xd10B5a529A30860651b40f831bC1167D61952b5a).call{value: address(this).balance}(""); require(anon, "Failed"); } }
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":"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":"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":"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":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600990805190602001906200002b929190620007bf565b5061115c600a556003600b553480156200004457600080fd5b506040518060400160405280600b81526020017f756e69746564416e6f6e730000000000000000000000000000000000000000008152506040518060400160405280600281526020017f55410000000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000c9929190620007bf565b508060029080519060200190620000e2929190620007bf565b50505062000105620000f96200012660201b60201c565b6200012e60201b60201c565b6001600881905550620001203360de620001f460201b60201c565b62000c99565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002168282604051806020016040528060008152506200021a60201b60201c565b5050565b6200022f83838360016200023460201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415620002ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a49062000a06565b60405180910390fd5b6000841415620002f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002eb9062000a28565b60405180910390fd5b620003096000868387620005d660201b60201c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015620005b157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156200059b57620005586000888488620005dc60201b60201c565b6200059a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200059190620009e4565b60405180910390fd5b5b81806001019250508080600101915050620004d7565b508060008190555050620005cf60008683876200079660201b60201c565b5050505050565b50505050565b60006200060a8473ffffffffffffffffffffffffffffffffffffffff166200079c60201b620016d61760201c565b1562000789578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200063c6200012660201b60201c565b8786866040518563ffffffff1660e01b815260040162000660949392919062000990565b602060405180830381600087803b1580156200067b57600080fd5b505af1925050508015620006af57506040513d601f19601f82011682018060405250810190620006ac919062000886565b60015b62000738573d8060008114620006e2576040519150601f19603f3d011682016040523d82523d6000602084013e620006e7565b606091505b5060008151141562000730576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200072790620009e4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200078e565b600190505b949350505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054620007cd9062000b17565b90600052602060002090601f016020900481019282620007f157600085556200083d565b82601f106200080c57805160ff19168380011785556200083d565b828001600101855582156200083d579182015b828111156200083c5782518255916020019190600101906200081f565b5b5090506200084c919062000850565b5090565b5b808211156200086b57600081600090555060010162000851565b5090565b600081519050620008808162000c7f565b92915050565b6000602082840312156200089f576200089e62000b7c565b5b6000620008af848285016200086f565b91505092915050565b620008c38162000a77565b82525050565b6000620008d68262000a4a565b620008e2818562000a55565b9350620008f481856020860162000ae1565b620008ff8162000b81565b840191505092915050565b60006200091960338362000a66565b9150620009268262000b92565b604082019050919050565b60006200094060218362000a66565b91506200094d8262000be1565b604082019050919050565b60006200096760288362000a66565b9150620009748262000c30565b604082019050919050565b6200098a8162000ad7565b82525050565b6000608082019050620009a76000830187620008b8565b620009b66020830186620008b8565b620009c560408301856200097f565b8181036060830152620009d98184620008c9565b905095945050505050565b60006020820190508181036000830152620009ff816200090a565b9050919050565b6000602082019050818103600083015262000a218162000931565b9050919050565b6000602082019050818103600083015262000a438162000958565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000a848262000ab7565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000b0157808201518184015260208101905062000ae4565b8381111562000b11576000848401525b50505050565b6000600282049050600182168062000b3057607f821691505b6020821081141562000b475762000b4662000b4d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b62000c8a8162000a8b565b811462000c9657600080fd5b50565b61414c8062000ca96000396000f3fe6080604052600436106101815760003560e01c80636c0360eb116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610573578063dc33e6811461059e578063e985e9c5146105db578063f2fde38b1461061857610181565b8063a22cb465146104e4578063b88d4fde1461050d578063c87b56dd1461053657610181565b80636c0360eb146103f357806370a082311461041e578063715018a61461045b5780638da5cb5b1461047257806395d89b411461049d578063a0712d68146104c857610181565b80632f745c591161013e578063453c231011610118578063453c2310146103255780634f6ccce71461035057806355f804b31461038d5780636352211e146103b657610181565b80632f745c59146102a85780633ccfd60b146102e557806342842e0e146102fc57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806323b872dd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612bc6565b610641565b6040516101ba91906131bb565b60405180910390f35b3480156101cf57600080fd5b506101d861078b565b6040516101e591906131d6565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612c6d565b61081d565b6040516102229190613154565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612b86565b6108a2565b005b34801561026057600080fd5b506102696109bb565b6040516102769190613538565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a19190612a70565b6109c4565b005b3480156102b457600080fd5b506102cf60048036038101906102ca9190612b86565b6109d4565b6040516102dc9190613538565b60405180910390f35b3480156102f157600080fd5b506102fa610bc6565b005b34801561030857600080fd5b50610323600480360381019061031e9190612a70565b610d5b565b005b34801561033157600080fd5b5061033a610d7b565b6040516103479190613538565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190612c6d565b610d81565b6040516103849190613538565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af9190612c20565b610dd4565b005b3480156103c257600080fd5b506103dd60048036038101906103d89190612c6d565b610e66565b6040516103ea9190613154565b60405180910390f35b3480156103ff57600080fd5b50610408610e7c565b60405161041591906131d6565b60405180910390f35b34801561042a57600080fd5b5061044560048036038101906104409190612a03565b610f0a565b6040516104529190613538565b60405180910390f35b34801561046757600080fd5b50610470610ff3565b005b34801561047e57600080fd5b5061048761107b565b6040516104949190613154565b60405180910390f35b3480156104a957600080fd5b506104b26110a5565b6040516104bf91906131d6565b60405180910390f35b6104e260048036038101906104dd9190612c6d565b611137565b005b3480156104f057600080fd5b5061050b60048036038101906105069190612b46565b6112a4565b005b34801561051957600080fd5b50610534600480360381019061052f9190612ac3565b611425565b005b34801561054257600080fd5b5061055d60048036038101906105589190612c6d565b611481565b60405161056a91906131d6565b60405180910390f35b34801561057f57600080fd5b50610588611532565b6040516105959190613538565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190612a03565b611538565b6040516105d29190613538565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190612a30565b61154a565b60405161060f91906131bb565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190612a03565b6115de565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061077457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107845750610783826116f9565b5b9050919050565b60606001805461079a90613768565b80601f01602080910402602001604051908101604052809291908181526020018280546107c690613768565b80156108135780601f106107e857610100808354040283529160200191610813565b820191906000526020600020905b8154815290600101906020018083116107f657829003601f168201915b5050505050905090565b600061082882611763565b610867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085e90613518565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ad82610e66565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561091e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091590613438565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661093d611770565b73ffffffffffffffffffffffffffffffffffffffff16148061096c575061096b81610966611770565b61154a565b5b6109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a2906132d8565b60405180910390fd5b6109b6838383611778565b505050565b60008054905090565b6109cf83838361182a565b505050565b60006109df83610f0a565b8210610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a17906131f8565b60405180910390fd5b6000610a2a6109bb565b905060008060005b83811015610b84576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b2457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b765786841415610b6d578195505050505050610bc0565b83806001019450505b508080600101915050610a32565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb7906134b8565b60405180910390fd5b92915050565b610bce611770565b73ffffffffffffffffffffffffffffffffffffffff16610bec61107b565b73ffffffffffffffffffffffffffffffffffffffff1614610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990613378565b60405180910390fd5b60026008541415610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f906134d8565b60405180910390fd5b6002600881905550600073d10b5a529a30860651b40f831bc1167d61952b5a73ffffffffffffffffffffffffffffffffffffffff1647604051610cca9061313f565b60006040518083038185875af1925050503d8060008114610d07576040519150601f19603f3d011682016040523d82523d6000602084013e610d0c565b606091505b5050905080610d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4790613258565b60405180910390fd5b506001600881905550565b610d7683838360405180602001604052806000815250611425565b505050565b600b5481565b6000610d8b6109bb565b8210610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390613278565b60405180910390fd5b819050919050565b610ddc611770565b73ffffffffffffffffffffffffffffffffffffffff16610dfa61107b565b73ffffffffffffffffffffffffffffffffffffffff1614610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4790613378565b60405180910390fd5b818160099190610e619291906127f7565b505050565b6000610e7182611d6a565b600001519050919050565b60098054610e8990613768565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb590613768565b8015610f025780601f10610ed757610100808354040283529160200191610f02565b820191906000526020600020905b815481529060010190602001808311610ee557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f72906132f8565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610ffb611770565b73ffffffffffffffffffffffffffffffffffffffff1661101961107b565b73ffffffffffffffffffffffffffffffffffffffff161461106f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106690613378565b60405180910390fd5b6110796000611f04565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546110b490613768565b80601f01602080910402602001604051908101604052809291908181526020018280546110e090613768565b801561112d5780601f106111025761010080835404028352916020019161112d565b820191906000526020600020905b81548152906001019060200180831161111057829003601f168201915b5050505050905090565b6000811161117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190613338565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df90613318565b60405180910390fd5b600a54816111f46109bb565b6111fe91906135f7565b111561123f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123690613418565b60405180910390fd5b600b548161124c33611538565b61125691906135f7565b1115611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90613398565b60405180910390fd5b6112a13382611fca565b50565b6112ac611770565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561131a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611311906133d8565b60405180910390fd5b8060066000611327611770565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113d4611770565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161141991906131bb565b60405180910390a35050565b61143084848461182a565b61143c84848484611fe8565b61147b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147290613458565b60405180910390fd5b50505050565b606061148c82611763565b6114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c2906133b8565b60405180910390fd5b60006114d561217f565b90506000815114156114ff576040518060600160405280603681526020016140e16036913961152a565b8061150984612211565b60405160200161151a92919061311b565b6040516020818303038152906040525b915050919050565b600a5481565b600061154382612372565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115e6611770565b73ffffffffffffffffffffffffffffffffffffffff1661160461107b565b73ffffffffffffffffffffffffffffffffffffffff161461165a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165190613378565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190613218565b60405180910390fd5b6116d381611f04565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061183582611d6a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661185c611770565b73ffffffffffffffffffffffffffffffffffffffff1614806118b85750611881611770565b73ffffffffffffffffffffffffffffffffffffffff166118a08461081d565b73ffffffffffffffffffffffffffffffffffffffff16145b806118d457506118d382600001516118ce611770565b61154a565b5b905080611916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190d906133f8565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197f90613358565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ef90613298565b60405180910390fd5b611a05858585600161245b565b611a156000848460000151611778565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611cfa57611c5981611763565b15611cf95782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d638585856001612461565b5050505050565b611d7261287d565b611d7b82611763565b611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db190613238565b60405180910390fd5b60008290505b60008110611ec3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611eb4578092505050611eff565b50808060019003915050611dc0565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef6906134f8565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fe4828260405180602001604052806000815250612467565b5050565b60006120098473ffffffffffffffffffffffffffffffffffffffff166116d6565b15612172578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612032611770565b8786866040518563ffffffff1660e01b8152600401612054949392919061316f565b602060405180830381600087803b15801561206e57600080fd5b505af192505050801561209f57506040513d601f19601f8201168201806040525081019061209c9190612bf3565b60015b612122573d80600081146120cf576040519150601f19603f3d011682016040523d82523d6000602084013e6120d4565b606091505b5060008151141561211a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211190613458565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612177565b600190505b949350505050565b60606009805461218e90613768565b80601f01602080910402602001604051908101604052809291908181526020018280546121ba90613768565b80156122075780601f106121dc57610100808354040283529160200191612207565b820191906000526020600020905b8154815290600101906020018083116121ea57829003601f168201915b5050505050905090565b60606000821415612259576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061236d565b600082905060005b6000821461228b578080612274906137cb565b915050600a82612284919061364d565b9150612261565b60008167ffffffffffffffff8111156122a7576122a6613901565b5b6040519080825280601f01601f1916602001820160405280156122d95781602001600182028036833780820191505090505b5090505b60008514612366576001826122f2919061367e565b9150600a856123019190613814565b603061230d91906135f7565b60f81b818381518110612323576123226138d2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561235f919061364d565b94506122dd565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123da906132b8565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b6124748383836001612479565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156124ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e690613478565b60405180910390fd5b6000841415612533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252a90613498565b60405180910390fd5b612540600086838761245b565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156127da57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156127c5576127856000888488611fe8565b6127c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bb90613458565b60405180910390fd5b5b8180600101925050808060010191505061270e565b5080600081905550506127f06000868387612461565b5050505050565b82805461280390613768565b90600052602060002090601f016020900481019282612825576000855561286c565b82601f1061283e57803560ff191683800117855561286c565b8280016001018555821561286c579182015b8281111561286b578235825591602001919060010190612850565b5b50905061287991906128b7565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156128d05760008160009055506001016128b8565b5090565b60006128e76128e284613578565b613553565b9050828152602081018484840111156129035761290261393f565b5b61290e848285613726565b509392505050565b60008135905061292581614084565b92915050565b60008135905061293a8161409b565b92915050565b60008135905061294f816140b2565b92915050565b600081519050612964816140b2565b92915050565b600082601f83011261297f5761297e613935565b5b813561298f8482602086016128d4565b91505092915050565b60008083601f8401126129ae576129ad613935565b5b8235905067ffffffffffffffff8111156129cb576129ca613930565b5b6020830191508360018202830111156129e7576129e661393a565b5b9250929050565b6000813590506129fd816140c9565b92915050565b600060208284031215612a1957612a18613949565b5b6000612a2784828501612916565b91505092915050565b60008060408385031215612a4757612a46613949565b5b6000612a5585828601612916565b9250506020612a6685828601612916565b9150509250929050565b600080600060608486031215612a8957612a88613949565b5b6000612a9786828701612916565b9350506020612aa886828701612916565b9250506040612ab9868287016129ee565b9150509250925092565b60008060008060808587031215612add57612adc613949565b5b6000612aeb87828801612916565b9450506020612afc87828801612916565b9350506040612b0d878288016129ee565b925050606085013567ffffffffffffffff811115612b2e57612b2d613944565b5b612b3a8782880161296a565b91505092959194509250565b60008060408385031215612b5d57612b5c613949565b5b6000612b6b85828601612916565b9250506020612b7c8582860161292b565b9150509250929050565b60008060408385031215612b9d57612b9c613949565b5b6000612bab85828601612916565b9250506020612bbc858286016129ee565b9150509250929050565b600060208284031215612bdc57612bdb613949565b5b6000612bea84828501612940565b91505092915050565b600060208284031215612c0957612c08613949565b5b6000612c1784828501612955565b91505092915050565b60008060208385031215612c3757612c36613949565b5b600083013567ffffffffffffffff811115612c5557612c54613944565b5b612c6185828601612998565b92509250509250929050565b600060208284031215612c8357612c82613949565b5b6000612c91848285016129ee565b91505092915050565b612ca3816136b2565b82525050565b612cb2816136c4565b82525050565b6000612cc3826135a9565b612ccd81856135bf565b9350612cdd818560208601613735565b612ce68161394e565b840191505092915050565b6000612cfc826135b4565b612d0681856135db565b9350612d16818560208601613735565b612d1f8161394e565b840191505092915050565b6000612d35826135b4565b612d3f81856135ec565b9350612d4f818560208601613735565b80840191505092915050565b6000612d686022836135db565b9150612d738261395f565b604082019050919050565b6000612d8b6026836135db565b9150612d96826139ae565b604082019050919050565b6000612dae602a836135db565b9150612db9826139fd565b604082019050919050565b6000612dd16006836135db565b9150612ddc82613a4c565b602082019050919050565b6000612df46023836135db565b9150612dff82613a75565b604082019050919050565b6000612e176025836135db565b9150612e2282613ac4565b604082019050919050565b6000612e3a6031836135db565b9150612e4582613b13565b604082019050919050565b6000612e5d6039836135db565b9150612e6882613b62565b604082019050919050565b6000612e80602b836135db565b9150612e8b82613bb1565b604082019050919050565b6000612ea36010836135db565b9150612eae82613c00565b602082019050919050565b6000612ec6601c836135db565b9150612ed182613c29565b602082019050919050565b6000612ee96026836135db565b9150612ef482613c52565b604082019050919050565b6000612f0c6020836135db565b9150612f1782613ca1565b602082019050919050565b6000612f2f602d836135db565b9150612f3a82613cca565b604082019050919050565b6000612f52602f836135db565b9150612f5d82613d19565b604082019050919050565b6000612f75601a836135db565b9150612f8082613d68565b602082019050919050565b6000612f986032836135db565b9150612fa382613d91565b604082019050919050565b6000612fbb602f836135db565b9150612fc682613de0565b604082019050919050565b6000612fde6022836135db565b9150612fe982613e2f565b604082019050919050565b60006130016000836135d0565b915061300c82613e7e565b600082019050919050565b60006130246033836135db565b915061302f82613e81565b604082019050919050565b60006130476021836135db565b915061305282613ed0565b604082019050919050565b600061306a6028836135db565b915061307582613f1f565b604082019050919050565b600061308d602e836135db565b915061309882613f6e565b604082019050919050565b60006130b0601f836135db565b91506130bb82613fbd565b602082019050919050565b60006130d3602f836135db565b91506130de82613fe6565b604082019050919050565b60006130f6602d836135db565b915061310182614035565b604082019050919050565b6131158161371c565b82525050565b60006131278285612d2a565b91506131338284612d2a565b91508190509392505050565b600061314a82612ff4565b9150819050919050565b60006020820190506131696000830184612c9a565b92915050565b60006080820190506131846000830187612c9a565b6131916020830186612c9a565b61319e604083018561310c565b81810360608301526131b08184612cb8565b905095945050505050565b60006020820190506131d06000830184612ca9565b92915050565b600060208201905081810360008301526131f08184612cf1565b905092915050565b6000602082019050818103600083015261321181612d5b565b9050919050565b6000602082019050818103600083015261323181612d7e565b9050919050565b6000602082019050818103600083015261325181612da1565b9050919050565b6000602082019050818103600083015261327181612dc4565b9050919050565b6000602082019050818103600083015261329181612de7565b9050919050565b600060208201905081810360008301526132b181612e0a565b9050919050565b600060208201905081810360008301526132d181612e2d565b9050919050565b600060208201905081810360008301526132f181612e50565b9050919050565b6000602082019050818103600083015261331181612e73565b9050919050565b6000602082019050818103600083015261333181612e96565b9050919050565b6000602082019050818103600083015261335181612eb9565b9050919050565b6000602082019050818103600083015261337181612edc565b9050919050565b6000602082019050818103600083015261339181612eff565b9050919050565b600060208201905081810360008301526133b181612f22565b9050919050565b600060208201905081810360008301526133d181612f45565b9050919050565b600060208201905081810360008301526133f181612f68565b9050919050565b6000602082019050818103600083015261341181612f8b565b9050919050565b6000602082019050818103600083015261343181612fae565b9050919050565b6000602082019050818103600083015261345181612fd1565b9050919050565b6000602082019050818103600083015261347181613017565b9050919050565b600060208201905081810360008301526134918161303a565b9050919050565b600060208201905081810360008301526134b18161305d565b9050919050565b600060208201905081810360008301526134d181613080565b9050919050565b600060208201905081810360008301526134f1816130a3565b9050919050565b60006020820190508181036000830152613511816130c6565b9050919050565b60006020820190508181036000830152613531816130e9565b9050919050565b600060208201905061354d600083018461310c565b92915050565b600061355d61356e565b9050613569828261379a565b919050565b6000604051905090565b600067ffffffffffffffff82111561359357613592613901565b5b61359c8261394e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136028261371c565b915061360d8361371c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561364257613641613845565b5b828201905092915050565b60006136588261371c565b91506136638361371c565b92508261367357613672613874565b5b828204905092915050565b60006136898261371c565b91506136948361371c565b9250828210156136a7576136a6613845565b5b828203905092915050565b60006136bd826136fc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613753578082015181840152602081019050613738565b83811115613762576000848401525b50505050565b6000600282049050600182168061378057607f821691505b60208210811415613794576137936138a3565b5b50919050565b6137a38261394e565b810181811067ffffffffffffffff821117156137c2576137c1613901565b5b80604052505050565b60006137d68261371c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561380957613808613845565b5b600182019050919050565b600061381f8261371c565b915061382a8361371c565b92508261383a57613839613874565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4661696c65640000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f726f626f74732063616e74206d696e7400000000000000000000000000000000600082015250565b7f616e6f6e2075206d757374206d696e742061746c65617374206f6e6500000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6c6561766520736f6d6520666f72206f7468657220616e6f6e7320752063616e60008201527f206f6e6c79206d696e7420332e00000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f616e6f6e7320686173206265656e206d696e746564206f75742e20746f20627560008201527f7920676f20746f206f70656e7365610000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61408d816136b2565b811461409857600080fd5b50565b6140a4816136c4565b81146140af57600080fd5b50565b6140bb816136d0565b81146140c657600080fd5b50565b6140d28161371c565b81146140dd57600080fd5b5056fe697066733a2f2f516d51387033466f4e56753855426d6232757535534268376458784c6d665163774d5463784441473131734a38372fa264697066735822122049cbb14443f9797304120a7752ec5c2496bbe1afd44f7cf0aba9e0c98cf2b75e64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101815760003560e01c80636c0360eb116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610573578063dc33e6811461059e578063e985e9c5146105db578063f2fde38b1461061857610181565b8063a22cb465146104e4578063b88d4fde1461050d578063c87b56dd1461053657610181565b80636c0360eb146103f357806370a082311461041e578063715018a61461045b5780638da5cb5b1461047257806395d89b411461049d578063a0712d68146104c857610181565b80632f745c591161013e578063453c231011610118578063453c2310146103255780634f6ccce71461035057806355f804b31461038d5780636352211e146103b657610181565b80632f745c59146102a85780633ccfd60b146102e557806342842e0e146102fc57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806323b872dd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612bc6565b610641565b6040516101ba91906131bb565b60405180910390f35b3480156101cf57600080fd5b506101d861078b565b6040516101e591906131d6565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612c6d565b61081d565b6040516102229190613154565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612b86565b6108a2565b005b34801561026057600080fd5b506102696109bb565b6040516102769190613538565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a19190612a70565b6109c4565b005b3480156102b457600080fd5b506102cf60048036038101906102ca9190612b86565b6109d4565b6040516102dc9190613538565b60405180910390f35b3480156102f157600080fd5b506102fa610bc6565b005b34801561030857600080fd5b50610323600480360381019061031e9190612a70565b610d5b565b005b34801561033157600080fd5b5061033a610d7b565b6040516103479190613538565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190612c6d565b610d81565b6040516103849190613538565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af9190612c20565b610dd4565b005b3480156103c257600080fd5b506103dd60048036038101906103d89190612c6d565b610e66565b6040516103ea9190613154565b60405180910390f35b3480156103ff57600080fd5b50610408610e7c565b60405161041591906131d6565b60405180910390f35b34801561042a57600080fd5b5061044560048036038101906104409190612a03565b610f0a565b6040516104529190613538565b60405180910390f35b34801561046757600080fd5b50610470610ff3565b005b34801561047e57600080fd5b5061048761107b565b6040516104949190613154565b60405180910390f35b3480156104a957600080fd5b506104b26110a5565b6040516104bf91906131d6565b60405180910390f35b6104e260048036038101906104dd9190612c6d565b611137565b005b3480156104f057600080fd5b5061050b60048036038101906105069190612b46565b6112a4565b005b34801561051957600080fd5b50610534600480360381019061052f9190612ac3565b611425565b005b34801561054257600080fd5b5061055d60048036038101906105589190612c6d565b611481565b60405161056a91906131d6565b60405180910390f35b34801561057f57600080fd5b50610588611532565b6040516105959190613538565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190612a03565b611538565b6040516105d29190613538565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190612a30565b61154a565b60405161060f91906131bb565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190612a03565b6115de565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061077457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107845750610783826116f9565b5b9050919050565b60606001805461079a90613768565b80601f01602080910402602001604051908101604052809291908181526020018280546107c690613768565b80156108135780601f106107e857610100808354040283529160200191610813565b820191906000526020600020905b8154815290600101906020018083116107f657829003601f168201915b5050505050905090565b600061082882611763565b610867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085e90613518565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ad82610e66565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561091e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091590613438565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661093d611770565b73ffffffffffffffffffffffffffffffffffffffff16148061096c575061096b81610966611770565b61154a565b5b6109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a2906132d8565b60405180910390fd5b6109b6838383611778565b505050565b60008054905090565b6109cf83838361182a565b505050565b60006109df83610f0a565b8210610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a17906131f8565b60405180910390fd5b6000610a2a6109bb565b905060008060005b83811015610b84576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b2457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b765786841415610b6d578195505050505050610bc0565b83806001019450505b508080600101915050610a32565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb7906134b8565b60405180910390fd5b92915050565b610bce611770565b73ffffffffffffffffffffffffffffffffffffffff16610bec61107b565b73ffffffffffffffffffffffffffffffffffffffff1614610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990613378565b60405180910390fd5b60026008541415610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f906134d8565b60405180910390fd5b6002600881905550600073d10b5a529a30860651b40f831bc1167d61952b5a73ffffffffffffffffffffffffffffffffffffffff1647604051610cca9061313f565b60006040518083038185875af1925050503d8060008114610d07576040519150601f19603f3d011682016040523d82523d6000602084013e610d0c565b606091505b5050905080610d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4790613258565b60405180910390fd5b506001600881905550565b610d7683838360405180602001604052806000815250611425565b505050565b600b5481565b6000610d8b6109bb565b8210610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390613278565b60405180910390fd5b819050919050565b610ddc611770565b73ffffffffffffffffffffffffffffffffffffffff16610dfa61107b565b73ffffffffffffffffffffffffffffffffffffffff1614610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4790613378565b60405180910390fd5b818160099190610e619291906127f7565b505050565b6000610e7182611d6a565b600001519050919050565b60098054610e8990613768565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb590613768565b8015610f025780601f10610ed757610100808354040283529160200191610f02565b820191906000526020600020905b815481529060010190602001808311610ee557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f72906132f8565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610ffb611770565b73ffffffffffffffffffffffffffffffffffffffff1661101961107b565b73ffffffffffffffffffffffffffffffffffffffff161461106f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106690613378565b60405180910390fd5b6110796000611f04565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546110b490613768565b80601f01602080910402602001604051908101604052809291908181526020018280546110e090613768565b801561112d5780601f106111025761010080835404028352916020019161112d565b820191906000526020600020905b81548152906001019060200180831161111057829003601f168201915b5050505050905090565b6000811161117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190613338565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df90613318565b60405180910390fd5b600a54816111f46109bb565b6111fe91906135f7565b111561123f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123690613418565b60405180910390fd5b600b548161124c33611538565b61125691906135f7565b1115611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90613398565b60405180910390fd5b6112a13382611fca565b50565b6112ac611770565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561131a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611311906133d8565b60405180910390fd5b8060066000611327611770565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113d4611770565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161141991906131bb565b60405180910390a35050565b61143084848461182a565b61143c84848484611fe8565b61147b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147290613458565b60405180910390fd5b50505050565b606061148c82611763565b6114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c2906133b8565b60405180910390fd5b60006114d561217f565b90506000815114156114ff576040518060600160405280603681526020016140e16036913961152a565b8061150984612211565b60405160200161151a92919061311b565b6040516020818303038152906040525b915050919050565b600a5481565b600061154382612372565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115e6611770565b73ffffffffffffffffffffffffffffffffffffffff1661160461107b565b73ffffffffffffffffffffffffffffffffffffffff161461165a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165190613378565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190613218565b60405180910390fd5b6116d381611f04565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061183582611d6a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661185c611770565b73ffffffffffffffffffffffffffffffffffffffff1614806118b85750611881611770565b73ffffffffffffffffffffffffffffffffffffffff166118a08461081d565b73ffffffffffffffffffffffffffffffffffffffff16145b806118d457506118d382600001516118ce611770565b61154a565b5b905080611916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190d906133f8565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197f90613358565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ef90613298565b60405180910390fd5b611a05858585600161245b565b611a156000848460000151611778565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611cfa57611c5981611763565b15611cf95782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d638585856001612461565b5050505050565b611d7261287d565b611d7b82611763565b611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db190613238565b60405180910390fd5b60008290505b60008110611ec3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611eb4578092505050611eff565b50808060019003915050611dc0565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef6906134f8565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fe4828260405180602001604052806000815250612467565b5050565b60006120098473ffffffffffffffffffffffffffffffffffffffff166116d6565b15612172578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612032611770565b8786866040518563ffffffff1660e01b8152600401612054949392919061316f565b602060405180830381600087803b15801561206e57600080fd5b505af192505050801561209f57506040513d601f19601f8201168201806040525081019061209c9190612bf3565b60015b612122573d80600081146120cf576040519150601f19603f3d011682016040523d82523d6000602084013e6120d4565b606091505b5060008151141561211a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211190613458565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612177565b600190505b949350505050565b60606009805461218e90613768565b80601f01602080910402602001604051908101604052809291908181526020018280546121ba90613768565b80156122075780601f106121dc57610100808354040283529160200191612207565b820191906000526020600020905b8154815290600101906020018083116121ea57829003601f168201915b5050505050905090565b60606000821415612259576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061236d565b600082905060005b6000821461228b578080612274906137cb565b915050600a82612284919061364d565b9150612261565b60008167ffffffffffffffff8111156122a7576122a6613901565b5b6040519080825280601f01601f1916602001820160405280156122d95781602001600182028036833780820191505090505b5090505b60008514612366576001826122f2919061367e565b9150600a856123019190613814565b603061230d91906135f7565b60f81b818381518110612323576123226138d2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561235f919061364d565b94506122dd565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123da906132b8565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b6124748383836001612479565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156124ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e690613478565b60405180910390fd5b6000841415612533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252a90613498565b60405180910390fd5b612540600086838761245b565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156127da57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156127c5576127856000888488611fe8565b6127c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bb90613458565b60405180910390fd5b5b8180600101925050808060010191505061270e565b5080600081905550506127f06000868387612461565b5050505050565b82805461280390613768565b90600052602060002090601f016020900481019282612825576000855561286c565b82601f1061283e57803560ff191683800117855561286c565b8280016001018555821561286c579182015b8281111561286b578235825591602001919060010190612850565b5b50905061287991906128b7565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156128d05760008160009055506001016128b8565b5090565b60006128e76128e284613578565b613553565b9050828152602081018484840111156129035761290261393f565b5b61290e848285613726565b509392505050565b60008135905061292581614084565b92915050565b60008135905061293a8161409b565b92915050565b60008135905061294f816140b2565b92915050565b600081519050612964816140b2565b92915050565b600082601f83011261297f5761297e613935565b5b813561298f8482602086016128d4565b91505092915050565b60008083601f8401126129ae576129ad613935565b5b8235905067ffffffffffffffff8111156129cb576129ca613930565b5b6020830191508360018202830111156129e7576129e661393a565b5b9250929050565b6000813590506129fd816140c9565b92915050565b600060208284031215612a1957612a18613949565b5b6000612a2784828501612916565b91505092915050565b60008060408385031215612a4757612a46613949565b5b6000612a5585828601612916565b9250506020612a6685828601612916565b9150509250929050565b600080600060608486031215612a8957612a88613949565b5b6000612a9786828701612916565b9350506020612aa886828701612916565b9250506040612ab9868287016129ee565b9150509250925092565b60008060008060808587031215612add57612adc613949565b5b6000612aeb87828801612916565b9450506020612afc87828801612916565b9350506040612b0d878288016129ee565b925050606085013567ffffffffffffffff811115612b2e57612b2d613944565b5b612b3a8782880161296a565b91505092959194509250565b60008060408385031215612b5d57612b5c613949565b5b6000612b6b85828601612916565b9250506020612b7c8582860161292b565b9150509250929050565b60008060408385031215612b9d57612b9c613949565b5b6000612bab85828601612916565b9250506020612bbc858286016129ee565b9150509250929050565b600060208284031215612bdc57612bdb613949565b5b6000612bea84828501612940565b91505092915050565b600060208284031215612c0957612c08613949565b5b6000612c1784828501612955565b91505092915050565b60008060208385031215612c3757612c36613949565b5b600083013567ffffffffffffffff811115612c5557612c54613944565b5b612c6185828601612998565b92509250509250929050565b600060208284031215612c8357612c82613949565b5b6000612c91848285016129ee565b91505092915050565b612ca3816136b2565b82525050565b612cb2816136c4565b82525050565b6000612cc3826135a9565b612ccd81856135bf565b9350612cdd818560208601613735565b612ce68161394e565b840191505092915050565b6000612cfc826135b4565b612d0681856135db565b9350612d16818560208601613735565b612d1f8161394e565b840191505092915050565b6000612d35826135b4565b612d3f81856135ec565b9350612d4f818560208601613735565b80840191505092915050565b6000612d686022836135db565b9150612d738261395f565b604082019050919050565b6000612d8b6026836135db565b9150612d96826139ae565b604082019050919050565b6000612dae602a836135db565b9150612db9826139fd565b604082019050919050565b6000612dd16006836135db565b9150612ddc82613a4c565b602082019050919050565b6000612df46023836135db565b9150612dff82613a75565b604082019050919050565b6000612e176025836135db565b9150612e2282613ac4565b604082019050919050565b6000612e3a6031836135db565b9150612e4582613b13565b604082019050919050565b6000612e5d6039836135db565b9150612e6882613b62565b604082019050919050565b6000612e80602b836135db565b9150612e8b82613bb1565b604082019050919050565b6000612ea36010836135db565b9150612eae82613c00565b602082019050919050565b6000612ec6601c836135db565b9150612ed182613c29565b602082019050919050565b6000612ee96026836135db565b9150612ef482613c52565b604082019050919050565b6000612f0c6020836135db565b9150612f1782613ca1565b602082019050919050565b6000612f2f602d836135db565b9150612f3a82613cca565b604082019050919050565b6000612f52602f836135db565b9150612f5d82613d19565b604082019050919050565b6000612f75601a836135db565b9150612f8082613d68565b602082019050919050565b6000612f986032836135db565b9150612fa382613d91565b604082019050919050565b6000612fbb602f836135db565b9150612fc682613de0565b604082019050919050565b6000612fde6022836135db565b9150612fe982613e2f565b604082019050919050565b60006130016000836135d0565b915061300c82613e7e565b600082019050919050565b60006130246033836135db565b915061302f82613e81565b604082019050919050565b60006130476021836135db565b915061305282613ed0565b604082019050919050565b600061306a6028836135db565b915061307582613f1f565b604082019050919050565b600061308d602e836135db565b915061309882613f6e565b604082019050919050565b60006130b0601f836135db565b91506130bb82613fbd565b602082019050919050565b60006130d3602f836135db565b91506130de82613fe6565b604082019050919050565b60006130f6602d836135db565b915061310182614035565b604082019050919050565b6131158161371c565b82525050565b60006131278285612d2a565b91506131338284612d2a565b91508190509392505050565b600061314a82612ff4565b9150819050919050565b60006020820190506131696000830184612c9a565b92915050565b60006080820190506131846000830187612c9a565b6131916020830186612c9a565b61319e604083018561310c565b81810360608301526131b08184612cb8565b905095945050505050565b60006020820190506131d06000830184612ca9565b92915050565b600060208201905081810360008301526131f08184612cf1565b905092915050565b6000602082019050818103600083015261321181612d5b565b9050919050565b6000602082019050818103600083015261323181612d7e565b9050919050565b6000602082019050818103600083015261325181612da1565b9050919050565b6000602082019050818103600083015261327181612dc4565b9050919050565b6000602082019050818103600083015261329181612de7565b9050919050565b600060208201905081810360008301526132b181612e0a565b9050919050565b600060208201905081810360008301526132d181612e2d565b9050919050565b600060208201905081810360008301526132f181612e50565b9050919050565b6000602082019050818103600083015261331181612e73565b9050919050565b6000602082019050818103600083015261333181612e96565b9050919050565b6000602082019050818103600083015261335181612eb9565b9050919050565b6000602082019050818103600083015261337181612edc565b9050919050565b6000602082019050818103600083015261339181612eff565b9050919050565b600060208201905081810360008301526133b181612f22565b9050919050565b600060208201905081810360008301526133d181612f45565b9050919050565b600060208201905081810360008301526133f181612f68565b9050919050565b6000602082019050818103600083015261341181612f8b565b9050919050565b6000602082019050818103600083015261343181612fae565b9050919050565b6000602082019050818103600083015261345181612fd1565b9050919050565b6000602082019050818103600083015261347181613017565b9050919050565b600060208201905081810360008301526134918161303a565b9050919050565b600060208201905081810360008301526134b18161305d565b9050919050565b600060208201905081810360008301526134d181613080565b9050919050565b600060208201905081810360008301526134f1816130a3565b9050919050565b60006020820190508181036000830152613511816130c6565b9050919050565b60006020820190508181036000830152613531816130e9565b9050919050565b600060208201905061354d600083018461310c565b92915050565b600061355d61356e565b9050613569828261379a565b919050565b6000604051905090565b600067ffffffffffffffff82111561359357613592613901565b5b61359c8261394e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136028261371c565b915061360d8361371c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561364257613641613845565b5b828201905092915050565b60006136588261371c565b91506136638361371c565b92508261367357613672613874565b5b828204905092915050565b60006136898261371c565b91506136948361371c565b9250828210156136a7576136a6613845565b5b828203905092915050565b60006136bd826136fc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613753578082015181840152602081019050613738565b83811115613762576000848401525b50505050565b6000600282049050600182168061378057607f821691505b60208210811415613794576137936138a3565b5b50919050565b6137a38261394e565b810181811067ffffffffffffffff821117156137c2576137c1613901565b5b80604052505050565b60006137d68261371c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561380957613808613845565b5b600182019050919050565b600061381f8261371c565b915061382a8361371c565b92508261383a57613839613874565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4661696c65640000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f726f626f74732063616e74206d696e7400000000000000000000000000000000600082015250565b7f616e6f6e2075206d757374206d696e742061746c65617374206f6e6500000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6c6561766520736f6d6520666f72206f7468657220616e6f6e7320752063616e60008201527f206f6e6c79206d696e7420332e00000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f616e6f6e7320686173206265656e206d696e746564206f75742e20746f20627560008201527f7920676f20746f206f70656e7365610000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61408d816136b2565b811461409857600080fd5b50565b6140a4816136c4565b81146140af57600080fd5b50565b6140bb816136d0565b81146140c657600080fd5b50565b6140d28161371c565b81146140dd57600080fd5b5056fe697066733a2f2f516d51387033466f4e56753855426d6232757535534268376458784c6d665163774d5463784441473131734a38372fa264697066735822122049cbb14443f9797304120a7752ec5c2496bbe1afd44f7cf0aba9e0c98cf2b75e64736f6c63430008070033
Deployed Bytecode Sourcemap
52984:1449:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39788:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41674:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43292:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42813:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38045:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44168:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38709:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54152:276;;;;;;;;;;;;;:::i;:::-;;44409:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53113:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38222:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53942:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41483:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53049:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40224:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13180:103;;;;;;;;;;;;;:::i;:::-;;12529:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41843:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53264:500;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43578:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44665:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42018:391;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53080:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53770:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43937:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13438:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39788:372;39890:4;39942:25;39927:40;;;:11;:40;;;;:105;;;;39999:33;39984:48;;;:11;:48;;;;39927:105;:172;;;;40064:35;40049:50;;;:11;:50;;;;39927:172;:225;;;;40116:36;40140:11;40116:23;:36::i;:::-;39927:225;39907:245;;39788:372;;;:::o;41674:100::-;41728:13;41761:5;41754:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41674:100;:::o;43292:214::-;43360:7;43388:16;43396:7;43388;:16::i;:::-;43380:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;43474:15;:24;43490:7;43474:24;;;;;;;;;;;;;;;;;;;;;43467:31;;43292:214;;;:::o;42813:413::-;42886:13;42902:24;42918:7;42902:15;:24::i;:::-;42886:40;;42951:5;42945:11;;:2;:11;;;;42937:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;43046:5;43030:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;43055:37;43072:5;43079:12;:10;:12::i;:::-;43055:16;:37::i;:::-;43030:62;43008:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43190:28;43199:2;43203:7;43212:5;43190:8;:28::i;:::-;42875:351;42813:413;;:::o;38045:100::-;38098:7;38125:12;;38118:19;;38045:100;:::o;44168:170::-;44302:28;44312:4;44318:2;44322:7;44302:9;:28::i;:::-;44168:170;;;:::o;38709:1007::-;38798:7;38834:16;38844:5;38834:9;:16::i;:::-;38826:5;:24;38818:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38900:22;38925:13;:11;:13::i;:::-;38900:38;;38949:19;38979:25;39168:9;39163:466;39183:14;39179:1;:18;39163:466;;;39223:31;39257:11;:14;39269:1;39257:14;;;;;;;;;;;39223:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39320:1;39294:28;;:9;:14;;;:28;;;39290:111;;39367:9;:14;;;39347:34;;39290:111;39444:5;39423:26;;:17;:26;;;39419:195;;;39493:5;39478:11;:20;39474:85;;;39534:1;39527:8;;;;;;;;;39474:85;39581:13;;;;;;;39419:195;39204:425;39199:3;;;;;;;39163:466;;;;39652:56;;;;;;;;;;:::i;:::-;;;;;;;;38709:1007;;;;;:::o;54152:276::-;12760:12;:10;:12::i;:::-;12749:23;;:7;:5;:7::i;:::-;:23;;;12741:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7503:1:::1;8101:7;;:19;;8093:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7503:1;8234:7;:18;;;;54285:9:::2;54308:42;54300:56;;54364:21;54300:90;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54284:106;;;54405:4;54397:23;;;;;;;;;;;;:::i;:::-;;;;;;;;;54204:224;7459:1:::1;8413:7;:22;;;;54152:276::o:0;44409:185::-;44547:39;44564:4;44570:2;44574:7;44547:39;;;;;;;;;;;;:16;:39::i;:::-;44409:185;;;:::o;53113:28::-;;;;:::o;38222:187::-;38289:7;38325:13;:11;:13::i;:::-;38317:5;:21;38309:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;38396:5;38389:12;;38222:187;;;:::o;53942:96::-;12760:12;:10;:12::i;:::-;12749:23;;:7;:5;:7::i;:::-;:23;;;12741:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54024:8:::1;;54014:7;:18;;;;;;;:::i;:::-;;53942:96:::0;;:::o;41483:124::-;41547:7;41574:20;41586:7;41574:11;:20::i;:::-;:25;;;41567:32;;41483:124;;;:::o;53049:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40224:221::-;40288:7;40333:1;40316:19;;:5;:19;;;;40308:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;40409:12;:19;40422:5;40409:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;40401:36;;40394:43;;40224:221;;;:::o;13180:103::-;12760:12;:10;:12::i;:::-;12749:23;;:7;:5;:7::i;:::-;:23;;;12741:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13245:30:::1;13272:1;13245:18;:30::i;:::-;13180:103::o:0;12529:87::-;12575:7;12602:6;;;;;;;;;;;12595:13;;12529:87;:::o;41843:104::-;41899:13;41932:7;41925:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41843:104;:::o;53264:500::-;53336:1;53329:6;:8;53321:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;53398:9;53384:23;;:10;:23;;;53376:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;53546:9;;53536:6;53520:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;53512:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;53658:12;;53648:6;53621:24;53634:10;53621:12;:24::i;:::-;:33;;;;:::i;:::-;:49;;53613:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;53729:29;53739:10;53751:6;53729:9;:29::i;:::-;53264:500;:::o;43578:288::-;43685:12;:10;:12::i;:::-;43673:24;;:8;:24;;;;43665:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;43786:8;43741:18;:32;43760:12;:10;:12::i;:::-;43741:32;;;;;;;;;;;;;;;:42;43774:8;43741:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;43839:8;43810:48;;43825:12;:10;:12::i;:::-;43810:48;;;43849:8;43810:48;;;;;;:::i;:::-;;;;;;;;43578:288;;:::o;44665:355::-;44824:28;44834:4;44840:2;44844:7;44824:9;:28::i;:::-;44885:48;44908:4;44914:2;44918:7;44927:5;44885:22;:48::i;:::-;44863:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;44665:355;;;;:::o;42018:391::-;42091:13;42125:16;42133:7;42125;:16::i;:::-;42117:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;42206:21;42230:10;:8;:10::i;:::-;42206:34;;42283:1;42264:7;42258:21;:26;;:141;;;;;;;;;;;;;;;;;;;;;;42311:7;42320:18;:7;:16;:18::i;:::-;42294:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42258:141;42251:148;;;42018:391;;;:::o;53080:28::-;;;;:::o;53770:107::-;53828:7;53851:20;53865:5;53851:13;:20::i;:::-;53844:27;;53770:107;;;:::o;43937:164::-;44034:4;44058:18;:25;44077:5;44058:25;;;;;;;;;;;;;;;:35;44084:8;44058:35;;;;;;;;;;;;;;;;;;;;;;;;;44051:42;;43937:164;;;;:::o;13438:201::-;12760:12;:10;:12::i;:::-;12749:23;;:7;:5;:7::i;:::-;:23;;;12741:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13547:1:::1;13527:22;;:8;:22;;;;13519:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13603:28;13622:8;13603:18;:28::i;:::-;13438:201:::0;:::o;15230:326::-;15290:4;15547:1;15525:7;:19;;;:23;15518:30;;15230:326;;;:::o;29308:157::-;29393:4;29432:25;29417:40;;;:11;:40;;;;29410:47;;29308:157;;;:::o;45275:111::-;45332:4;45366:12;;45356:7;:22;45349:29;;45275:111;;;:::o;11253:98::-;11306:7;11333:10;11326:17;;11253:98;:::o;50195:196::-;50337:2;50310:15;:24;50326:7;50310:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;50375:7;50371:2;50355:28;;50364:5;50355:28;;;;;;;;;;;;50195:196;;;:::o;48075:2002::-;48190:35;48228:20;48240:7;48228:11;:20::i;:::-;48190:58;;48261:22;48303:13;:18;;;48287:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;48362:12;:10;:12::i;:::-;48338:36;;:20;48350:7;48338:11;:20::i;:::-;:36;;;48287:87;:154;;;;48391:50;48408:13;:18;;;48428:12;:10;:12::i;:::-;48391:16;:50::i;:::-;48287:154;48261:181;;48463:17;48455:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;48578:4;48556:26;;:13;:18;;;:26;;;48548:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;48658:1;48644:16;;:2;:16;;;;48636:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;48715:43;48737:4;48743:2;48747:7;48756:1;48715:21;:43::i;:::-;48823:49;48840:1;48844:7;48853:13;:18;;;48823:8;:49::i;:::-;49198:1;49168:12;:18;49181:4;49168:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49242:1;49214:12;:16;49227:2;49214:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49288:2;49260:11;:20;49272:7;49260:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;49350:15;49305:11;:20;49317:7;49305:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;49618:19;49650:1;49640:7;:11;49618:33;;49711:1;49670:43;;:11;:24;49682:11;49670:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;49666:295;;;49738:20;49746:11;49738:7;:20::i;:::-;49734:212;;;49815:13;:18;;;49783:11;:24;49795:11;49783:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;49898:13;:28;;;49856:11;:24;49868:11;49856:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;49734:212;49666:295;49143:829;50008:7;50004:2;49989:27;;49998:4;49989:27;;;;;;;;;;;;50027:42;50048:4;50054:2;50058:7;50067:1;50027:20;:42::i;:::-;48179:1898;;48075:2002;;;:::o;40884:537::-;40945:21;;:::i;:::-;40987:16;40995:7;40987;:16::i;:::-;40979:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;41093:12;41108:7;41093:22;;41088:245;41125:1;41117:4;:9;41088:245;;41155:31;41189:11;:17;41201:4;41189:17;;;;;;;;;;;41155:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41255:1;41229:28;;:9;:14;;;:28;;;41225:93;;41289:9;41282:16;;;;;;41225:93;41136:197;41128:6;;;;;;;;41088:245;;;;41356:57;;;;;;;;;;:::i;:::-;;;;;;;;40884:537;;;;:::o;13799:191::-;13873:16;13892:6;;;;;;;;;;;13873:25;;13918:8;13909:6;;:17;;;;;;;;;;;;;;;;;;13973:8;13942:40;;13963:8;13942:40;;;;;;;;;;;;13862:128;13799:191;:::o;45394:104::-;45463:27;45473:2;45477:8;45463:27;;;;;;;;;;;;:9;:27::i;:::-;45394:104;;:::o;50956:804::-;51111:4;51132:15;:2;:13;;;:15::i;:::-;51128:625;;;51184:2;51168:36;;;51205:12;:10;:12::i;:::-;51219:4;51225:7;51234:5;51168:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51164:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51431:1;51414:6;:13;:18;51410:273;;;51457:61;;;;;;;;;;:::i;:::-;;;;;;;;51410:273;51633:6;51627:13;51618:6;51614:2;51610:15;51603:38;51164:534;51301:45;;;51291:55;;;:6;:55;;;;51284:62;;;;;51128:625;51737:4;51730:11;;50956:804;;;;;;;:::o;54044:102::-;54104:13;54133:7;54126:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54044:102;:::o;8815:723::-;8871:13;9101:1;9092:5;:10;9088:53;;;9119:10;;;;;;;;;;;;;;;;;;;;;9088:53;9151:12;9166:5;9151:20;;9182:14;9207:78;9222:1;9214:4;:9;9207:78;;9240:8;;;;;:::i;:::-;;;;9271:2;9263:10;;;;;:::i;:::-;;;9207:78;;;9295:19;9327:6;9317:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9295:39;;9345:154;9361:1;9352:5;:10;9345:154;;9389:1;9379:11;;;;;:::i;:::-;;;9456:2;9448:5;:10;;;;:::i;:::-;9435:2;:24;;;;:::i;:::-;9422:39;;9405:6;9412;9405:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9485:2;9476:11;;;;;:::i;:::-;;;9345:154;;;9523:6;9509:21;;;;;8815:723;;;;:::o;40453:229::-;40514:7;40559:1;40542:19;;:5;:19;;;;40534:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;40641:12;:19;40654:5;40641:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;40633:41;;40626:48;;40453:229;;;:::o;52248:159::-;;;;;:::o;52819:158::-;;;;;:::o;45861:163::-;45984:32;45990:2;45994:8;46004:5;46011:4;45984:5;:32::i;:::-;45861:163;;;:::o;46283:1538::-;46422:20;46445:12;;46422:35;;46490:1;46476:16;;:2;:16;;;;46468:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;46561:1;46549:8;:13;;46541:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;46620:61;46650:1;46654:2;46658:12;46672:8;46620:21;:61::i;:::-;46995:8;46959:12;:16;46972:2;46959:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47060:8;47019:12;:16;47032:2;47019:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47119:2;47086:11;:25;47098:12;47086:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;47186:15;47136:11;:25;47148:12;47136:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;47219:20;47242:12;47219:35;;47276:9;47271:415;47291:8;47287:1;:12;47271:415;;;47355:12;47351:2;47330:38;;47347:1;47330:38;;;;;;;;;;;;47391:4;47387:249;;;47454:59;47485:1;47489:2;47493:12;47507:5;47454:22;:59::i;:::-;47420:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;47387:249;47656:14;;;;;;;47301:3;;;;;;;47271:415;;;;47717:12;47702;:27;;;;46934:807;47753:60;47782:1;47786:2;47790:12;47804:8;47753:20;:60::i;:::-;46411:1410;46283: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:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:365::-;9589:3;9610:66;9674:1;9669:3;9610:66;:::i;:::-;9603:73;;9685:93;9774:3;9685:93;:::i;:::-;9803:2;9798:3;9794:12;9787:19;;9447:365;;;:::o;9818:366::-;9960:3;9981:67;10045:2;10040:3;9981:67;:::i;:::-;9974:74;;10057:93;10146:3;10057:93;:::i;:::-;10175:2;10170:3;10166:12;10159:19;;9818:366;;;:::o;10190:::-;10332:3;10353:67;10417:2;10412:3;10353:67;:::i;:::-;10346:74;;10429:93;10518:3;10429:93;:::i;:::-;10547:2;10542:3;10538:12;10531:19;;10190:366;;;:::o;10562:::-;10704:3;10725:67;10789:2;10784:3;10725:67;:::i;:::-;10718:74;;10801:93;10890:3;10801:93;:::i;:::-;10919:2;10914:3;10910:12;10903:19;;10562:366;;;:::o;10934:::-;11076:3;11097:67;11161:2;11156:3;11097:67;:::i;:::-;11090:74;;11173:93;11262:3;11173:93;:::i;:::-;11291:2;11286:3;11282:12;11275:19;;10934:366;;;:::o;11306:::-;11448:3;11469:67;11533:2;11528:3;11469:67;:::i;:::-;11462:74;;11545:93;11634:3;11545:93;:::i;:::-;11663:2;11658:3;11654:12;11647:19;;11306:366;;;:::o;11678:::-;11820:3;11841:67;11905:2;11900:3;11841:67;:::i;:::-;11834:74;;11917:93;12006:3;11917:93;:::i;:::-;12035:2;12030:3;12026:12;12019:19;;11678:366;;;:::o;12050:::-;12192:3;12213:67;12277:2;12272:3;12213:67;:::i;:::-;12206:74;;12289:93;12378:3;12289:93;:::i;:::-;12407:2;12402:3;12398:12;12391:19;;12050:366;;;:::o;12422:::-;12564:3;12585:67;12649:2;12644:3;12585:67;:::i;:::-;12578:74;;12661:93;12750:3;12661:93;:::i;:::-;12779:2;12774:3;12770:12;12763:19;;12422:366;;;:::o;12794:::-;12936:3;12957:67;13021:2;13016:3;12957:67;:::i;:::-;12950:74;;13033:93;13122:3;13033:93;:::i;:::-;13151:2;13146:3;13142:12;13135:19;;12794:366;;;:::o;13166:::-;13308:3;13329:67;13393:2;13388:3;13329:67;:::i;:::-;13322:74;;13405:93;13494:3;13405:93;:::i;:::-;13523:2;13518:3;13514:12;13507:19;;13166:366;;;:::o;13538:::-;13680:3;13701:67;13765:2;13760:3;13701:67;:::i;:::-;13694:74;;13777:93;13866:3;13777:93;:::i;:::-;13895:2;13890:3;13886:12;13879:19;;13538:366;;;:::o;13910:::-;14052:3;14073:67;14137:2;14132:3;14073:67;:::i;:::-;14066:74;;14149:93;14238:3;14149:93;:::i;:::-;14267:2;14262:3;14258:12;14251:19;;13910:366;;;:::o;14282:::-;14424:3;14445:67;14509:2;14504:3;14445:67;:::i;:::-;14438:74;;14521:93;14610:3;14521:93;:::i;:::-;14639:2;14634:3;14630:12;14623:19;;14282:366;;;:::o;14654:::-;14796:3;14817:67;14881:2;14876:3;14817:67;:::i;:::-;14810:74;;14893:93;14982:3;14893:93;:::i;:::-;15011:2;15006:3;15002:12;14995:19;;14654:366;;;:::o;15026:::-;15168:3;15189:67;15253:2;15248:3;15189:67;:::i;:::-;15182:74;;15265:93;15354:3;15265:93;:::i;:::-;15383:2;15378:3;15374:12;15367:19;;15026:366;;;:::o;15398:398::-;15557:3;15578:83;15659:1;15654:3;15578:83;:::i;:::-;15571:90;;15670:93;15759:3;15670:93;:::i;:::-;15788:1;15783:3;15779:11;15772:18;;15398:398;;;:::o;15802:366::-;15944:3;15965:67;16029:2;16024:3;15965:67;:::i;:::-;15958:74;;16041:93;16130:3;16041:93;:::i;:::-;16159:2;16154:3;16150:12;16143:19;;15802:366;;;:::o;16174:::-;16316:3;16337:67;16401:2;16396:3;16337:67;:::i;:::-;16330:74;;16413:93;16502:3;16413:93;:::i;:::-;16531:2;16526:3;16522:12;16515:19;;16174:366;;;:::o;16546:::-;16688:3;16709:67;16773:2;16768:3;16709:67;:::i;:::-;16702:74;;16785:93;16874:3;16785:93;:::i;:::-;16903:2;16898:3;16894:12;16887:19;;16546:366;;;:::o;16918:::-;17060:3;17081:67;17145:2;17140:3;17081:67;:::i;:::-;17074:74;;17157:93;17246:3;17157:93;:::i;:::-;17275:2;17270:3;17266:12;17259:19;;16918:366;;;:::o;17290:::-;17432:3;17453:67;17517:2;17512:3;17453:67;:::i;:::-;17446:74;;17529:93;17618:3;17529:93;:::i;:::-;17647:2;17642:3;17638:12;17631:19;;17290:366;;;:::o;17662:::-;17804:3;17825:67;17889:2;17884:3;17825:67;:::i;:::-;17818:74;;17901:93;17990:3;17901:93;:::i;:::-;18019:2;18014:3;18010:12;18003:19;;17662:366;;;:::o;18034:::-;18176:3;18197:67;18261:2;18256:3;18197:67;:::i;:::-;18190:74;;18273:93;18362:3;18273:93;:::i;:::-;18391:2;18386:3;18382:12;18375:19;;18034:366;;;:::o;18406:118::-;18493:24;18511:5;18493:24;:::i;:::-;18488:3;18481:37;18406:118;;:::o;18530:435::-;18710:3;18732:95;18823:3;18814:6;18732:95;:::i;:::-;18725:102;;18844:95;18935:3;18926:6;18844:95;:::i;:::-;18837:102;;18956:3;18949:10;;18530:435;;;;;:::o;18971:379::-;19155:3;19177:147;19320:3;19177:147;:::i;:::-;19170:154;;19341:3;19334:10;;18971:379;;;:::o;19356:222::-;19449:4;19487:2;19476:9;19472:18;19464:26;;19500:71;19568:1;19557:9;19553:17;19544:6;19500:71;:::i;:::-;19356:222;;;;:::o;19584:640::-;19779:4;19817:3;19806:9;19802:19;19794:27;;19831:71;19899:1;19888:9;19884:17;19875:6;19831:71;:::i;:::-;19912:72;19980:2;19969:9;19965:18;19956:6;19912:72;:::i;:::-;19994;20062:2;20051:9;20047:18;20038:6;19994:72;:::i;:::-;20113:9;20107:4;20103:20;20098:2;20087:9;20083:18;20076:48;20141:76;20212:4;20203:6;20141:76;:::i;:::-;20133:84;;19584:640;;;;;;;:::o;20230:210::-;20317:4;20355:2;20344:9;20340:18;20332:26;;20368:65;20430:1;20419:9;20415:17;20406:6;20368:65;:::i;:::-;20230:210;;;;:::o;20446:313::-;20559:4;20597:2;20586:9;20582:18;20574:26;;20646:9;20640:4;20636:20;20632:1;20621:9;20617:17;20610:47;20674:78;20747:4;20738:6;20674:78;:::i;:::-;20666:86;;20446:313;;;;:::o;20765:419::-;20931:4;20969:2;20958:9;20954:18;20946:26;;21018:9;21012:4;21008:20;21004:1;20993:9;20989:17;20982:47;21046:131;21172:4;21046:131;:::i;:::-;21038:139;;20765:419;;;:::o;21190:::-;21356:4;21394:2;21383:9;21379:18;21371:26;;21443:9;21437:4;21433:20;21429:1;21418:9;21414:17;21407:47;21471:131;21597:4;21471:131;:::i;:::-;21463:139;;21190:419;;;:::o;21615:::-;21781:4;21819:2;21808:9;21804:18;21796:26;;21868:9;21862:4;21858:20;21854:1;21843:9;21839:17;21832:47;21896:131;22022:4;21896:131;:::i;:::-;21888:139;;21615:419;;;:::o;22040:::-;22206:4;22244:2;22233:9;22229:18;22221:26;;22293:9;22287:4;22283:20;22279:1;22268:9;22264:17;22257:47;22321:131;22447:4;22321:131;:::i;:::-;22313:139;;22040:419;;;:::o;22465:::-;22631:4;22669:2;22658:9;22654:18;22646:26;;22718:9;22712:4;22708:20;22704:1;22693:9;22689:17;22682:47;22746:131;22872:4;22746:131;:::i;:::-;22738:139;;22465:419;;;:::o;22890:::-;23056:4;23094:2;23083:9;23079:18;23071:26;;23143:9;23137:4;23133:20;23129:1;23118:9;23114:17;23107:47;23171:131;23297:4;23171:131;:::i;:::-;23163:139;;22890:419;;;:::o;23315:::-;23481:4;23519:2;23508:9;23504:18;23496:26;;23568:9;23562:4;23558:20;23554:1;23543:9;23539:17;23532:47;23596:131;23722:4;23596:131;:::i;:::-;23588:139;;23315:419;;;:::o;23740:::-;23906:4;23944:2;23933:9;23929:18;23921:26;;23993:9;23987:4;23983:20;23979:1;23968:9;23964:17;23957:47;24021:131;24147:4;24021:131;:::i;:::-;24013:139;;23740:419;;;:::o;24165:::-;24331:4;24369:2;24358:9;24354:18;24346:26;;24418:9;24412:4;24408:20;24404:1;24393:9;24389:17;24382:47;24446:131;24572:4;24446:131;:::i;:::-;24438:139;;24165:419;;;:::o;24590:::-;24756:4;24794:2;24783:9;24779:18;24771:26;;24843:9;24837:4;24833:20;24829:1;24818:9;24814:17;24807:47;24871:131;24997:4;24871:131;:::i;:::-;24863:139;;24590:419;;;:::o;25015:::-;25181:4;25219:2;25208:9;25204:18;25196:26;;25268:9;25262:4;25258:20;25254:1;25243:9;25239:17;25232:47;25296:131;25422:4;25296:131;:::i;:::-;25288:139;;25015:419;;;:::o;25440:::-;25606:4;25644:2;25633:9;25629:18;25621:26;;25693:9;25687:4;25683:20;25679:1;25668:9;25664:17;25657:47;25721:131;25847:4;25721:131;:::i;:::-;25713:139;;25440:419;;;:::o;25865:::-;26031:4;26069:2;26058:9;26054:18;26046:26;;26118:9;26112:4;26108:20;26104:1;26093:9;26089:17;26082:47;26146:131;26272:4;26146:131;:::i;:::-;26138:139;;25865:419;;;:::o;26290:::-;26456:4;26494:2;26483:9;26479:18;26471:26;;26543:9;26537:4;26533:20;26529:1;26518:9;26514:17;26507:47;26571:131;26697:4;26571:131;:::i;:::-;26563:139;;26290:419;;;:::o;26715:::-;26881:4;26919:2;26908:9;26904:18;26896:26;;26968:9;26962:4;26958:20;26954:1;26943:9;26939:17;26932:47;26996:131;27122:4;26996:131;:::i;:::-;26988:139;;26715:419;;;:::o;27140:::-;27306:4;27344:2;27333:9;27329:18;27321:26;;27393:9;27387:4;27383:20;27379:1;27368:9;27364:17;27357:47;27421:131;27547:4;27421:131;:::i;:::-;27413:139;;27140:419;;;:::o;27565:::-;27731:4;27769:2;27758:9;27754:18;27746:26;;27818:9;27812:4;27808:20;27804:1;27793:9;27789:17;27782:47;27846:131;27972:4;27846:131;:::i;:::-;27838:139;;27565:419;;;:::o;27990:::-;28156:4;28194:2;28183:9;28179:18;28171:26;;28243:9;28237:4;28233:20;28229:1;28218:9;28214:17;28207:47;28271:131;28397:4;28271:131;:::i;:::-;28263:139;;27990:419;;;:::o;28415:::-;28581:4;28619:2;28608:9;28604:18;28596:26;;28668:9;28662:4;28658:20;28654:1;28643:9;28639:17;28632:47;28696:131;28822:4;28696:131;:::i;:::-;28688:139;;28415:419;;;:::o;28840:::-;29006:4;29044:2;29033:9;29029:18;29021:26;;29093:9;29087:4;29083:20;29079:1;29068:9;29064:17;29057:47;29121:131;29247:4;29121:131;:::i;:::-;29113:139;;28840:419;;;:::o;29265:::-;29431:4;29469:2;29458:9;29454:18;29446:26;;29518:9;29512:4;29508:20;29504:1;29493:9;29489:17;29482:47;29546:131;29672:4;29546:131;:::i;:::-;29538:139;;29265:419;;;:::o;29690:::-;29856:4;29894:2;29883:9;29879:18;29871:26;;29943:9;29937:4;29933:20;29929:1;29918:9;29914:17;29907:47;29971:131;30097:4;29971:131;:::i;:::-;29963:139;;29690:419;;;:::o;30115:::-;30281:4;30319:2;30308:9;30304:18;30296:26;;30368:9;30362:4;30358:20;30354:1;30343:9;30339:17;30332:47;30396:131;30522:4;30396:131;:::i;:::-;30388:139;;30115:419;;;:::o;30540:::-;30706:4;30744:2;30733:9;30729:18;30721:26;;30793:9;30787:4;30783:20;30779:1;30768:9;30764:17;30757:47;30821:131;30947:4;30821:131;:::i;:::-;30813:139;;30540:419;;;:::o;30965:::-;31131:4;31169:2;31158:9;31154:18;31146:26;;31218:9;31212:4;31208:20;31204:1;31193:9;31189:17;31182:47;31246:131;31372:4;31246:131;:::i;:::-;31238:139;;30965:419;;;:::o;31390:::-;31556:4;31594:2;31583:9;31579:18;31571:26;;31643:9;31637:4;31633:20;31629:1;31618:9;31614:17;31607:47;31671:131;31797:4;31671:131;:::i;:::-;31663:139;;31390:419;;;:::o;31815:222::-;31908:4;31946:2;31935:9;31931:18;31923:26;;31959:71;32027:1;32016:9;32012:17;32003:6;31959:71;:::i;:::-;31815:222;;;;:::o;32043:129::-;32077:6;32104:20;;:::i;:::-;32094:30;;32133:33;32161:4;32153:6;32133:33;:::i;:::-;32043:129;;;:::o;32178:75::-;32211:6;32244:2;32238:9;32228:19;;32178:75;:::o;32259:307::-;32320:4;32410:18;32402:6;32399:30;32396:56;;;32432:18;;:::i;:::-;32396:56;32470:29;32492:6;32470:29;:::i;:::-;32462:37;;32554:4;32548;32544:15;32536:23;;32259:307;;;:::o;32572:98::-;32623:6;32657:5;32651:12;32641:22;;32572:98;;;:::o;32676:99::-;32728:6;32762:5;32756:12;32746:22;;32676:99;;;:::o;32781:168::-;32864:11;32898:6;32893:3;32886:19;32938:4;32933:3;32929:14;32914:29;;32781:168;;;;:::o;32955:147::-;33056:11;33093:3;33078:18;;32955:147;;;;:::o;33108:169::-;33192:11;33226:6;33221:3;33214:19;33266:4;33261:3;33257:14;33242:29;;33108:169;;;;:::o;33283:148::-;33385:11;33422:3;33407:18;;33283:148;;;;:::o;33437:305::-;33477:3;33496:20;33514:1;33496:20;:::i;:::-;33491:25;;33530:20;33548:1;33530:20;:::i;:::-;33525:25;;33684:1;33616:66;33612:74;33609:1;33606:81;33603:107;;;33690:18;;:::i;:::-;33603:107;33734:1;33731;33727:9;33720:16;;33437:305;;;;:::o;33748:185::-;33788:1;33805:20;33823:1;33805:20;:::i;:::-;33800:25;;33839:20;33857:1;33839:20;:::i;:::-;33834:25;;33878:1;33868:35;;33883:18;;:::i;:::-;33868:35;33925:1;33922;33918:9;33913:14;;33748:185;;;;:::o;33939:191::-;33979:4;33999:20;34017:1;33999:20;:::i;:::-;33994:25;;34033:20;34051:1;34033:20;:::i;:::-;34028:25;;34072:1;34069;34066:8;34063:34;;;34077:18;;:::i;:::-;34063:34;34122:1;34119;34115:9;34107:17;;33939:191;;;;:::o;34136:96::-;34173:7;34202:24;34220:5;34202:24;:::i;:::-;34191:35;;34136:96;;;:::o;34238:90::-;34272:7;34315:5;34308:13;34301:21;34290:32;;34238:90;;;:::o;34334:149::-;34370:7;34410:66;34403:5;34399:78;34388:89;;34334:149;;;:::o;34489:126::-;34526:7;34566:42;34559:5;34555:54;34544:65;;34489:126;;;:::o;34621:77::-;34658:7;34687:5;34676:16;;34621:77;;;:::o;34704:154::-;34788:6;34783:3;34778;34765:30;34850:1;34841:6;34836:3;34832:16;34825:27;34704:154;;;:::o;34864:307::-;34932:1;34942:113;34956:6;34953:1;34950:13;34942:113;;;35041:1;35036:3;35032:11;35026:18;35022:1;35017:3;35013:11;35006:39;34978:2;34975:1;34971:10;34966:15;;34942:113;;;35073:6;35070:1;35067:13;35064:101;;;35153:1;35144:6;35139:3;35135:16;35128:27;35064:101;34913:258;34864:307;;;:::o;35177:320::-;35221:6;35258:1;35252:4;35248:12;35238:22;;35305:1;35299:4;35295:12;35326:18;35316:81;;35382:4;35374:6;35370:17;35360:27;;35316:81;35444:2;35436:6;35433:14;35413:18;35410:38;35407:84;;;35463:18;;:::i;:::-;35407:84;35228:269;35177:320;;;:::o;35503:281::-;35586:27;35608:4;35586:27;:::i;:::-;35578:6;35574:40;35716:6;35704:10;35701:22;35680:18;35668:10;35665:34;35662:62;35659:88;;;35727:18;;:::i;:::-;35659:88;35767:10;35763:2;35756:22;35546:238;35503:281;;:::o;35790:233::-;35829:3;35852:24;35870:5;35852:24;:::i;:::-;35843:33;;35898:66;35891:5;35888:77;35885:103;;;35968:18;;:::i;:::-;35885:103;36015:1;36008:5;36004:13;35997:20;;35790:233;;;:::o;36029:176::-;36061:1;36078:20;36096:1;36078:20;:::i;:::-;36073:25;;36112:20;36130:1;36112:20;:::i;:::-;36107:25;;36151:1;36141:35;;36156:18;;:::i;:::-;36141:35;36197:1;36194;36190:9;36185:14;;36029:176;;;;:::o;36211:180::-;36259:77;36256:1;36249:88;36356:4;36353:1;36346:15;36380:4;36377:1;36370:15;36397:180;36445:77;36442:1;36435:88;36542:4;36539:1;36532:15;36566:4;36563:1;36556:15;36583:180;36631:77;36628:1;36621:88;36728:4;36725:1;36718:15;36752:4;36749:1;36742:15;36769:180;36817:77;36814:1;36807:88;36914:4;36911:1;36904:15;36938:4;36935:1;36928:15;36955:180;37003:77;37000:1;36993:88;37100:4;37097:1;37090:15;37124:4;37121:1;37114:15;37141:117;37250:1;37247;37240:12;37264:117;37373:1;37370;37363:12;37387:117;37496:1;37493;37486:12;37510:117;37619:1;37616;37609:12;37633:117;37742:1;37739;37732:12;37756:117;37865:1;37862;37855:12;37879:102;37920:6;37971:2;37967:7;37962:2;37955:5;37951:14;37947:28;37937:38;;37879:102;;;:::o;37987:221::-;38127:34;38123:1;38115:6;38111:14;38104:58;38196:4;38191:2;38183:6;38179:15;38172:29;37987:221;:::o;38214:225::-;38354:34;38350:1;38342:6;38338:14;38331:58;38423:8;38418:2;38410:6;38406:15;38399:33;38214:225;:::o;38445:229::-;38585:34;38581:1;38573:6;38569:14;38562:58;38654:12;38649:2;38641:6;38637:15;38630:37;38445:229;:::o;38680:156::-;38820:8;38816:1;38808:6;38804:14;38797:32;38680:156;:::o;38842:222::-;38982:34;38978:1;38970:6;38966:14;38959:58;39051:5;39046:2;39038:6;39034:15;39027:30;38842:222;:::o;39070:224::-;39210:34;39206:1;39198:6;39194:14;39187:58;39279:7;39274:2;39266:6;39262:15;39255:32;39070:224;:::o;39300:236::-;39440:34;39436:1;39428:6;39424:14;39417:58;39509:19;39504:2;39496:6;39492:15;39485:44;39300:236;:::o;39542:244::-;39682:34;39678:1;39670:6;39666:14;39659:58;39751:27;39746:2;39738:6;39734:15;39727:52;39542:244;:::o;39792:230::-;39932:34;39928:1;39920:6;39916:14;39909:58;40001:13;39996:2;39988:6;39984:15;39977:38;39792:230;:::o;40028:166::-;40168:18;40164:1;40156:6;40152:14;40145:42;40028:166;:::o;40200:178::-;40340:30;40336:1;40328:6;40324:14;40317:54;40200:178;:::o;40384:225::-;40524:34;40520:1;40512:6;40508:14;40501:58;40593:8;40588:2;40580:6;40576:15;40569:33;40384:225;:::o;40615:182::-;40755:34;40751:1;40743:6;40739:14;40732:58;40615:182;:::o;40803:232::-;40943:34;40939:1;40931:6;40927:14;40920:58;41012:15;41007:2;40999:6;40995:15;40988:40;40803:232;:::o;41041:234::-;41181:34;41177:1;41169:6;41165:14;41158:58;41250:17;41245:2;41237:6;41233:15;41226:42;41041:234;:::o;41281:176::-;41421:28;41417:1;41409:6;41405:14;41398:52;41281:176;:::o;41463:237::-;41603:34;41599:1;41591:6;41587:14;41580:58;41672:20;41667:2;41659:6;41655:15;41648:45;41463:237;:::o;41706:234::-;41846:34;41842:1;41834:6;41830:14;41823:58;41915:17;41910:2;41902:6;41898:15;41891:42;41706:234;:::o;41946:221::-;42086:34;42082:1;42074:6;42070:14;42063:58;42155:4;42150:2;42142:6;42138:15;42131:29;41946:221;:::o;42173:114::-;;:::o;42293:238::-;42433:34;42429:1;42421:6;42417:14;42410:58;42502:21;42497:2;42489:6;42485:15;42478:46;42293:238;:::o;42537:220::-;42677:34;42673:1;42665:6;42661:14;42654:58;42746:3;42741:2;42733:6;42729:15;42722:28;42537:220;:::o;42763:227::-;42903:34;42899:1;42891:6;42887:14;42880:58;42972:10;42967:2;42959:6;42955:15;42948:35;42763:227;:::o;42996:233::-;43136:34;43132:1;43124:6;43120:14;43113:58;43205:16;43200:2;43192:6;43188:15;43181:41;42996:233;:::o;43235:181::-;43375:33;43371:1;43363:6;43359:14;43352:57;43235:181;:::o;43422:234::-;43562:34;43558:1;43550:6;43546:14;43539:58;43631:17;43626:2;43618:6;43614:15;43607:42;43422:234;:::o;43662:232::-;43802:34;43798:1;43790:6;43786:14;43779:58;43871:15;43866:2;43858:6;43854:15;43847:40;43662:232;:::o;43900:122::-;43973:24;43991:5;43973:24;:::i;:::-;43966:5;43963:35;43953:63;;44012:1;44009;44002:12;43953:63;43900:122;:::o;44028:116::-;44098:21;44113:5;44098:21;:::i;:::-;44091:5;44088:32;44078:60;;44134:1;44131;44124:12;44078:60;44028:116;:::o;44150:120::-;44222:23;44239:5;44222:23;:::i;:::-;44215:5;44212:34;44202:62;;44260:1;44257;44250:12;44202:62;44150:120;:::o;44276:122::-;44349:24;44367:5;44349:24;:::i;:::-;44342:5;44339:35;44329:63;;44388:1;44385;44378:12;44329:63;44276:122;:::o
Swarm Source
ipfs://49cbb14443f9797304120a7752ec5c2496bbe1afd44f7cf0aba9e0c98cf2b75e
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.