Overview
S Balance
S Value
$0.00More Info
Private Name Tags
ContractCreator
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
SwapRouter02
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity Standard Json-Input format)
12345678910111213141516171819202122// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;pragma abicoder v2;import '@uniswap/v3-periphery/contracts/base/SelfPermit.sol';import '@uniswap/v3-periphery/contracts/base/PeripheryImmutableState.sol';import './interfaces/ISwapRouter02.sol';import './V2SwapRouter.sol';import './V3SwapRouter.sol';import './base/ApproveAndCall.sol';import './base/MulticallExtended.sol';/// @title Uniswap V2 and V3 Swap Routercontract SwapRouter02 is ISwapRouter02, V2SwapRouter, V3SwapRouter, ApproveAndCall, MulticallExtended, SelfPermit {constructor(address _factoryV2,address factoryV3,address _positionManager,address _WETH9) ImmutableState(_factoryV2, _positionManager) PeripheryImmutableState(factoryV3, _WETH9) {}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;pragma abicoder v2;import '@openzeppelin/contracts/token/ERC20/IERC20.sol';import '@uniswap/v3-periphery/contracts/interfaces/INonfungiblePositionManager.sol';import '../interfaces/IApproveAndCall.sol';import './ImmutableState.sol';/// @title Approve and Call/// @notice Allows callers to approve the Uniswap V3 position manager from this contract,/// for any token, and then make calls into the position managerabstract contract ApproveAndCall is IApproveAndCall, ImmutableState {function tryApprove(address token, uint256 amount) private returns (bool) {(bool success, bytes memory data) =token.call(abi.encodeWithSelector(IERC20.approve.selector, positionManager, amount));return success && (data.length == 0 || abi.decode(data, (bool)));}/// @inheritdoc IApproveAndCallfunction getApprovalType(address token, uint256 amount) external override returns (ApprovalType) {// check existing approvalif (IERC20(token).allowance(address(this), positionManager) >= amount) return ApprovalType.NOT_REQUIRED;// try type(uint256).max / type(uint256).max - 1
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.7.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 `recipient`.** Returns a boolean value indicating whether the operation succeeded.** Emits a {Transfer} event.*/function transfer(address recipient, uint256 amount) external returns (bool);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;pragma abicoder v2;import '@openzeppelin/contracts/token/ERC721/IERC721Metadata.sol';import '@openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol';import './IPoolInitializer.sol';import './IERC721Permit.sol';import './IPeripheryPayments.sol';import './IPeripheryImmutableState.sol';import '../libraries/PoolAddress.sol';/// @title Non-fungible token for positions/// @notice Wraps Uniswap V3 positions in a non-fungible token interface which allows for them to be transferred/// and authorized.interface INonfungiblePositionManager isIPoolInitializer,IPeripheryPayments,IPeripheryImmutableState,IERC721Metadata,IERC721Enumerable,IERC721Permit{/// @notice Emitted when liquidity is increased for a position NFT/// @dev Also emitted when a token is minted
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;pragma abicoder v2;interface IApproveAndCall {enum ApprovalType {NOT_REQUIRED, MAX, MAX_MINUS_ONE, ZERO_THEN_MAX, ZERO_THEN_MAX_MINUS_ONE}/// @dev Lens to be called off-chain to determine which (if any) of the relevant approval functions should be called/// @param token The token to approve/// @param amount The amount to approve/// @return The required approval typefunction getApprovalType(address token, uint256 amount) external returns (ApprovalType);/// @notice Approves a token for the maximum possible amount/// @param token The token to approvefunction approveMax(address token) external payable;/// @notice Approves a token for the maximum possible amount minus one/// @param token The token to approvefunction approveMaxMinusOne(address token) external payable;/// @notice Approves a token for zero, then the maximum possible amount/// @param token The token to approvefunction approveZeroThenMax(address token) external payable;/// @notice Approves a token for zero, then the maximum possible amount minus one
123456789101112131415161718// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;import '../interfaces/IImmutableState.sol';/// @title Immutable state/// @notice Immutable state used by the swap routerabstract contract ImmutableState is IImmutableState {/// @inheritdoc IImmutableStateaddress public immutable override factoryV2;/// @inheritdoc IImmutableStateaddress public immutable override positionManager;constructor(address _factoryV2, address _positionManager) {factoryV2 = _factoryV2;positionManager = _positionManager;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.7.0;import "./IERC721.sol";/*** @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);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.7.0;import "./IERC721.sol";/*** @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 tokenId);/*** @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.
12345678910111213141516171819202122// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;pragma abicoder v2;/// @title Creates and initializes V3 Pools/// @notice Provides a method for creating and initializing a pool, if necessary, for bundling with other methods that/// require the pool to exist.interface IPoolInitializer {/// @notice Creates a new pool if it does not exist, then initializes if not initialized/// @dev This method can be bundled with others via IMulticall for the first action (e.g. mint) performed against a pool/// @param token0 The contract address of token0 of the pool/// @param token1 The contract address of token1 of the pool/// @param fee The fee amount of the v3 pool for the specified token pair/// @param sqrtPriceX96 The initial square root price of the pool as a Q64.96 value/// @return pool Returns the pool address based on the pair of tokens and fee, will return the newly created pool address if necessaryfunction createAndInitializePoolIfNecessary(address token0,address token1,uint24 fee,uint160 sqrtPriceX96) external payable returns (address pool);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;import '@openzeppelin/contracts/token/ERC721/IERC721.sol';/// @title ERC721 with permit/// @notice Extension to ERC721 that includes a permit function for signature based approvalsinterface IERC721Permit is IERC721 {/// @notice The permit typehash used in the permit signature/// @return The typehash for the permitfunction PERMIT_TYPEHASH() external pure returns (bytes32);/// @notice The domain separator used in the permit signature/// @return The domain seperator used in encoding of permit signaturefunction DOMAIN_SEPARATOR() external view returns (bytes32);/// @notice Approve of a specific token ID for spending by spender via signature/// @param spender The account that is being approved/// @param tokenId The ID of the token that is being approved for spending/// @param deadline The deadline timestamp by which the call must be mined for the approve to work/// @param v Must produce valid secp256k1 signature from the holder along with `r` and `s`/// @param r Must produce valid secp256k1 signature from the holder along with `v` and `s`/// @param s Must produce valid secp256k1 signature from the holder along with `r` and `v`function permit(address spender,uint256 tokenId,
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;/// @title Periphery Payments/// @notice Functions to ease deposits and withdrawals of ETHinterface IPeripheryPayments {/// @notice Unwraps the contract's WETH9 balance and sends it to recipient as ETH./// @dev The amountMinimum parameter prevents malicious contracts from stealing WETH9 from users./// @param amountMinimum The minimum amount of WETH9 to unwrap/// @param recipient The address receiving ETHfunction unwrapWETH9(uint256 amountMinimum, address recipient) external payable;/// @notice Refunds any ETH balance held by this contract to the `msg.sender`/// @dev Useful for bundling with mint or increase liquidity that uses ether, or exact output swaps/// that use ether for the input amountfunction refundETH() external payable;/// @notice Transfers the full amount of a token held by this contract to recipient/// @dev The amountMinimum parameter prevents malicious contracts from stealing the token from users/// @param token The contract address of the token which will be transferred to `recipient`/// @param amountMinimum The minimum amount of token required for a transfer/// @param recipient The destination address of the tokenfunction sweepToken(address token,uint256 amountMinimum,address recipient
123456789101112// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Immutable state/// @notice Functions that return immutable state of the routerinterface IPeripheryImmutableState {/// @return Returns the address of the Uniswap V3 factoryfunction factory() external view returns (address);/// @return Returns the address of WETH9function WETH9() external view returns (address);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Provides functions for deriving a pool address from the factory, tokens, and the feelibrary PoolAddress {bytes32 internal constant POOL_INIT_CODE_HASH = 0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54;/// @notice The identifying key of the poolstruct PoolKey {address token0;address token1;uint24 fee;}/// @notice Returns PoolKey: the ordered tokens with the matched fee levels/// @param tokenA The first token of a pool, unsorted/// @param tokenB The second token of a pool, unsorted/// @param fee The fee level of the pool/// @return Poolkey The pool details with ordered token0 and token1 assignmentsfunction getPoolKey(address tokenA,address tokenB,uint24 fee) internal pure returns (PoolKey memory) {if (tokenA > tokenB) (tokenA, tokenB) = (tokenB, tokenA);return PoolKey({token0: tokenA, token1: tokenB, fee: fee});
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.7.0;import "../../introspection/IERC165.sol";/*** @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);/**
123456789101112131415161718192021222324// SPDX-License-Identifier: MITpragma solidity ^0.7.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);}
123456789101112// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Immutable state/// @notice Functions that return immutable state of the routerinterface IImmutableState {/// @return Returns the address of the Uniswap V2 factoryfunction factoryV2() external view returns (address);/// @return Returns the address of Uniswap V3 NFT position managerfunction positionManager() external view returns (address);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;import '@openzeppelin/contracts/token/ERC20/IERC20.sol';import '@openzeppelin/contracts/drafts/IERC20Permit.sol';import '../interfaces/ISelfPermit.sol';import '../interfaces/external/IERC20PermitAllowed.sol';/// @title Self Permit/// @notice Functionality to call permit on any EIP-2612-compliant token for use in the route/// @dev These functions are expected to be embedded in multicalls to allow EOAs to approve a contract and call a function/// that requires an approval in a single transaction.abstract contract SelfPermit is ISelfPermit {/// @inheritdoc ISelfPermitfunction selfPermit(address token,uint256 value,uint256 deadline,uint8 v,bytes32 r,bytes32 s) public payable override {IERC20Permit(token).permit(msg.sender, address(this), value, deadline, v, r, s);}
123456789101112131415161718// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;import '../interfaces/IPeripheryImmutableState.sol';/// @title Immutable state/// @notice Immutable state used by periphery contractsabstract contract PeripheryImmutableState is IPeripheryImmutableState {/// @inheritdoc IPeripheryImmutableStateaddress public immutable override factory;/// @inheritdoc IPeripheryImmutableStateaddress public immutable override WETH9;constructor(address _factory, address _WETH9) {factory = _factory;WETH9 = _WETH9;}}
123456789101112131415// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;pragma abicoder v2;import '@uniswap/v3-periphery/contracts/interfaces/ISelfPermit.sol';import './IV2SwapRouter.sol';import './IV3SwapRouter.sol';import './IApproveAndCall.sol';import './IMulticallExtended.sol';/// @title Router token swapping functionalityinterface ISwapRouter02 is IV2SwapRouter, IV3SwapRouter, IApproveAndCall, IMulticallExtended, ISelfPermit {}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;pragma abicoder v2;import '@uniswap/v3-core/contracts/libraries/LowGasSafeMath.sol';import '@openzeppelin/contracts/token/ERC20/IERC20.sol';import './interfaces/IV2SwapRouter.sol';import './base/ImmutableState.sol';import './base/PeripheryPaymentsWithFeeExtended.sol';import './libraries/Constants.sol';import './libraries/UniswapV2Library.sol';/// @title Uniswap V2 Swap Router/// @notice Router for stateless execution of swaps against Uniswap V2abstract contract V2SwapRouter is IV2SwapRouter, ImmutableState, PeripheryPaymentsWithFeeExtended {using LowGasSafeMath for uint256;// supports fee-on-transfer tokens// requires the initial amount to have already been sent to the first pairfunction _swap(address[] memory path, address _to) private {for (uint256 i; i < path.length - 1; i++) {(address input, address output) = (path[i], path[i + 1]);(address token0, ) = UniswapV2Library.sortTokens(input, output);IUniswapV2Pair pair = IUniswapV2Pair(UniswapV2Library.pairFor(factoryV2, input, output));uint256 amountInput;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;pragma abicoder v2;import '@uniswap/v3-core/contracts/libraries/SafeCast.sol';import '@uniswap/v3-core/contracts/libraries/TickMath.sol';import '@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol';import '@uniswap/v3-periphery/contracts/libraries/Path.sol';import '@uniswap/v3-periphery/contracts/libraries/PoolAddress.sol';import '@uniswap/v3-periphery/contracts/libraries/CallbackValidation.sol';import '@openzeppelin/contracts/token/ERC20/IERC20.sol';import './interfaces/IV3SwapRouter.sol';import './base/PeripheryPaymentsWithFeeExtended.sol';import './base/OracleSlippage.sol';import './libraries/Constants.sol';/// @title Uniswap V3 Swap Router/// @notice Router for stateless execution of swaps against Uniswap V3abstract contract V3SwapRouter is IV3SwapRouter, PeripheryPaymentsWithFeeExtended, OracleSlippage {using Path for bytes;using SafeCast for uint256;/// @dev Used as the placeholder value for amountInCached, because the computed amount in for an exact output swap/// can never actually be this valueuint256 private constant DEFAULT_AMOUNT_IN_CACHED = type(uint256).max;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;pragma abicoder v2;import '@uniswap/v3-periphery/contracts/base/Multicall.sol';import '../interfaces/IMulticallExtended.sol';import '../base/PeripheryValidationExtended.sol';/// @title Multicall/// @notice Enables calling multiple methods in a single call to the contractabstract contract MulticallExtended is IMulticallExtended, Multicall, PeripheryValidationExtended {/// @inheritdoc IMulticallExtendedfunction multicall(uint256 deadline, bytes[] calldata data)externalpayableoverridecheckDeadline(deadline)returns (bytes[] memory){return multicall(data);}/// @inheritdoc IMulticallExtendedfunction multicall(bytes32 previousBlockhash, bytes[] calldata data)external
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <0.8.0;/*** @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].** Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by* presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't* need to send a transaction, and thus is not required to hold Ether at all.*/interface IERC20Permit {/*** @dev Sets `value` as the allowance of `spender` over `owner`'s tokens,* given `owner`'s signed approval.** IMPORTANT: The same issues {IERC20-approve} has related to transaction* ordering also apply here.** Emits an {Approval} event.** Requirements:** - `spender` cannot be the zero address.* - `deadline` must be a timestamp in the future.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;/// @title Self Permit/// @notice Functionality to call permit on any EIP-2612-compliant token for use in the routeinterface ISelfPermit {/// @notice Permits this contract to spend a given token from `msg.sender`/// @dev The `owner` is always msg.sender and the `spender` is always address(this)./// @param token The address of the token spent/// @param value The amount that can be spent of token/// @param deadline A timestamp, the current blocktime must be less than or equal to this timestamp/// @param v Must produce valid secp256k1 signature from the holder along with `r` and `s`/// @param r Must produce valid secp256k1 signature from the holder along with `v` and `s`/// @param s Must produce valid secp256k1 signature from the holder along with `r` and `v`function selfPermit(address token,uint256 value,uint256 deadline,uint8 v,bytes32 r,bytes32 s) external payable;/// @notice Permits this contract to spend a given token from `msg.sender`/// @dev The `owner` is always msg.sender and the `spender` is always address(this)./// Can be used instead of #selfPermit to prevent calls from failing due to a frontrun of a call to #selfPermit
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Interface for permit/// @notice Interface used by DAI/CHAI for permitinterface IERC20PermitAllowed {/// @notice Approve the spender to spend some tokens via the holder signature/// @dev This is the permit interface used by DAI and CHAI/// @param holder The address of the token holder, the token owner/// @param spender The address of the token spender/// @param nonce The holder's nonce, increases at each call to permit/// @param expiry The timestamp at which the permit is no longer valid/// @param allowed Boolean that sets approval amount, true for type(uint256).max and false for 0/// @param v Must produce valid secp256k1 signature from the holder along with `r` and `s`/// @param r Must produce valid secp256k1 signature from the holder along with `v` and `s`/// @param s Must produce valid secp256k1 signature from the holder along with `r` and `v`function permit(address holder,address spender,uint256 nonce,uint256 expiry,bool allowed,uint8 v,bytes32 r,bytes32 s) external;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;pragma abicoder v2;/// @title Router token swapping functionality/// @notice Functions for swapping tokens via Uniswap V2interface IV2SwapRouter {/// @notice Swaps `amountIn` of one token for as much as possible of another token/// @dev Setting `amountIn` to 0 will cause the contract to look up its own balance,/// and swap the entire amount, enabling contracts to send tokens before calling this function./// @param amountIn The amount of token to swap/// @param amountOutMin The minimum amount of output that must be received/// @param path The ordered list of tokens to swap through/// @param to The recipient address/// @return amountOut The amount of the received tokenfunction swapExactTokensForTokens(uint256 amountIn,uint256 amountOutMin,address[] calldata path,address to) external payable returns (uint256 amountOut);/// @notice Swaps as little as possible of one token for an exact amount of another token/// @param amountOut The amount of token to swap for/// @param amountInMax The maximum amount of input that the caller will pay/// @param path The ordered list of tokens to swap through
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;pragma abicoder v2;import '@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.sol';/// @title Router token swapping functionality/// @notice Functions for swapping tokens via Uniswap V3interface IV3SwapRouter is IUniswapV3SwapCallback {struct ExactInputSingleParams {address tokenIn;address tokenOut;uint24 fee;address recipient;uint256 amountIn;uint256 amountOutMinimum;uint160 sqrtPriceLimitX96;}/// @notice Swaps `amountIn` of one token for as much as possible of another token/// @dev Setting `amountIn` to 0 will cause the contract to look up its own balance,/// and swap the entire amount, enabling contracts to send tokens before calling this function./// @param params The parameters necessary for the swap, encoded as `ExactInputSingleParams` in calldata/// @return amountOut The amount of the received tokenfunction exactInputSingle(ExactInputSingleParams calldata params) external payable returns (uint256 amountOut);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;pragma abicoder v2;import '@uniswap/v3-periphery/contracts/interfaces/IMulticall.sol';/// @title MulticallExtended interface/// @notice Enables calling multiple methods in a single call to the contract with optional validationinterface IMulticallExtended is IMulticall {/// @notice Call multiple functions in the current contract and return the data from all of them if they all succeed/// @dev The `msg.value` should not be trusted for any method callable from multicall./// @param deadline The time by which this function must be called before failing/// @param data The encoded function data for each of the calls to make to this contract/// @return results The results from each of the calls passed in via datafunction multicall(uint256 deadline, bytes[] calldata data) external payable returns (bytes[] memory results);/// @notice Call multiple functions in the current contract and return the data from all of them if they all succeed/// @dev The `msg.value` should not be trusted for any method callable from multicall./// @param previousBlockhash The expected parent blockHash/// @param data The encoded function data for each of the calls to make to this contract/// @return results The results from each of the calls passed in via datafunction multicall(bytes32 previousBlockhash, bytes[] calldata data)externalpayablereturns (bytes[] memory results);}
123456789101112131415161718192021// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Callback for IUniswapV3PoolActions#swap/// @notice Any contract that calls IUniswapV3PoolActions#swap must implement this interfaceinterface IUniswapV3SwapCallback {/// @notice Called to `msg.sender` after executing a swap via IUniswapV3Pool#swap./// @dev In the implementation you must pay the pool tokens owed for the swap./// The caller of this method must be checked to be a UniswapV3Pool deployed by the canonical UniswapV3Factory./// amount0Delta and amount1Delta can both be 0 if no tokens were swapped./// @param amount0Delta The amount of token0 that was sent (negative) or must be received (positive) by the pool by/// the end of the swap. If positive, the callback must send that amount of token0 to the pool./// @param amount1Delta The amount of token1 that was sent (negative) or must be received (positive) by the pool by/// the end of the swap. If positive, the callback must send that amount of token1 to the pool./// @param data Any data passed through by the caller via the IUniswapV3PoolActions#swap callfunction uniswapV3SwapCallback(int256 amount0Delta,int256 amount1Delta,bytes calldata data) external;}
12345678910111213// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;pragma abicoder v2;/// @title Multicall interface/// @notice Enables calling multiple methods in a single call to the contractinterface IMulticall {/// @notice Call multiple functions in the current contract and return the data from all of them if they all succeed/// @dev The `msg.value` should not be trusted for any method callable from multicall./// @param data The encoded function data for each of the calls to make to this contract/// @return results The results from each of the calls passed in via datafunction multicall(bytes[] calldata data) external payable returns (bytes[] memory results);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.0;/// @title Optimized overflow and underflow safe math operations/// @notice Contains methods for doing math operations that revert on overflow or underflow for minimal gas costlibrary LowGasSafeMath {/// @notice Returns x + y, reverts if sum overflows uint256/// @param x The augend/// @param y The addend/// @return z The sum of x and yfunction add(uint256 x, uint256 y) internal pure returns (uint256 z) {require((z = x + y) >= x);}/// @notice Returns x - y, reverts if underflows/// @param x The minuend/// @param y The subtrahend/// @return z The difference of x and yfunction sub(uint256 x, uint256 y) internal pure returns (uint256 z) {require((z = x - y) <= x);}/// @notice Returns x * y, reverts if overflows/// @param x The multiplicand/// @param y The multiplier/// @return z The product of x and y
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;import '@uniswap/v3-periphery/contracts/base/PeripheryPaymentsWithFee.sol';import '../interfaces/IPeripheryPaymentsWithFeeExtended.sol';import './PeripheryPaymentsExtended.sol';abstract contract PeripheryPaymentsWithFeeExtended isIPeripheryPaymentsWithFeeExtended,PeripheryPaymentsExtended,PeripheryPaymentsWithFee{/// @inheritdoc IPeripheryPaymentsWithFeeExtendedfunction unwrapWETH9WithFee(uint256 amountMinimum,uint256 feeBips,address feeRecipient) external payable override {unwrapWETH9WithFee(amountMinimum, msg.sender, feeBips, feeRecipient);}/// @inheritdoc IPeripheryPaymentsWithFeeExtendedfunction sweepTokenWithFee(address token,uint256 amountMinimum,
123456789101112131415// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;/// @title Constant state/// @notice Constant state used by the swap routerlibrary Constants {/// @dev Used for identifying cases when this contract's balance of a token is to be useduint256 internal constant CONTRACT_BALANCE = 0;/// @dev Used as a flag for identifying msg.sender, saves gas by sending more 0 bytesaddress internal constant MSG_SENDER = address(1);/// @dev Used as a flag for identifying address(this), saves gas by sending more 0 bytesaddress internal constant ADDRESS_THIS = address(2);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';import '@uniswap/v3-core/contracts/libraries/LowGasSafeMath.sol';library UniswapV2Library {using LowGasSafeMath for uint256;// returns sorted token addresses, used to handle return values from pairs sorted in this orderfunction sortTokens(address tokenA, address tokenB) internal pure returns (address token0, address token1) {require(tokenA != tokenB);(token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);require(token0 != address(0));}// calculates the CREATE2 address for a pair without making any external callsfunction pairFor(address factory,address tokenA,address tokenB) internal pure returns (address pair) {(address token0, address token1) = sortTokens(tokenA, tokenB);pair = address(uint256(keccak256(
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;import '@openzeppelin/contracts/token/ERC20/IERC20.sol';import '@uniswap/v3-core/contracts/libraries/LowGasSafeMath.sol';import './PeripheryPayments.sol';import '../interfaces/IPeripheryPaymentsWithFee.sol';import '../interfaces/external/IWETH9.sol';import '../libraries/TransferHelper.sol';abstract contract PeripheryPaymentsWithFee is PeripheryPayments, IPeripheryPaymentsWithFee {using LowGasSafeMath for uint256;/// @inheritdoc IPeripheryPaymentsWithFeefunction unwrapWETH9WithFee(uint256 amountMinimum,address recipient,uint256 feeBips,address feeRecipient) public payable override {require(feeBips > 0 && feeBips <= 100);uint256 balanceWETH9 = IWETH9(WETH9).balanceOf(address(this));require(balanceWETH9 >= amountMinimum, 'Insufficient WETH9');
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;import '@uniswap/v3-periphery/contracts/interfaces/IPeripheryPaymentsWithFee.sol';import './IPeripheryPaymentsExtended.sol';/// @title Periphery Payments With Fee Extended/// @notice Functions to ease deposits and withdrawals of ETHinterface IPeripheryPaymentsWithFeeExtended is IPeripheryPaymentsExtended, IPeripheryPaymentsWithFee {/// @notice Unwraps the contract's WETH9 balance and sends it to msg.sender as ETH, with a percentage between/// 0 (exclusive), and 1 (inclusive) going to feeRecipient/// @dev The amountMinimum parameter prevents malicious contracts from stealing WETH9 from users.function unwrapWETH9WithFee(uint256 amountMinimum,uint256 feeBips,address feeRecipient) external payable;/// @notice Transfers the full amount of a token held by this contract to msg.sender, with a percentage between/// 0 (exclusive) and 1 (inclusive) going to feeRecipient/// @dev The amountMinimum parameter prevents malicious contracts from stealing the token from usersfunction sweepTokenWithFee(address token,uint256 amountMinimum,uint256 feeBips,
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;import '@uniswap/v3-periphery/contracts/base/PeripheryPayments.sol';import '@uniswap/v3-periphery/contracts/libraries/TransferHelper.sol';import '../interfaces/IPeripheryPaymentsExtended.sol';abstract contract PeripheryPaymentsExtended is IPeripheryPaymentsExtended, PeripheryPayments {/// @inheritdoc IPeripheryPaymentsExtendedfunction unwrapWETH9(uint256 amountMinimum) external payable override {unwrapWETH9(amountMinimum, msg.sender);}/// @inheritdoc IPeripheryPaymentsExtendedfunction wrapETH(uint256 value) external payable override {IWETH9(WETH9).deposit{value: value}();}/// @inheritdoc IPeripheryPaymentsExtendedfunction sweepToken(address token, uint256 amountMinimum) external payable override {sweepToken(token, amountMinimum, msg.sender);}/// @inheritdoc IPeripheryPaymentsExtendedfunction pull(address token, uint256 value) external payable override {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;import '@openzeppelin/contracts/token/ERC20/IERC20.sol';import '../interfaces/IPeripheryPayments.sol';import '../interfaces/external/IWETH9.sol';import '../libraries/TransferHelper.sol';import './PeripheryImmutableState.sol';abstract contract PeripheryPayments is IPeripheryPayments, PeripheryImmutableState {receive() external payable {require(msg.sender == WETH9, 'Not WETH9');}/// @inheritdoc IPeripheryPaymentsfunction unwrapWETH9(uint256 amountMinimum, address recipient) public payable override {uint256 balanceWETH9 = IWETH9(WETH9).balanceOf(address(this));require(balanceWETH9 >= amountMinimum, 'Insufficient WETH9');if (balanceWETH9 > 0) {IWETH9(WETH9).withdraw(balanceWETH9);TransferHelper.safeTransferETH(recipient, balanceWETH9);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;import './IPeripheryPayments.sol';/// @title Periphery Payments/// @notice Functions to ease deposits and withdrawals of ETHinterface IPeripheryPaymentsWithFee is IPeripheryPayments {/// @notice Unwraps the contract's WETH9 balance and sends it to recipient as ETH, with a percentage between/// 0 (exclusive), and 1 (inclusive) going to feeRecipient/// @dev The amountMinimum parameter prevents malicious contracts from stealing WETH9 from users.function unwrapWETH9WithFee(uint256 amountMinimum,address recipient,uint256 feeBips,address feeRecipient) external payable;/// @notice Transfers the full amount of a token held by this contract to recipient, with a percentage between/// 0 (exclusive) and 1 (inclusive) going to feeRecipient/// @dev The amountMinimum parameter prevents malicious contracts from stealing the token from usersfunction sweepTokenWithFee(address token,uint256 amountMinimum,address recipient,uint256 feeBips,
12345678910111213// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;import '@openzeppelin/contracts/token/ERC20/IERC20.sol';/// @title Interface for WETH9interface IWETH9 is IERC20 {/// @notice Deposit ether to get wrapped etherfunction deposit() external payable;/// @notice Withdraw wrapped ether to get etherfunction withdraw(uint256) external;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.6.0;import '@openzeppelin/contracts/token/ERC20/IERC20.sol';library TransferHelper {/// @notice Transfers tokens from the targeted address to the given destination/// @notice Errors with 'STF' if transfer fails/// @param token The contract address of the token to be transferred/// @param from The originating address from which the tokens will be transferred/// @param to The destination address of the transfer/// @param value The amount to be transferredfunction safeTransferFrom(address token,address from,address to,uint256 value) internal {(bool success, bytes memory data) =token.call(abi.encodeWithSelector(IERC20.transferFrom.selector, from, to, value));require(success && (data.length == 0 || abi.decode(data, (bool))), 'STF');}/// @notice Transfers tokens from msg.sender to a recipient/// @dev Errors with ST if transfer fails/// @param token The contract address of the token which will be transferred
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;import '@uniswap/v3-periphery/contracts/interfaces/IPeripheryPayments.sol';/// @title Periphery Payments Extended/// @notice Functions to ease deposits and withdrawals of ETH and tokensinterface IPeripheryPaymentsExtended is IPeripheryPayments {/// @notice Unwraps the contract's WETH9 balance and sends it to msg.sender as ETH./// @dev The amountMinimum parameter prevents malicious contracts from stealing WETH9 from users./// @param amountMinimum The minimum amount of WETH9 to unwrapfunction unwrapWETH9(uint256 amountMinimum) external payable;/// @notice Wraps the contract's ETH balance into WETH9/// @dev The resulting WETH9 is custodied by the router, thus will require further distribution/// @param value The amount of ETH to wrapfunction wrapETH(uint256 value) external payable;/// @notice Transfers the full amount of a token held by this contract to msg.sender/// @dev The amountMinimum parameter prevents malicious contracts from stealing the token from users/// @param token The contract address of the token which will be transferred to msg.sender/// @param amountMinimum The minimum amount of token required for a transferfunction sweepToken(address token, uint256 amountMinimum) external payable;/// @notice Transfers the specified amount of a token from the msg.sender to address(this)/// @param token The token to pull
1234567891011121314151617181920212223242526pragma solidity >=0.5.0;interface IUniswapV2Pair {event Approval(address indexed owner, address indexed spender, uint value);event Transfer(address indexed from, address indexed to, uint value);function name() external pure returns (string memory);function symbol() external pure returns (string memory);function decimals() external pure returns (uint8);function totalSupply() external view returns (uint);function balanceOf(address owner) external view returns (uint);function allowance(address owner, address spender) external view returns (uint);function approve(address spender, uint value) external returns (bool);function transfer(address to, uint value) external returns (bool);function transferFrom(address from, address to, uint value) external returns (bool);function DOMAIN_SEPARATOR() external view returns (bytes32);function PERMIT_TYPEHASH() external pure returns (bytes32);function nonces(address owner) external view returns (uint);function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;event Mint(address indexed sender, uint amount0, uint amount1);event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);event Swap(
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Safe casting methods/// @notice Contains methods for safely casting between typeslibrary SafeCast {/// @notice Cast a uint256 to a uint160, revert on overflow/// @param y The uint256 to be downcasted/// @return z The downcasted integer, now type uint160function toUint160(uint256 y) internal pure returns (uint160 z) {require((z = uint160(y)) == y);}/// @notice Cast a int256 to a int128, revert on overflow or underflow/// @param y The int256 to be downcasted/// @return z The downcasted integer, now type int128function toInt128(int256 y) internal pure returns (int128 z) {require((z = int128(y)) == y);}/// @notice Cast a uint256 to a int256, revert on overflow/// @param y The uint256 to be casted/// @return z The casted integer, now type int256function toInt256(uint256 y) internal pure returns (int256 z) {require(y < 2**255);z = int256(y);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0 <0.8.0;/// @title Math library for computing sqrt prices from ticks and vice versa/// @notice Computes sqrt price for ticks of size 1.0001, i.e. sqrt(1.0001^tick) as fixed point Q64.96 numbers. Supports/// prices between 2**-128 and 2**128library TickMath {/// @dev The minimum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**-128int24 internal constant MIN_TICK = -887272;/// @dev The maximum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**128int24 internal constant MAX_TICK = -MIN_TICK;/// @dev The minimum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MIN_TICK)uint160 internal constant MIN_SQRT_RATIO = 4295128739;/// @dev The maximum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MAX_TICK)uint160 internal constant MAX_SQRT_RATIO = 1461446703485210103287273052203988822378723970342;/// @notice Calculates sqrt(1.0001^tick) * 2^96/// @dev Throws if |tick| > max tick/// @param tick The input tick for the above formula/// @return sqrtPriceX96 A Fixed point Q64.96 number representing the sqrt of the ratio of the two assets (token1/token0)/// at the given tickfunction getSqrtRatioAtTick(int24 tick) internal pure returns (uint160 sqrtPriceX96) {uint256 absTick = tick < 0 ? uint256(-int256(tick)) : uint256(int256(tick));require(absTick <= uint256(MAX_TICK), 'T');
123456789101112131415161718192021222324// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;import './pool/IUniswapV3PoolImmutables.sol';import './pool/IUniswapV3PoolState.sol';import './pool/IUniswapV3PoolDerivedState.sol';import './pool/IUniswapV3PoolActions.sol';import './pool/IUniswapV3PoolOwnerActions.sol';import './pool/IUniswapV3PoolEvents.sol';/// @title The interface for a Uniswap V3 Pool/// @notice A Uniswap pool facilitates swapping and automated market making between any two assets that strictly conform/// to the ERC20 specification/// @dev The pool interface is broken up into many smaller piecesinterface IUniswapV3Pool isIUniswapV3PoolImmutables,IUniswapV3PoolState,IUniswapV3PoolDerivedState,IUniswapV3PoolActions,IUniswapV3PoolOwnerActions,IUniswapV3PoolEvents{}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.6.0;import './BytesLib.sol';/// @title Functions for manipulating path data for multihop swapslibrary Path {using BytesLib for bytes;/// @dev The length of the bytes encoded addressuint256 private constant ADDR_SIZE = 20;/// @dev The length of the bytes encoded feeuint256 private constant FEE_SIZE = 3;/// @dev The offset of a single token address and pool feeuint256 private constant NEXT_OFFSET = ADDR_SIZE + FEE_SIZE;/// @dev The offset of an encoded pool keyuint256 private constant POP_OFFSET = NEXT_OFFSET + ADDR_SIZE;/// @dev The minimum length of an encoding that contains 2 or more poolsuint256 private constant MULTIPLE_POOLS_MIN_LENGTH = POP_OFFSET + NEXT_OFFSET;/// @notice Returns true iff the path contains two or more pools/// @param path The encoded swap path/// @return True if path contains two or more pools, otherwise falsefunction hasMultiplePools(bytes memory path) internal pure returns (bool) {return path.length >= MULTIPLE_POOLS_MIN_LENGTH;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;import '@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol';import './PoolAddress.sol';/// @notice Provides validation for callbacks from Uniswap V3 Poolslibrary CallbackValidation {/// @notice Returns the address of a valid Uniswap V3 Pool/// @param factory The contract address of the Uniswap V3 factory/// @param tokenA The contract address of either token0 or token1/// @param tokenB The contract address of the other token/// @param fee The fee collected upon every swap in the pool, denominated in hundredths of a bip/// @return pool The V3 pool contract addressfunction verifyCallback(address factory,address tokenA,address tokenB,uint24 fee) internal view returns (IUniswapV3Pool pool) {return verifyCallback(factory, PoolAddress.getPoolKey(tokenA, tokenB, fee));}/// @notice Returns the address of a valid Uniswap V3 Pool/// @param factory The contract address of the Uniswap V3 factory/// @param poolKey The identifying key of the V3 pool
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;pragma abicoder v2;import '../interfaces/IOracleSlippage.sol';import '@uniswap/v3-periphery/contracts/base/PeripheryImmutableState.sol';import '@uniswap/v3-periphery/contracts/base/BlockTimestamp.sol';import '@uniswap/v3-periphery/contracts/libraries/Path.sol';import '@uniswap/v3-periphery/contracts/libraries/PoolAddress.sol';import '@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol';import '@uniswap/v3-periphery/contracts/libraries/OracleLibrary.sol';abstract contract OracleSlippage is IOracleSlippage, PeripheryImmutableState, BlockTimestamp {using Path for bytes;/// @dev Returns the tick as of the beginning of the current block, and as of right now, for the given pool.function getBlockStartingAndCurrentTick(IUniswapV3Pool pool)internalviewreturns (int24 blockStartingTick, int24 currentTick){uint16 observationIndex;uint16 observationCardinality;(, currentTick, observationIndex, observationCardinality, , , ) = pool.slot0();
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Pool state that never changes/// @notice These parameters are fixed for a pool forever, i.e., the methods will always return the same valuesinterface IUniswapV3PoolImmutables {/// @notice The contract that deployed the pool, which must adhere to the IUniswapV3Factory interface/// @return The contract addressfunction factory() external view returns (address);/// @notice The first of the two tokens of the pool, sorted by address/// @return The token contract addressfunction token0() external view returns (address);/// @notice The second of the two tokens of the pool, sorted by address/// @return The token contract addressfunction token1() external view returns (address);/// @notice The pool's fee in hundredths of a bip, i.e. 1e-6/// @return The feefunction fee() external view returns (uint24);/// @notice The pool tick spacing/// @dev Ticks can only be used at multiples of this value, minimum of 1 and always positive/// e.g.: a tickSpacing of 3 means ticks can be initialized every 3rd tick, i.e., ..., -6, -3, 0, 3, 6, .../// This value is an int24 to avoid casting even though it is always positive.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Pool state that can change/// @notice These methods compose the pool's state, and can change with any frequency including multiple times/// per transactioninterface IUniswapV3PoolState {/// @notice The 0th storage slot in the pool stores many values, and is exposed as a single method to save gas/// when accessed externally./// @return sqrtPriceX96 The current price of the pool as a sqrt(token1/token0) Q64.96 value/// tick The current tick of the pool, i.e. according to the last tick transition that was run./// This value may not always be equal to SqrtTickMath.getTickAtSqrtRatio(sqrtPriceX96) if the price is on a tick/// boundary./// observationIndex The index of the last oracle observation that was written,/// observationCardinality The current maximum number of observations stored in the pool,/// observationCardinalityNext The next maximum number of observations, to be updated when the observation./// feeProtocol The protocol fee for both tokens of the pool./// Encoded as two 4 bit values, where the protocol fee of token1 is shifted 4 bits and the protocol fee of token0/// is the lower 4 bits. Used as the denominator of a fraction of the swap fee, e.g. 4 means 1/4th of the swap fee./// unlocked Whether the pool is currently locked to reentrancyfunction slot0()externalviewreturns (uint160 sqrtPriceX96,int24 tick,
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Pool state that is not stored/// @notice Contains view functions to provide information about the pool that is computed rather than stored on the/// blockchain. The functions here may have variable gas costs.interface IUniswapV3PoolDerivedState {/// @notice Returns the cumulative tick and liquidity as of each timestamp `secondsAgo` from the current block timestamp/// @dev To get a time weighted average tick or liquidity-in-range, you must call this with two values, one representing/// the beginning of the period and another for the end of the period. E.g., to get the last hour time-weighted average tick,/// you must call it with secondsAgos = [3600, 0]./// @dev The time weighted average tick represents the geometric time weighted average price of the pool, in/// log base sqrt(1.0001) of token1 / token0. The TickMath library can be used to go from a tick value to a ratio./// @param secondsAgos From how long ago each cumulative tick and liquidity value should be returned/// @return tickCumulatives Cumulative tick values as of each `secondsAgos` from the current block timestamp/// @return secondsPerLiquidityCumulativeX128s Cumulative seconds per liquidity-in-range value as of each `secondsAgos` from the current block/// timestampfunction observe(uint32[] calldata secondsAgos)externalviewreturns (int56[] memory tickCumulatives, uint160[] memory secondsPerLiquidityCumulativeX128s);/// @notice Returns a snapshot of the tick cumulative, seconds per liquidity and seconds inside a tick range/// @dev Snapshots must only be compared to other snapshots, taken over a period for which a position existed./// I.e., snapshots cannot be compared if a position is not held for the entire period between when the first/// snapshot is taken and the second snapshot is taken.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Permissionless pool actions/// @notice Contains pool methods that can be called by anyoneinterface IUniswapV3PoolActions {/// @notice Sets the initial price for the pool/// @dev Price is represented as a sqrt(amountToken1/amountToken0) Q64.96 value/// @param sqrtPriceX96 the initial sqrt price of the pool as a Q64.96function initialize(uint160 sqrtPriceX96) external;/// @notice Adds liquidity for the given recipient/tickLower/tickUpper position/// @dev The caller of this method receives a callback in the form of IUniswapV3MintCallback#uniswapV3MintCallback/// in which they must pay any token0 or token1 owed for the liquidity. The amount of token0/token1 due depends/// on tickLower, tickUpper, the amount of liquidity, and the current price./// @param recipient The address for which the liquidity will be created/// @param tickLower The lower tick of the position in which to add liquidity/// @param tickUpper The upper tick of the position in which to add liquidity/// @param amount The amount of liquidity to mint/// @param data Any data that should be passed through to the callback/// @return amount0 The amount of token0 that was paid to mint the given amount of liquidity. Matches the value in the callback/// @return amount1 The amount of token1 that was paid to mint the given amount of liquidity. Matches the value in the callbackfunction mint(address recipient,int24 tickLower,int24 tickUpper,
1234567891011121314151617181920212223// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Permissioned pool actions/// @notice Contains pool methods that may only be called by the factory ownerinterface IUniswapV3PoolOwnerActions {/// @notice Set the denominator of the protocol's % share of the fees/// @param feeProtocol0 new protocol fee for token0 of the pool/// @param feeProtocol1 new protocol fee for token1 of the poolfunction setFeeProtocol(uint8 feeProtocol0, uint8 feeProtocol1) external;/// @notice Collect the protocol fee accrued to the pool/// @param recipient The address to which collected protocol fees should be sent/// @param amount0Requested The maximum amount of token0 to send, can be 0 to collect fees in only token1/// @param amount1Requested The maximum amount of token1 to send, can be 0 to collect fees in only token0/// @return amount0 The protocol fee collected in token0/// @return amount1 The protocol fee collected in token1function collectProtocol(address recipient,uint128 amount0Requested,uint128 amount1Requested) external returns (uint128 amount0, uint128 amount1);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Events emitted by a pool/// @notice Contains all events emitted by the poolinterface IUniswapV3PoolEvents {/// @notice Emitted exactly once by a pool when #initialize is first called on the pool/// @dev Mint/Burn/Swap cannot be emitted by the pool before Initialize/// @param sqrtPriceX96 The initial sqrt price of the pool, as a Q64.96/// @param tick The initial tick of the pool, i.e. log base 1.0001 of the starting price of the poolevent Initialize(uint160 sqrtPriceX96, int24 tick);/// @notice Emitted when liquidity is minted for a given position/// @param sender The address that minted the liquidity/// @param owner The owner of the position and recipient of any minted liquidity/// @param tickLower The lower tick of the position/// @param tickUpper The upper tick of the position/// @param amount The amount of liquidity minted to the position range/// @param amount0 How much token0 was required for the minted liquidity/// @param amount1 How much token1 was required for the minted liquidityevent Mint(address sender,address indexed owner,int24 indexed tickLower,int24 indexed tickUpper,uint128 amount,
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-later/** @title Solidity Bytes Arrays Utils* @author Gonçalo Sá <goncalo.sa@consensys.net>** @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity.* The library lets you concatenate, slice and type cast bytes arrays both in memory and storage.*/pragma solidity >=0.5.0 <0.8.0;library BytesLib {function slice(bytes memory _bytes,uint256 _start,uint256 _length) internal pure returns (bytes memory) {require(_length + 31 >= _length, 'slice_overflow');require(_start + _length >= _start, 'slice_overflow');require(_bytes.length >= _start + _length, 'slice_outOfBounds');bytes memory tempBytes;assembly {switch iszero(_length)case 0 {// Get a location of some free memory and store it in tempBytes as
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;pragma abicoder v2;/// @title OracleSlippage interface/// @notice Enables slippage checks against oracle pricesinterface IOracleSlippage {/// @notice Ensures that the current (synthetic) tick over the path is no worse than/// `maximumTickDivergence` ticks away from the average as of `secondsAgo`/// @param path The path to fetch prices over/// @param maximumTickDivergence The maximum number of ticks that the price can degrade by/// @param secondsAgo The number of seconds ago to compute oracle prices againstfunction checkOracleSlippage(bytes memory path,uint24 maximumTickDivergence,uint32 secondsAgo) external view;/// @notice Ensures that the weighted average current (synthetic) tick over the path is no/// worse than `maximumTickDivergence` ticks away from the average as of `secondsAgo`/// @param paths The paths to fetch prices over/// @param amounts The weights for each entry in `paths`/// @param maximumTickDivergence The maximum number of ticks that the price can degrade by/// @param secondsAgo The number of seconds ago to compute oracle prices againstfunction checkOracleSlippage(bytes[] memory paths,
123456789101112// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;/// @title Function for getting block timestamp/// @dev Base contract that is overridden for testsabstract contract BlockTimestamp {/// @dev Method that exists purely to be overridden for tests/// @return The current block timestampfunction _blockTimestamp() internal view virtual returns (uint256) {return block.timestamp;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0 <0.8.0;import '@uniswap/v3-core/contracts/libraries/FullMath.sol';import '@uniswap/v3-core/contracts/libraries/TickMath.sol';import '@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol';/// @title Oracle library/// @notice Provides functions to integrate with V3 pool oraclelibrary OracleLibrary {/// @notice Calculates time-weighted means of tick and liquidity for a given Uniswap V3 pool/// @param pool Address of the pool that we want to observe/// @param secondsAgo Number of seconds in the past from which to calculate the time-weighted means/// @return arithmeticMeanTick The arithmetic mean tick from (block.timestamp - secondsAgo) to block.timestamp/// @return harmonicMeanLiquidity The harmonic mean liquidity from (block.timestamp - secondsAgo) to block.timestampfunction consult(address pool, uint32 secondsAgo)internalviewreturns (int24 arithmeticMeanTick, uint128 harmonicMeanLiquidity){require(secondsAgo != 0, 'BP');uint32[] memory secondsAgos = new uint32[](2);secondsAgos[0] = secondsAgo;secondsAgos[1] = 0;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.4.0 <0.8.0;/// @title Contains 512-bit math functions/// @notice Facilitates multiplication and division that can have overflow of an intermediate value without any loss of precision/// @dev Handles "phantom overflow" i.e., allows multiplication and division where an intermediate value overflows 256 bitslibrary FullMath {/// @notice Calculates floor(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0/// @param a The multiplicand/// @param b The multiplier/// @param denominator The divisor/// @return result The 256-bit result/// @dev Credit to Remco Bloemen under MIT license https://xn--2-umb.com/21/muldivfunction mulDiv(uint256 a,uint256 b,uint256 denominator) internal pure returns (uint256 result) {// 512-bit multiply [prod1 prod0] = a * b// Compute the product mod 2**256 and mod 2**256 - 1// then use the Chinese Remainder Theorem to reconstruct// the 512 bit result. The result is stored in two 256// variables such that product = prod1 * 2**256 + prod0uint256 prod0; // Least significant 256 bits of the productuint256 prod1; // Most significant 256 bits of the productassembly {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;pragma abicoder v2;import '../interfaces/IMulticall.sol';/// @title Multicall/// @notice Enables calling multiple methods in a single call to the contractabstract contract Multicall is IMulticall {/// @inheritdoc IMulticallfunction multicall(bytes[] calldata data) public payable override returns (bytes[] memory results) {results = new bytes[](data.length);for (uint256 i = 0; i < data.length; i++) {(bool success, bytes memory result) = address(this).delegatecall(data[i]);if (!success) {// Next 5 lines from https://ethereum.stackexchange.com/a/83577if (result.length < 68) revert();assembly {result := add(result, 0x04)}revert(abi.decode(result, (string)));}results[i] = result;}
1234567891011// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;import '@uniswap/v3-periphery/contracts/base/PeripheryValidation.sol';abstract contract PeripheryValidationExtended is PeripheryValidation {modifier checkPreviousBlockhash(bytes32 previousBlockhash) {require(blockhash(block.number - 1) == previousBlockhash, 'Blockhash');_;}}
1234567891011// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;import './BlockTimestamp.sol';abstract contract PeripheryValidation is BlockTimestamp {modifier checkDeadline(uint256 deadline) {require(_blockTimestamp() <= deadline, 'Transaction too old');_;}}
123456789101112131415161718192021222324// SPDX-License-Identifier: UNLICENSEDpragma solidity =0.7.6;pragma abicoder v2;import '../SwapRouter02.sol';contract MockTimeSwapRouter02 is SwapRouter02 {uint256 time;constructor(address _factoryV2,address factoryV3,address _positionManager,address _WETH9) SwapRouter02(_factoryV2, factoryV3, _positionManager, _WETH9) {}function _blockTimestamp() internal view override returns (uint256) {return time;}function setTime(uint256 _time) external {time = _time;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSEDpragma solidity =0.7.6;pragma abicoder v2;import '../base/MulticallExtended.sol';contract TestMulticallExtended is MulticallExtended {uint256 time;function _blockTimestamp() internal view override returns (uint256) {return time;}function setTime(uint256 _time) external {time = _time;}struct Tuple {uint256 a;uint256 b;}function functionThatReturnsTuple(uint256 a, uint256 b) external pure returns (Tuple memory tuple) {tuple = Tuple({b: a, a: b});}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;pragma abicoder v2;import '../base/OracleSlippage.sol';contract OracleSlippageTest is OracleSlippage {mapping(address => mapping(address => mapping(uint24 => IUniswapV3Pool))) private pools;uint256 internal time;constructor(address _factory, address _WETH9) PeripheryImmutableState(_factory, _WETH9) {}function setTime(uint256 _time) external {time = _time;}function _blockTimestamp() internal view override returns (uint256) {return time;}function registerPool(IUniswapV3Pool pool,address tokenIn,address tokenOut,uint24 fee) external {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;pragma abicoder v2;import '@openzeppelin/contracts/token/ERC20/IERC20.sol';import '@uniswap/v3-periphery/contracts/base/PeripheryImmutableState.sol';import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Callee.sol';import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';import '../libraries/UniswapV2Library.sol';import '../interfaces/ISwapRouter02.sol';import '../interfaces/ITokenValidator.sol';import '../base/ImmutableState.sol';/// @notice Validates tokens by flash borrowing from the token/<base token> pool on V2./// @notice Returns/// Status.FOT if we detected a fee is taken on transfer./// Status.STF if transfer failed for the token./// Status.UNKN if we did not detect any issues with the token./// @notice A return value of Status.UNKN does not mean the token is definitely not a fee on transfer token/// or definitely has no problems with its transfer. It just means we cant say for sure that it has any/// issues./// @dev We can not guarantee the result of this lens is correct for a few reasons:/// @dev 1/ Some tokens take fees or allow transfers under specific conditions, for example some have an allowlist/// @dev of addresses that do/dont require fees. Therefore the result is not guaranteed to be correct/// @dev in all circumstances./// @dev 2/ It is possible that the token does not have any pools on V2 therefore we are not able to perform
12345pragma solidity >=0.5.0;interface IUniswapV2Callee {function uniswapV2Call(address sender, uint amount0, uint amount1, bytes calldata data) external;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;pragma abicoder v2;/// @notice Validates tokens by flash borrowing from the token/<base token> pool on V2./// @notice Returns/// Status.FOT if we detected a fee is taken on transfer./// Status.STF if transfer failed for the token./// Status.UNKN if we did not detect any issues with the token./// @notice A return value of Status.UNKN does not mean the token is definitely not a fee on transfer token/// or definitely has no problems with its transfer. It just means we cant say for sure that it has any/// issues./// @dev We can not guarantee the result of this lens is correct for a few reasons:/// @dev 1/ Some tokens take fees or allow transfers under specific conditions, for example some have an allowlist/// @dev of addresses that do/dont require fees. Therefore the result is not guaranteed to be correct/// @dev in all circumstances./// @dev 2/ It is possible that the token does not have any pools on V2 therefore we are not able to perform/// @dev a flashloan to test the token./// @dev These functions are not marked view because they rely on calling non-view functions and reverting/// to compute the result.interface ITokenValidator {// Status.FOT: detected a fee is taken on transfer.// Status.STF: transfer failed for the token.// Status.UNKN: no issues found with the token.enum Status {UNKN, FOT, STF}
12345678// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;import '../base/ImmutableState.sol';contract ImmutableStateTest is ImmutableState {constructor(address _factoryV2, address _positionManager) ImmutableState(_factoryV2, _positionManager) {}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;pragma abicoder v2;import '@uniswap/v3-periphery/contracts/base/PeripheryImmutableState.sol';import '@uniswap/v3-core/contracts/libraries/SafeCast.sol';import '@uniswap/v3-core/contracts/libraries/TickMath.sol';import '@uniswap/v3-core/contracts/libraries/TickBitmap.sol';import '@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol';import '@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.sol';import '@uniswap/v3-periphery/contracts/libraries/Path.sol';import '@uniswap/v3-periphery/contracts/libraries/PoolAddress.sol';import '@uniswap/v3-periphery/contracts/libraries/CallbackValidation.sol';import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';import '../base/ImmutableState.sol';import '../interfaces/IMixedRouteQuoterV1.sol';import '../libraries/PoolTicksCounter.sol';import '../libraries/UniswapV2Library.sol';/// @title Provides on chain quotes for V3, V2, and MixedRoute exact input swaps/// @notice Allows getting the expected amount out for a given swap without executing the swap/// @notice Does not support exact output swaps since using the contract balance between exactOut swaps is not supported/// @dev These functions are not gas efficient and should _not_ be called on chain. Instead, optimistically execute/// the swap and check the amounts in the callback.contract MixedRouteQuoterV1 is IMixedRouteQuoterV1, IUniswapV3SwapCallback, PeripheryImmutableState {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: BUSL-1.1pragma solidity >=0.5.0;import './BitMath.sol';/// @title Packed tick initialized state library/// @notice Stores a packed mapping of tick index to its initialized state/// @dev The mapping uses int16 for keys since ticks are represented as int24 and there are 256 (2^8) values per word.library TickBitmap {/// @notice Computes the position in the mapping where the initialized bit for a tick lives/// @param tick The tick for which to compute the position/// @return wordPos The key in the mapping containing the word in which the bit is stored/// @return bitPos The bit position in the word where the flag is storedfunction position(int24 tick) private pure returns (int16 wordPos, uint8 bitPos) {wordPos = int16(tick >> 8);bitPos = uint8(tick % 256);}/// @notice Flips the initialized state for a given tick from false to true, or vice versa/// @param self The mapping in which to flip the tick/// @param tick The tick to flip/// @param tickSpacing The spacing between usable ticksfunction flipTick(mapping(int16 => uint256) storage self,int24 tick,int24 tickSpacing
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;pragma abicoder v2;/// @title MixedRouteQuoterV1 Interface/// @notice Supports quoting the calculated amounts for exact input swaps. Is specialized for routes containing a mix of V2 and V3 liquidity./// @notice For each pool also tells you the number of initialized ticks crossed and the sqrt price of the pool after the swap./// @dev These functions are not marked view because they rely on calling non-view functions and reverting/// to compute the result. They are also not gas efficient and should not be called on-chain.interface IMixedRouteQuoterV1 {/// @notice Returns the amount out received for a given exact input swap without executing the swap/// @param path The path of the swap, i.e. each token pair and the pool fee/// @param amountIn The amount of the first token to swap/// @return amountOut The amount of the last token that would be received/// @return v3SqrtPriceX96AfterList List of the sqrt price after the swap for each v3 pool in the path, 0 for v2 pools/// @return v3InitializedTicksCrossedList List of the initialized ticks that the swap crossed for each v3 pool in the path, 0 for v2 pools/// @return v3SwapGasEstimate The estimate of the gas that the v3 swaps in the path consumefunction quoteExactInput(bytes memory path, uint256 amountIn)externalreturns (uint256 amountOut,uint160[] memory v3SqrtPriceX96AfterList,uint32[] memory v3InitializedTicksCrossedList,uint256 v3SwapGasEstimate);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.6.0;import '@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol';library PoolTicksCounter {/// @dev This function counts the number of initialized ticks that would incur a gas cost between tickBefore and tickAfter./// When tickBefore and/or tickAfter themselves are initialized, the logic over whether we should count them depends on the/// direction of the swap. If we are swapping upwards (tickAfter > tickBefore) we don't want to count tickBefore but we do/// want to count tickAfter. The opposite is true if we are swapping downwards.function countInitializedTicksCrossed(IUniswapV3Pool self,int24 tickBefore,int24 tickAfter) internal view returns (uint32 initializedTicksCrossed) {int16 wordPosLower;int16 wordPosHigher;uint8 bitPosLower;uint8 bitPosHigher;bool tickBeforeInitialized;bool tickAfterInitialized;{// Get the key and offset in the tick bitmap of the active tick before and after the swap.int16 wordPos = int16((tickBefore / self.tickSpacing()) >> 8);uint8 bitPos = uint8((tickBefore / self.tickSpacing()) % 256);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title BitMath/// @dev This library provides functionality for computing bit properties of an unsigned integerlibrary BitMath {/// @notice Returns the index of the most significant bit of the number,/// where the least significant bit is at index 0 and the most significant bit is at index 255/// @dev The function satisfies the property:/// x >= 2**mostSignificantBit(x) and x < 2**(mostSignificantBit(x)+1)/// @param x the value for which to compute the most significant bit, must be greater than 0/// @return r the index of the most significant bitfunction mostSignificantBit(uint256 x) internal pure returns (uint8 r) {require(x > 0);if (x >= 0x100000000000000000000000000000000) {x >>= 128;r += 128;}if (x >= 0x10000000000000000) {x >>= 64;r += 64;}if (x >= 0x100000000) {x >>= 32;r += 32;
123456789101112131415161718// SPDX-License-Identifier: GPL-2.0-or-laterimport '@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol';pragma solidity >=0.6.0;import '../libraries/PoolTicksCounter.sol';contract PoolTicksCounterTest {using PoolTicksCounter for IUniswapV3Pool;function countInitializedTicksCrossed(IUniswapV3Pool pool,int24 tickBefore,int24 tickAfter) external view returns (uint32 initializedTicksCrossed) {return pool.countInitializedTicksCrossed(tickBefore, tickAfter);}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSEDpragma solidity =0.7.6;import '@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.sol';import '@uniswap/v3-core/contracts/libraries/SafeCast.sol';import '@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol';import '@openzeppelin/contracts/token/ERC20/IERC20.sol';contract TestUniswapV3Callee is IUniswapV3SwapCallback {using SafeCast for uint256;function swapExact0For1(address pool,uint256 amount0In,address recipient,uint160 sqrtPriceLimitX96) external {IUniswapV3Pool(pool).swap(recipient, true, amount0In.toInt256(), sqrtPriceLimitX96, abi.encode(msg.sender));}function swap0ForExact1(address pool,uint256 amount1Out,address recipient,uint160 sqrtPriceLimitX96) external {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.7.0;import "../../utils/Context.sol";import "./IERC20.sol";import "../../math/SafeMath.sol";/*** @dev Implementation of the {IERC20} interface.** This implementation is agnostic to the way tokens are created. This means* that a supply mechanism has to be added in a derived contract using {_mint}.* For a generic mechanism see {ERC20PresetMinterPauser}.** TIP: For a detailed writeup see our guide* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How* to implement supply mechanisms].** We have followed general OpenZeppelin guidelines: functions revert instead* of returning `false` on failure. This behavior is nonetheless conventional* and does not conflict with the expectations of ERC20 applications.** Additionally, an {Approval} event is emitted on calls to {transferFrom}.* This allows applications to reconstruct the allowance for all accounts just* by listening to said events. Other implementations of the EIP may not emit
123456789101112131415161718192021222324// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <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 GSN 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 payable) {return msg.sender;}function _msgData() internal view virtual returns (bytes memory) {this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691return msg.data;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.7.0;/*** @dev Wrappers over Solidity's arithmetic operations with added overflow* checks.** Arithmetic operations in Solidity wrap on overflow. This can easily result* in bugs, because programmers usually assume that an overflow raises an* error, which is the standard behavior in high level programming languages.* `SafeMath` restores this intuition by reverting the transaction when an* operation overflows.** Using this library instead of the unchecked operations eliminates an entire* class of bugs, so it's recommended to use it always.*/library SafeMath {/*** @dev Returns the addition of two unsigned integers, with an overflow flag.** _Available since v3.4._*/function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {uint256 c = a + b;if (c < a) return (false, 0);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.7.0;import "../math/SafeMath.sol";/*** @title Counters* @author Matt Condon (@shrugs)* @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number* of elements in a mapping, issuing ERC721 ids, or counting request ids.** Include with `using Counters for Counters.Counter;`* Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath}* overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never* directly accessed.*/library Counters {using SafeMath for uint256;struct Counter {// This variable should never be directly accessed by users of the library: interactions must be restricted to// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add// this feature: see https://github.com/ethereum/solidity/issues/4637uint256 _value; // default: 0}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.6.5 <0.8.0;import "../token/ERC20/ERC20.sol";import "./IERC20Permit.sol";import "../cryptography/ECDSA.sol";import "../utils/Counters.sol";import "./EIP712.sol";/*** @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].** Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by* presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't* need to send a transaction, and thus is not required to hold Ether at all.** _Available since v3.4._*/abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {using Counters for Counters.Counter;mapping (address => Counters.Counter) private _nonces;// solhint-disable-next-line var-name-mixedcase
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.7.0;/*** @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.** These functions can be used to verify that a message was signed by the holder* of the private keys of a given address.*/library ECDSA {/*** @dev Returns the address that signed a hashed message (`hash`) with* `signature`. This address can then be used for verification purposes.** The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:* this function rejects them by requiring the `s` value to be in the lower* half order, and the `v` value to be either 27 or 28.** IMPORTANT: `hash` _must_ be the result of a hash operation for the* verification to be secure: it is possible to craft signatures that* recover to arbitrary addresses for non-hashed data. A safe way to ensure* this is by receiving a hash of the original message (which may otherwise* be too long), and then calling {toEthSignedMessageHash} on it.*/function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <0.8.0;/*** @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.** The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,* thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding* they need in their contracts using a combination of `abi.encode` and `keccak256`.** This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding* scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA* ({_hashTypedDataV4}).** The implementation of the domain separator was designed to be as efficient as possible while still properly updating* the chain id to protect against replay attacks on an eventual fork of the chain.** NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method* https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].** _Available since v3.4._*/abstract contract EIP712 {/* solhint-disable var-name-mixedcase */// Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;pragma abicoder v2;import '@uniswap/v3-periphery/contracts/base/PeripheryImmutableState.sol';import '@uniswap/v3-core/contracts/libraries/SafeCast.sol';import '@uniswap/v3-core/contracts/libraries/TickMath.sol';import '@uniswap/v3-core/contracts/libraries/TickBitmap.sol';import '@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol';import '@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.sol';import '@uniswap/v3-periphery/contracts/libraries/Path.sol';import '@uniswap/v3-periphery/contracts/libraries/PoolAddress.sol';import '@uniswap/v3-periphery/contracts/libraries/CallbackValidation.sol';import '../interfaces/IQuoterV2.sol';import '../libraries/PoolTicksCounter.sol';/// @title Provides quotes for swaps/// @notice Allows getting the expected amount out or amount in for a given swap without executing the swap/// @dev These functions are not gas efficient and should _not_ be called on chain. Instead, optimistically execute/// the swap and check the amounts in the callback.contract QuoterV2 is IQuoterV2, IUniswapV3SwapCallback, PeripheryImmutableState {using Path for bytes;using SafeCast for uint256;using PoolTicksCounter for IUniswapV3Pool;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;pragma abicoder v2;/// @title QuoterV2 Interface/// @notice Supports quoting the calculated amounts from exact input or exact output swaps./// @notice For each pool also tells you the number of initialized ticks crossed and the sqrt price of the pool after the swap./// @dev These functions are not marked view because they rely on calling non-view functions and reverting/// to compute the result. They are also not gas efficient and should not be called on-chain.interface IQuoterV2 {/// @notice Returns the amount out received for a given exact input swap without executing the swap/// @param path The path of the swap, i.e. each token pair and the pool fee/// @param amountIn The amount of the first token to swap/// @return amountOut The amount of the last token that would be received/// @return sqrtPriceX96AfterList List of the sqrt price after the swap for each pool in the path/// @return initializedTicksCrossedList List of the initialized ticks that the swap crossed for each pool in the path/// @return gasEstimate The estimate of the gas that the swap consumesfunction quoteExactInput(bytes memory path, uint256 amountIn)externalreturns (uint256 amountOut,uint160[] memory sqrtPriceX96AfterList,uint32[] memory initializedTicksCrossedList,uint256 gasEstimate);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;pragma abicoder v2;import '@uniswap/v3-periphery/contracts/base/PeripheryImmutableState.sol';import '@uniswap/v3-core/contracts/libraries/SafeCast.sol';import '@uniswap/v3-core/contracts/libraries/TickMath.sol';import '@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol';import '@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.sol';import '@uniswap/v3-periphery/contracts/libraries/Path.sol';import '@uniswap/v3-periphery/contracts/libraries/PoolAddress.sol';import '@uniswap/v3-periphery/contracts/libraries/CallbackValidation.sol';import '../interfaces/IQuoter.sol';/// @title Provides quotes for swaps/// @notice Allows getting the expected amount out or amount in for a given swap without executing the swap/// @dev These functions are not gas efficient and should _not_ be called on chain. Instead, optimistically execute/// the swap and check the amounts in the callback.contract Quoter is IQuoter, IUniswapV3SwapCallback, PeripheryImmutableState {using Path for bytes;using SafeCast for uint256;/// @dev Transient storage variable used to check a safety condition in exact output swaps.uint256 private amountOutCached;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.7.5;pragma abicoder v2;/// @title Quoter Interface/// @notice Supports quoting the calculated amounts from exact input or exact output swaps/// @dev These functions are not marked view because they rely on calling non-view functions and reverting/// to compute the result. They are also not gas efficient and should not be called on-chain.interface IQuoter {/// @notice Returns the amount out received for a given exact input swap without executing the swap/// @param path The path of the swap, i.e. each token pair and the pool fee/// @param amountIn The amount of the first token to swap/// @return amountOut The amount of the last token that would be receivedfunction quoteExactInput(bytes memory path, uint256 amountIn) external returns (uint256 amountOut);/// @notice Returns the amount out received for a given exact input but for a swap of a single pool/// @param tokenIn The token being swapped in/// @param tokenOut The token being swapped out/// @param fee The fee of the token pool to consider for the pair/// @param amountIn The desired input amount/// @param sqrtPriceLimitX96 The price limit of the pool that cannot be exceeded by the swap/// @return amountOut The amount of `tokenOut` that would be receivedfunction quoteExactInputSingle(address tokenIn,address tokenOut,uint24 fee,
12345678910// SPDX-License-Identifier: UNLICENSEDpragma solidity =0.7.6;import '@openzeppelin/contracts/drafts/ERC20Permit.sol';contract TestERC20 is ERC20Permit {constructor(uint256 amountToMint) ERC20('Test ERC20', 'TEST') ERC20Permit('Test ERC20') {_mint(msg.sender, amountToMint);}}
12345678910111213141516171819{"evmVersion": "istanbul","optimizer": {"enabled": true,"runs": 1000000},"metadata": {"bytecodeHash": "none"},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","abi"]}}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_factoryV2","type":"address"},{"internalType":"address","name":"factoryV3","type":"address"},{"internalType":"address","name":"_positionManager","type":"address"},{"internalType":"address","name":"_WETH9","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"WETH9","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"approveMax","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"approveMaxMinusOne","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"approveZeroThenMax","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"approveZeroThenMaxMinusOne","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"callPositionManager","outputs":[{"internalType":"bytes","name":"result","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"paths","type":"bytes[]"},{"internalType":"uint128[]","name":"amounts","type":"uint128[]"},{"internalType":"uint24","name":"maximumTickDivergence","type":"uint24"},{"internalType":"uint32","name":"secondsAgo","type":"uint32"}],"name":"checkOracleSlippage","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"path","type":"bytes"},{"internalType":"uint24","name":"maximumTickDivergence","type":"uint24"},{"internalType":"uint32","name":"secondsAgo","type":"uint32"}],"name":"checkOracleSlippage","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"bytes","name":"path","type":"bytes"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"amountOutMinimum","type":"uint256"}],"internalType":"struct IV3SwapRouter.ExactInputParams","name":"params","type":"tuple"}],"name":"exactInput","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"address","name":"tokenOut","type":"address"},{"internalType":"uint24","name":"fee","type":"uint24"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"amountOutMinimum","type":"uint256"},{"internalType":"uint160","name":"sqrtPriceLimitX96","type":"uint160"}],"internalType":"struct IV3SwapRouter.ExactInputSingleParams","name":"params","type":"tuple"}],"name":"exactInputSingle","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"bytes","name":"path","type":"bytes"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amountOut","type":"uint256"},{"internalType":"uint256","name":"amountInMaximum","type":"uint256"}],"internalType":"struct IV3SwapRouter.ExactOutputParams","name":"params","type":"tuple"}],"name":"exactOutput","outputs":[{"internalType":"uint256","name":"amountIn","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"address","name":"tokenOut","type":"address"},{"internalType":"uint24","name":"fee","type":"uint24"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amountOut","type":"uint256"},{"internalType":"uint256","name":"amountInMaximum","type":"uint256"},{"internalType":"uint160","name":"sqrtPriceLimitX96","type":"uint160"}],"internalType":"struct IV3SwapRouter.ExactOutputSingleParams","name":"params","type":"tuple"}],"name":"exactOutputSingle","outputs":[{"internalType":"uint256","name":"amountIn","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"factoryV2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getApprovalType","outputs":[{"internalType":"enum IApproveAndCall.ApprovalType","name":"","type":"uint8"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount0Min","type":"uint256"},{"internalType":"uint256","name":"amount1Min","type":"uint256"}],"internalType":"struct IApproveAndCall.IncreaseLiquidityParams","name":"params","type":"tuple"}],"name":"increaseLiquidity","outputs":[{"internalType":"bytes","name":"result","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"},{"internalType":"uint24","name":"fee","type":"uint24"},{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"uint256","name":"amount0Min","type":"uint256"},{"internalType":"uint256","name":"amount1Min","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"internalType":"struct IApproveAndCall.MintParams","name":"params","type":"tuple"}],"name":"mint","outputs":[{"internalType":"bytes","name":"result","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"previousBlockhash","type":"bytes32"},{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"","type":"bytes[]"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"","type":"bytes[]"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"positionManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"pull","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"refundETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"selfPermit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"selfPermitAllowed","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"selfPermitAllowedIfNecessary","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"selfPermitIfNecessary","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"internalType":"address[]","name":"path","type":"address[]"},{"internalType":"address","name":"to","type":"address"}],"name":"swapExactTokensForTokens","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"},{"internalType":"uint256","name":"amountInMax","type":"uint256"},{"internalType":"address[]","name":"path","type":"address[]"},{"internalType":"address","name":"to","type":"address"}],"name":"swapTokensForExactTokens","outputs":[{"internalType":"uint256","name":"amountIn","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amountMinimum","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"sweepToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amountMinimum","type":"uint256"}],"name":"sweepToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amountMinimum","type":"uint256"},{"internalType":"uint256","name":"feeBips","type":"uint256"},{"internalType":"address","name":"feeRecipient","type":"address"}],"name":"sweepTokenWithFee","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amountMinimum","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"feeBips","type":"uint256"},{"internalType":"address","name":"feeRecipient","type":"address"}],"name":"sweepTokenWithFee","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"int256","name":"amount0Delta","type":"int256"},{"internalType":"int256","name":"amount1Delta","type":"int256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"uniswapV3SwapCallback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountMinimum","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"unwrapWETH9","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountMinimum","type":"uint256"}],"name":"unwrapWETH9","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountMinimum","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"feeBips","type":"uint256"},{"internalType":"address","name":"feeRecipient","type":"address"}],"name":"unwrapWETH9WithFee","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountMinimum","type":"uint256"},{"internalType":"uint256","name":"feeBips","type":"uint256"},{"internalType":"address","name":"feeRecipient","type":"address"}],"name":"unwrapWETH9WithFee","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"wrapETH","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6101006040526000196000553480156200001857600080fd5b5060405162006135380380620061358339810160408190526200003b9162000087565b6001600160601b0319606094851b811660805291841b821660a05291831b811660c052911b1660e052620000e3565b80516001600160a01b03811681146200008257600080fd5b919050565b600080600080608085870312156200009d578384fd5b620000a8856200006a565b9350620000b8602086016200006a565b9250620000c8604086016200006a565b9150620000d8606086016200006a565b905092959194509250565b60805160601c60a05160601c60c05160601c60e05160601c615fb162000184600039806102c15280610b3c52806112ad52806113d7528061147e52806116af52806117d95280612d8f5280612def5280612e70525080611e4c52806124df5280613cdb52508061166f5280611b1a5280611e9c52806132a6525080610c625280610d365280610fe2528061164b5280612fc252806131855250615fb16000f3fe6080604052600436106102a45760003560e01c80639b2c0a371161016e578063dee00f35116100cb578063f100b2051161007f578063f2d5d56b11610064578063f2d5d56b1461066e578063f3995c6714610681578063fa461e33146106945761034f565b8063f100b2051461063b578063f25801a71461064e5761034f565b8063e0e189a0116100b0578063e0e189a0146105f5578063e90a182f14610608578063efdeed8e1461061b5761034f565b8063dee00f35146105b5578063df2ab5bb146105e25761034f565b8063b858183f11610122578063c45a015511610107578063c45a01551461057a578063cab372ce1461058f578063d4ef38de146105a25761034f565b8063b858183f14610554578063c2e3140a146105675761034f565b8063ab3fdd5011610153578063ab3fdd501461051b578063ac9650d81461052e578063b3a2af13146105415761034f565b80639b2c0a37146104f5578063a4a78f0c146105085761034f565b8063472b43f31161021c578063571ac8b0116101d0578063639d71a9116101b5578063639d71a9146104b857806368e0d4e1146104cb578063791b98bc146104e05761034f565b8063571ac8b0146104925780635ae401dc146104a55761034f565b80634961699711610201578063496169971461044a5780634aa4a4fc1461045d5780635023b4df1461047f5761034f565b8063472b43f31461042457806349404b7c146104375761034f565b80631c58db4f116102735780633068c554116102585780633068c554146103eb57806342712a67146103fe5780634659a494146104115761034f565b80631c58db4f146103b85780631f0464d1146103cb5761034f565b806304e45aaf1461035457806309b813461461037d57806311ed56c91461039057806312210e8a146103b05761034f565b3661034f573373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000161461034d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f4e6f742057455448390000000000000000000000000000000000000000000000604482015290519081900360640190fd5b005b600080fd5b610367610362366004615543565b6106b4565b6040516103749190615dfd565b60405180910390f35b61036761038b3660046155de565b61083c565b6103a361039e366004615638565b61091c565b6040516103749190615b7a565b61034d610b28565b61034d6103c63660046157bb565b610b3a565b6103de6103d93660046152a7565b610bbe565b6040516103749190615afc565b61034d6103f93660046150d8565b610c48565b61036761040c366004615885565b610c5b565b61034d61041f366004615121565b610e35565b610367610432366004615885565b610ef5565b61034d6104453660046157eb565b6112a9565b61034d6104583660046157bb565b61146f565b34801561046957600080fd5b5061047261147c565b6040516103749190615a3c565b61036761048d366004615616565b6114a0565b61034d6104a0366004614feb565b611589565b6103de6104b33660046152a7565b6115bc565b61034d6104c6366004614feb565b611635565b3480156104d757600080fd5b50610472611649565b3480156104ec57600080fd5b5061047261166d565b61034d61050336600461581a565b611691565b61034d610516366004615121565b6118a7565b61034d610529366004614feb565b61197c565b6103de61053c36600461517c565b6119ba565b6103a361054f3660046152f1565b611b14565b61036761056236600461549d565b611bd2565b61034d610575366004615121565b611d95565b34801561058657600080fd5b50610472611e4a565b61034d61059d366004614feb565b611990565b61034d6105b0366004615858565b611e6e565b3480156105c157600080fd5b506105d56105d036600461500e565b611e7a565b6040516103749190615b8d565b61034d6105f0366004615039565b612027565b61034d61060336600461507a565b61213e565b61034d61061636600461500e565b6122a4565b34801561062757600080fd5b5061034d6106363660046151bc565b6122b3565b6103a3610649366004615627565b612305565b34801561065a57600080fd5b5061034d610669366004615324565b6123a5565b61034d61067c36600461500e565b6123f6565b61034d61068f366004615121565b612402565b3480156106a057600080fd5b5061034d6106af3660046153b8565b61249a565b600080600083608001511415610771575081516040517f70a0823100000000000000000000000000000000000000000000000000000000815260019173ffffffffffffffffffffffffffffffffffffffff16906370a082319061071b903090600401615a3c565b60206040518083038186803b15801561073357600080fd5b505afa158015610747573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061076b91906157d3565b60808401525b6107ed836080015184606001518560c001516040518060400160405280886000015189604001518a602001516040516020016107af939291906159aa565b6040516020818303038152906040528152602001866107ce57336107d0565b305b73ffffffffffffffffffffffffffffffffffffffff1690526125de565b91508260a00151821015610836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90615c7d565b60405180910390fd5b50919050565b60006108b0604083018035906108559060208601614feb565b604080518082019091526000908061086d8880615e41565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050908252503360209091015261278f565b505060005460608201358111156108f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90615c0f565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600055919050565b604080516101608101909152606090610b20907f8831645600000000000000000000000000000000000000000000000000000000908061095f6020870187614feb565b73ffffffffffffffffffffffffffffffffffffffff16815260200185602001602081019061098d9190614feb565b73ffffffffffffffffffffffffffffffffffffffff1681526020016109b860608701604088016157a1565b62ffffff1681526020016109d26080870160608801615379565b60020b81526020016109ea60a0870160808801615379565b60020b8152602090810190610a0a90610a0590880188614feb565b612976565b8152602001610a25866020016020810190610a059190614feb565b815260a0860135602082015260c08601356040820152606001610a4f610100870160e08801614feb565b73ffffffffffffffffffffffffffffffffffffffff1681526020017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff815250604051602401610a9e9190615cf8565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152611b14565b90505b919050565b4715610b3857610b383347612a1b565b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b158015610ba257600080fd5b505af1158015610bb6573d6000803e3d6000fd5b505050505050565b60608380600143034014610c3357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f426c6f636b686173680000000000000000000000000000000000000000000000604482015290519081900360640190fd5b610c3d84846119ba565b91505b509392505050565b610c55848433858561213e565b50505050565b6000610cbb7f000000000000000000000000000000000000000000000000000000000000000087868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250612b6992505050565b600081518110610cc757fe5b6020026020010151905084811115610d0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90615c0f565b610da484846000818110610d1b57fe5b9050602002016020810190610d309190614feb565b33610d9e7f000000000000000000000000000000000000000000000000000000000000000088886000818110610d6257fe5b9050602002016020810190610d779190614feb565b89896001818110610d8457fe5b9050602002016020810190610d999190614feb565b612ca2565b84612d8d565b73ffffffffffffffffffffffffffffffffffffffff821660011415610dcb57339150610dee565b73ffffffffffffffffffffffffffffffffffffffff821660021415610dee573091505b610e2c848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250869250612f6b915050565b95945050505050565b604080517f8fcbaf0c00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101879052606481018690526001608482015260ff851660a482015260c4810184905260e48101839052905173ffffffffffffffffffffffffffffffffffffffff881691638fcbaf0c9161010480830192600092919082900301818387803b158015610ed557600080fd5b505af1158015610ee9573d6000803e3d6000fd5b50505050505050505050565b60008086610fab575060018484600081610f0b57fe5b9050602002016020810190610f209190614feb565b73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f589190615a3c565b60206040518083038186803b158015610f7057600080fd5b505afa158015610f84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa891906157d3565b96505b61103685856000818110610fbb57fe5b9050602002016020810190610fd09190614feb565b82610fdb5733610fdd565b305b6110307f00000000000000000000000000000000000000000000000000000000000000008989600081811061100e57fe5b90506020020160208101906110239190614feb565b8a8a6001818110610d8457fe5b8a612d8d565b73ffffffffffffffffffffffffffffffffffffffff83166001141561105d57339250611080565b73ffffffffffffffffffffffffffffffffffffffff831660021415611080573092505b600085857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81018181106110b057fe5b90506020020160208101906110c59190614feb565b73ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b81526004016110fd9190615a3c565b60206040518083038186803b15801561111557600080fd5b505afa158015611129573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114d91906157d3565b905061118d868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250889250612f6b915050565b6112628187877fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81018181106111bf57fe5b90506020020160208101906111d49190614feb565b73ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b815260040161120c9190615a3c565b60206040518083038186803b15801561122457600080fd5b505afa158015611238573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125c91906157d3565b90613270565b92508683101561129e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90615c7d565b505095945050505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561133257600080fd5b505afa158015611346573d6000803e3d6000fd5b505050506040513d602081101561135c57600080fd5b50519050828110156113cf57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f496e73756666696369656e742057455448390000000000000000000000000000604482015290519081900360640190fd5b801561146a577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561144857600080fd5b505af115801561145c573d6000803e3d6000fd5b5050505061146a8282612a1b565b505050565b61147981336112a9565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000611549608083018035906114b99060608601614feb565b6114c960e0860160c08701614feb565b60405180604001604052808760200160208101906114e79190614feb565b6114f760608a0160408b016157a1565b61150460208b018b614feb565b604051602001611516939291906159aa565b60405160208183030381529060405281526020013373ffffffffffffffffffffffffffffffffffffffff1681525061278f565b90508160a001358111156108f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90615c0f565b6115b3817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff613280565b61147957600080fd5b606083806115c86133cc565b1115610c3357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f5472616e73616374696f6e20746f6f206f6c6400000000000000000000000000604482015290519081900360640190fd5b611640816000613280565b61158957600080fd5b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000821180156116a2575060648211155b6116ab57600080fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561173457600080fd5b505afa158015611748573d6000803e3d6000fd5b505050506040513d602081101561175e57600080fd5b50519050848110156117d157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f496e73756666696369656e742057455448390000000000000000000000000000604482015290519081900360640190fd5b80156118a0577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561184a57600080fd5b505af115801561185e573d6000803e3d6000fd5b50505050600061271061187a85846133d090919063ffffffff16565b8161188157fe5b0490508015611894576118948382612a1b565b610bb685828403612a1b565b5050505050565b604080517fdd62ed3e00000000000000000000000000000000000000000000000000000000815233600482015230602482015290517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9173ffffffffffffffffffffffffffffffffffffffff89169163dd62ed3e91604480820192602092909190829003018186803b15801561193c57600080fd5b505afa158015611950573d6000803e3d6000fd5b505050506040513d602081101561196657600080fd5b50511015610bb657610bb6868686868686610e35565b611987816000613280565b61199057600080fd5b6115b3817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe613280565b60608167ffffffffffffffff811180156119d357600080fd5b50604051908082528060200260200182016040528015611a0757816020015b60608152602001906001900390816119f25790505b50905060005b82811015611b0d5760008030868685818110611a2557fe5b9050602002810190611a379190615e41565b604051611a45929190615a10565b600060405180830381855af49150503d8060008114611a80576040519150601f19603f3d011682016040523d82523d6000602084013e611a85565b606091505b509150915081611aeb57604481511015611a9e57600080fd5b60048101905080806020019051810190611ab89190615433565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d9190615b7a565b80848481518110611af857fe5b60209081029190910101525050600101611a0d565b5092915050565b606060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1683604051611b5d9190615a20565b6000604051808303816000865af19150503d8060008114611b9a576040519150601f19603f3d011682016040523d82523d6000602084013e611b9f565b606091505b50925090508061083657604482511015611bb857600080fd5b60048201915081806020019051810190611ab89190615433565b600080600083604001511415611ca357600190506000611bf584600001516133f4565b50506040517f70a0823100000000000000000000000000000000000000000000000000000000815290915073ffffffffffffffffffffffffffffffffffffffff8216906370a0823190611c4c903090600401615a3c565b60206040518083038186803b158015611c6457600080fd5b505afa158015611c78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c9c91906157d3565b6040850152505b600081611cb05733611cb2565b305b90505b6000611cc48560000151613425565b9050611d1d856040015182611cdd578660200151611cdf565b305b60006040518060400160405280611cf98b6000015161342d565b81526020018773ffffffffffffffffffffffffffffffffffffffff168152506125de565b60408601528015611d3d578451309250611d369061343c565b8552611d4a565b8460400151935050611d50565b50611cb5565b8360600151831015611d8e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90615c7d565b5050919050565b604080517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523360048201523060248201529051869173ffffffffffffffffffffffffffffffffffffffff89169163dd62ed3e91604480820192602092909190829003018186803b158015611e0a57600080fd5b505afa158015611e1e573d6000803e3d6000fd5b505050506040513d6020811015611e3457600080fd5b50511015610bb657610bb6868686868686612402565b7f000000000000000000000000000000000000000000000000000000000000000081565b61146a83338484611691565b6000818373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e307f00000000000000000000000000000000000000000000000000000000000000006040518363ffffffff1660e01b8152600401611ed8929190615a5d565b60206040518083038186803b158015611ef057600080fd5b505afa158015611f04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f2891906157d3565b10611f3557506000612021565b611f5f837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff613280565b15611f6c57506001612021565b611f96837ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe613280565b15611fa357506002612021565b611fae836000613280565b611fb757600080fd5b611fe1837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff613280565b15611fee57506003612021565b612018837ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe613280565b1561034f575060045b92915050565b60008373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561209057600080fd5b505afa1580156120a4573d6000803e3d6000fd5b505050506040513d60208110156120ba57600080fd5b505190508281101561212d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f496e73756666696369656e7420746f6b656e0000000000000000000000000000604482015290519081900360640190fd5b8015610c5557610c55848383613471565b60008211801561214f575060648211155b61215857600080fd5b60008573ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156121c157600080fd5b505afa1580156121d5573d6000803e3d6000fd5b505050506040513d60208110156121eb57600080fd5b505190508481101561225e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f496e73756666696369656e7420746f6b656e0000000000000000000000000000604482015290519081900360640190fd5b8015610bb657600061271061227383866133d0565b8161227a57fe5b049050801561228e5761228e878483613471565b61229b8786838503613471565b50505050505050565b6122af828233612027565b5050565b6000806122c1868685613646565b915091508362ffffff1681830312610bb6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90615c46565b6060610b2063219f5d1760e01b6040518060c001604052808560400135815260200161233d866000016020810190610a059190614feb565b8152602001612358866020016020810190610a059190614feb565b815260200185606001358152602001856080013581526020017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff815250604051602401610a9e9190615cb4565b6000806123b28584613859565b915091508362ffffff16818303126118a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90615c46565b6122af82333084613ae1565b604080517fd505accf000000000000000000000000000000000000000000000000000000008152336004820152306024820152604481018790526064810186905260ff8516608482015260a4810184905260c48101839052905173ffffffffffffffffffffffffffffffffffffffff88169163d505accf9160e480830192600092919082900301818387803b158015610ed557600080fd5b60008413806124a95750600083135b6124b257600080fd5b60006124c08284018461564a565b905060008060006124d484600001516133f4565b9250925092506125067f0000000000000000000000000000000000000000000000000000000000000000848484613cbe565b5060008060008a13612547578473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161089612578565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16108a5b915091508115612597576125928587602001513384612d8d565b610ee9565b85516125a290613425565b156125c75785516125b29061343c565b86526125c1813360008961278f565b50610ee9565b80600081905550610ee98487602001513384612d8d565b600073ffffffffffffffffffffffffffffffffffffffff8416600114156126075733935061262a565b73ffffffffffffffffffffffffffffffffffffffff84166002141561262a573093505b600080600061263c85600001516133f4565b9194509250905073ffffffffffffffffffffffffffffffffffffffff8083169084161060008061266d868686613cd4565b73ffffffffffffffffffffffffffffffffffffffff1663128acb088b856126938f613d12565b73ffffffffffffffffffffffffffffffffffffffff8e16156126b5578d6126db565b876126d45773fffd8963efd1fc6a506488495d951d5263988d256126db565b6401000276a45b8d6040516020016126ec9190615da6565b6040516020818303038152906040526040518663ffffffff1660e01b815260040161271b959493929190615a84565b6040805180830381600087803b15801561273457600080fd5b505af1158015612748573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061276c9190615395565b915091508261277b578161277d565b805b6000039b9a5050505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff8416600114156127b8573393506127db565b73ffffffffffffffffffffffffffffffffffffffff8416600214156127db573093505b60008060006127ed85600001516133f4565b9194509250905073ffffffffffffffffffffffffffffffffffffffff8084169083161060008061281e858786613cd4565b73ffffffffffffffffffffffffffffffffffffffff1663128acb088b856128448f613d12565b60000373ffffffffffffffffffffffffffffffffffffffff8e1615612869578d61288f565b876128885773fffd8963efd1fc6a506488495d951d5263988d2561288f565b6401000276a45b8d6040516020016128a09190615da6565b6040516020818303038152906040526040518663ffffffff1660e01b81526004016128cf959493929190615a84565b6040805180830381600087803b1580156128e857600080fd5b505af11580156128fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129209190615395565b9150915060008361293557818360000361293b565b82826000035b909850905073ffffffffffffffffffffffffffffffffffffffff8a16612967578b811461296757600080fd5b50505050505050949350505050565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff8316906370a08231906129cb903090600401615a3c565b60206040518083038186803b1580156129e357600080fd5b505afa1580156129f7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2091906157d3565b6040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff84169083906040518082805190602001908083835b60208310612a9257805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101612a55565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612af4576040519150601f19603f3d011682016040523d82523d6000602084013e612af9565b606091505b505090508061146a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600360248201527f5354450000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b6060600282511015612b7a57600080fd5b815167ffffffffffffffff81118015612b9257600080fd5b50604051908082528060200260200182016040528015612bbc578160200160208202803683370190505b5090508281600183510381518110612bd057fe5b602090810291909101015281517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff015b8015610c4057600080612c3d87866001860381518110612c1c57fe5b6020026020010151878681518110612c3057fe5b6020026020010151613d44565b91509150612c5f848481518110612c5057fe5b60200260200101518383613e2c565b846001850381518110612c6e57fe5b602090810291909101015250507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01612c00565b6000806000612cb18585613f02565b604080517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606094851b811660208084019190915293851b81166034830152825160288184030181526048830184528051908501207fff0000000000000000000000000000000000000000000000000000000000000060688401529a90941b9093166069840152607d8301989098527f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f609d808401919091528851808403909101815260bd909201909752805196019590952095945050505050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015612de85750804710155b15612f31577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b158015612e5557600080fd5b505af1158015612e69573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612eff57600080fd5b505af1158015612f13573d6000803e3d6000fd5b505050506040513d6020811015612f2957600080fd5b50610c559050565b73ffffffffffffffffffffffffffffffffffffffff8316301415612f5f57612f5a848383613471565b610c55565b610c5584848484613ae1565b60005b600183510381101561146a57600080848381518110612f8957fe5b6020026020010151858460010181518110612fa057fe5b6020026020010151915091506000612fb88383613f02565b5090506000612fe87f00000000000000000000000000000000000000000000000000000000000000008585612ca2565b90506000806000808473ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561303657600080fd5b505afa15801561304a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061306e91906156da565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff1691506000808773ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff16146130d05782846130d3565b83835b91509150613114828b73ffffffffffffffffffffffffffffffffffffffff166370a082318a6040518263ffffffff1660e01b815260040161120c9190615a3c565b9550613121868383613fa7565b9450505050506000808573ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161461316557826000613169565b6000835b91509150600060028c51038a10613180578a6131c1565b6131c17f0000000000000000000000000000000000000000000000000000000000000000898e8d600201815181106131b457fe5b6020026020010151612ca2565b604080516000815260208101918290527f022c0d9f0000000000000000000000000000000000000000000000000000000090915290915073ffffffffffffffffffffffffffffffffffffffff87169063022c0d9f906132299086908690869060248101615e06565b600060405180830381600087803b15801561324357600080fd5b505af1158015613257573d6000803e3d6000fd5b50506001909b019a50612f6e9950505050505050505050565b8082038281111561202157600080fd5b60008060008473ffffffffffffffffffffffffffffffffffffffff1663095ea7b360e01b7f0000000000000000000000000000000000000000000000000000000000000000866040516024016132d7929190615ad6565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009094169390931790925290516133609190615a20565b6000604051808303816000865af19150503d806000811461339d576040519150601f19603f3d011682016040523d82523d6000602084013e6133a2565b606091505b5091509150818015610e2c575080511580610e2c575080806020019051810190610e2c919061528d565b4290565b60008215806133eb575050818102818382816133e857fe5b04145b61202157600080fd5b60008080613402848261407d565b925061340f84601461417d565b905061341c84601761407d565b91509193909250565b516042111590565b6060610b20826000602b61426d565b8051606090610b209083906017907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe90161426d565b6040805173ffffffffffffffffffffffffffffffffffffffff8481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001781529251825160009485949389169392918291908083835b6020831061354657805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101613509565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146135a8576040519150601f19603f3d011682016040523d82523d6000602084013e6135ad565b606091505b50915091508180156135db5750805115806135db57508080602001905160208110156135d857600080fd5b50515b6118a057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600260248201527f5354000000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600080835185511461365757600080fd5b6000855167ffffffffffffffff8111801561367157600080fd5b506040519080825280602002602001820160405280156136ab57816020015b613698614e34565b8152602001906001900390816136905790505b5090506000865167ffffffffffffffff811180156136c857600080fd5b5060405190808252806020026020018201604052801561370257816020015b6136ef614e34565b8152602001906001900390816136e75790505b50905060005b8751811015613832576000806137318a848151811061372357fe5b602002602001015189613859565b9150915061373e82614454565b85848151811061374a57fe5b60200260200101516000019060020b908160020b8152505061376b81614454565b84848151811061377757fe5b60200260200101516000019060020b908160020b8152505088838151811061379b57fe5b60200260200101518584815181106137af57fe5b6020026020010151602001906fffffffffffffffffffffffffffffffff1690816fffffffffffffffffffffffffffffffff16815250508883815181106137f157fe5b602002602001015184848151811061380557fe5b6020908102919091018101516fffffffffffffffffffffffffffffffff9092169101525050600101613708565b5061383c82614465565b60020b935061384a81614465565b60020b92505050935093915050565b6000806000806138688661454d565b90506000805b82811015613a865760008060006138848b6133f4565b9250925092506000613897848484613cd4565b905060008063ffffffff8d166138c0576138b083614578565b600291820b9350900b9050613962565b6138ca838e614810565b8160020b915050809250508273ffffffffffffffffffffffffffffffffffffffff16633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b15801561391b57600080fd5b505afa15801561392f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139539190615715565b50505060029290920b93505050505b600189038714156139a3578473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161099506139b2565b6139ac8e61343c565b9d508597505b6000871580613a5357508673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1610613a23578673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1610613a53565b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16105b90508015613a68579b82019b9a81019a613a73565b828d039c50818c039b505b50506001909501945061386e9350505050565b5082613ad7577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff850294507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff840293505b5050509250929050565b6040805173ffffffffffffffffffffffffffffffffffffffff85811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd00000000000000000000000000000000000000000000000000000000178152925182516000948594938a169392918291908083835b60208310613bbe57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101613b81565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114613c20576040519150601f19603f3d011682016040523d82523d6000602084013e613c25565b606091505b5091509150818015613c53575080511580613c535750808060200190516020811015613c5057600080fd5b50515b610bb657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600360248201527f5354460000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b6000610e2c85613ccf868686614c41565b614cbe565b6000613d0a7f0000000000000000000000000000000000000000000000000000000000000000613d05868686614c41565b614cee565b949350505050565b60007f80000000000000000000000000000000000000000000000000000000000000008210613d4057600080fd5b5090565b6000806000613d538585613f02565b509050600080613d64888888612ca2565b73ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b158015613da957600080fd5b505afa158015613dbd573d6000803e3d6000fd5b505050506040513d6060811015613dd357600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905073ffffffffffffffffffffffffffffffffffffffff87811690841614613e1a578082613e1d565b81815b90999098509650505050505050565b6000808411613e9c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f494e53554646494349454e545f4f55545055545f414d4f554e54000000000000604482015290519081900360640190fd5b600083118015613eac5750600082115b613eb557600080fd5b6000613ecd6103e8613ec786886133d0565b906133d0565b90506000613ee16103e5613ec78689613270565b9050613ef86001828481613ef157fe5b0490614e24565b9695505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613f3e57600080fd5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1610613f78578284613f7b565b83835b909250905073ffffffffffffffffffffffffffffffffffffffff8216613fa057600080fd5b9250929050565b600080841161401757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f494e53554646494349454e545f494e5055545f414d4f554e5400000000000000604482015290519081900360640190fd5b6000831180156140275750600082115b61403057600080fd5b600061403e856103e56133d0565b9050600061404c82856133d0565b9050600061406683614060886103e86133d0565b90614e24565b905080828161407157fe5b04979650505050505050565b6000818260140110156140f157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f746f416464726573735f6f766572666c6f770000000000000000000000000000604482015290519081900360640190fd5b816014018351101561416457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f746f416464726573735f6f75744f66426f756e64730000000000000000000000604482015290519081900360640190fd5b5001602001516c01000000000000000000000000900490565b6000818260030110156141f157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f746f55696e7432345f6f766572666c6f77000000000000000000000000000000604482015290519081900360640190fd5b816003018351101561426457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f746f55696e7432345f6f75744f66426f756e6473000000000000000000000000604482015290519081900360640190fd5b50016003015190565b60608182601f0110156142e157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f736c6963655f6f766572666c6f77000000000000000000000000000000000000604482015290519081900360640190fd5b82828401101561435257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f736c6963655f6f766572666c6f77000000000000000000000000000000000000604482015290519081900360640190fd5b818301845110156143c457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f736c6963655f6f75744f66426f756e6473000000000000000000000000000000604482015290519081900360640190fd5b6060821580156143e3576040519150600082526020820160405261444b565b6040519150601f8416801560200281840101858101878315602002848b0101015b8183101561441c578051835260209283019201614404565b5050858452601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016604052505b50949350505050565b80600281900b8114610b2357600080fd5b6000806000805b84518110156144fa5784818151811061448157fe5b6020026020010151602001516fffffffffffffffffffffffffffffffff168582815181106144ab57fe5b60200260200101516000015160020b02830192508481815181106144cb57fe5b6020026020010151602001516fffffffffffffffffffffffffffffffff1682019150808060010191505061446c565b5080828161450457fe5b05925060008212801561451f575080828161451b57fe5b0715155b15611d8e5750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01919050565b5160177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffec9091010490565b6000806000808473ffffffffffffffffffffffffffffffffffffffff16633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156145c457600080fd5b505afa1580156145d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145fc9190615715565b50939750919550935050600161ffff84161191506146489050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90615bd8565b6000808673ffffffffffffffffffffffffffffffffffffffff1663252c09d7856040518263ffffffff1660e01b81526004016146849190615dee565b60806040518083038186803b15801561469c57600080fd5b505afa1580156146b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906146d491906158e0565b5050915091506146e26133cc565b63ffffffff168263ffffffff16146146fc57849550614807565b60008361ffff1660018561ffff168761ffff1601038161471857fe5b06905060008060008a73ffffffffffffffffffffffffffffffffffffffff1663252c09d7856040518263ffffffff1660e01b81526004016147599190615dfd565b60806040518083038186803b15801561477157600080fd5b505afa158015614785573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906147a991906158e0565b93505092509250806147e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90615ba1565b82860363ffffffff811683870360060b816147fe57fe5b059a5050505050505b50505050915091565b60008063ffffffff831661488557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600260248201527f4250000000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b60408051600280825260608201835260009260208301908036833701905050905083816000815181106148b457fe5b602002602001019063ffffffff16908163ffffffff16815250506000816001815181106148dd57fe5b63ffffffff9092166020928302919091018201526040517f883bdbfd00000000000000000000000000000000000000000000000000000000815260048101828152835160248301528351600093849373ffffffffffffffffffffffffffffffffffffffff8b169363883bdbfd9388939192839260449091019185820191028083838b5b83811015614978578181015183820152602001614960565b505050509050019250505060006040518083038186803b15801561499b57600080fd5b505afa1580156149af573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820160409081528110156149f657600080fd5b8101908080516040519392919084640100000000821115614a1657600080fd5b908301906020820185811115614a2b57600080fd5b8251866020820283011164010000000082111715614a4857600080fd5b82525081516020918201928201910280838360005b83811015614a75578181015183820152602001614a5d565b5050505090500160405260200180516040519392919084640100000000821115614a9e57600080fd5b908301906020820185811115614ab357600080fd5b8251866020820283011164010000000082111715614ad057600080fd5b82525081516020918201928201910280838360005b83811015614afd578181015183820152602001614ae5565b5050505090500160405250505091509150600082600081518110614b1d57fe5b602002602001015183600181518110614b3257fe5b6020026020010151039050600082600081518110614b4c57fe5b602002602001015183600181518110614b6157fe5b60200260200101510390508763ffffffff168260060b81614b7e57fe5b05965060008260060b128015614ba857508763ffffffff168260060b81614ba157fe5b0760060b15155b15614bd3577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff909601955b63ffffffff881673ffffffffffffffffffffffffffffffffffffffff0277ffffffffffffffffffffffffffffffffffffffff00000000602083901b1677ffffffffffffffffffffffffffffffffffffffffffffffff821681614c3157fe5b0496505050505050509250929050565b614c49614e4b565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161115614c81579192915b506040805160608101825273ffffffffffffffffffffffffffffffffffffffff948516815292909316602083015262ffffff169181019190915290565b6000614cca8383614cee565b90503373ffffffffffffffffffffffffffffffffffffffff82161461202157600080fd5b6000816020015173ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1610614d3057600080fd5b508051602080830151604093840151845173ffffffffffffffffffffffffffffffffffffffff94851681850152939091168385015262ffffff166060808401919091528351808403820181526080840185528051908301207fff0000000000000000000000000000000000000000000000000000000000000060a085015294901b7fffffffffffffffffffffffffffffffffffffffff0000000000000000000000001660a183015260b58201939093527fe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b5460d5808301919091528251808303909101815260f5909101909152805191012090565b8082018281101561202157600080fd5b604080518082019091526000808252602082015290565b604080516060810182526000808252602082018190529181019190915290565b8035610b2381615f52565b60008083601f840112614e87578182fd5b50813567ffffffffffffffff811115614e9e578182fd5b6020830191508360208083028501011115613fa057600080fd5b600082601f830112614ec8578081fd5b81356020614edd614ed883615ec8565b615ea4565b8281528181019085830183850287018401881015614ef9578586fd5b855b85811015614f345781356fffffffffffffffffffffffffffffffff81168114614f22578788fd5b84529284019290840190600101614efb565b5090979650505050505050565b80518015158114610b2357600080fd5b600082601f830112614f61578081fd5b8135614f6f614ed882615ee6565b818152846020838601011115614f83578283fd5b816020850160208301379081016020019190915292915050565b80516dffffffffffffffffffffffffffff81168114610b2357600080fd5b805161ffff81168114610b2357600080fd5b803562ffffff81168114610b2357600080fd5b8035610b2381615f83565b600060208284031215614ffc578081fd5b813561500781615f52565b9392505050565b60008060408385031215615020578081fd5b823561502b81615f52565b946020939093013593505050565b60008060006060848603121561504d578081fd5b833561505881615f52565b925060208401359150604084013561506f81615f52565b809150509250925092565b600080600080600060a08688031215615091578283fd5b853561509c81615f52565b94506020860135935060408601356150b381615f52565b92506060860135915060808601356150ca81615f52565b809150509295509295909350565b600080600080608085870312156150ed578182fd5b84356150f881615f52565b93506020850135925060408501359150606085013561511681615f52565b939692955090935050565b60008060008060008060c08789031215615139578384fd5b863561514481615f52565b95506020870135945060408701359350606087013561516281615f95565b9598949750929560808101359460a0909101359350915050565b6000806020838503121561518e578182fd5b823567ffffffffffffffff8111156151a4578283fd5b6151b085828601614e76565b90969095509350505050565b600080600080608085870312156151d1578182fd5b843567ffffffffffffffff808211156151e8578384fd5b818701915087601f8301126151fb578384fd5b8135602061520b614ed883615ec8565b82815281810190858301885b858110156152405761522e8e8684358b0101614f51565b84529284019290840190600101615217565b50909950505088013592505080821115615258578384fd5b5061526587828801614eb8565b93505061527460408601614fcd565b915061528260608601614fe0565b905092959194509250565b60006020828403121561529e578081fd5b61500782614f41565b6000806000604084860312156152bb578081fd5b83359250602084013567ffffffffffffffff8111156152d8578182fd5b6152e486828701614e76565b9497909650939450505050565b600060208284031215615302578081fd5b813567ffffffffffffffff811115615318578182fd5b613d0a84828501614f51565b600080600060608486031215615338578081fd5b833567ffffffffffffffff81111561534e578182fd5b61535a86828701614f51565b93505061536960208501614fcd565b9150604084013561506f81615f83565b60006020828403121561538a578081fd5b813561500781615f74565b600080604083850312156153a7578182fd5b505080516020909101519092909150565b600080600080606085870312156153cd578182fd5b8435935060208501359250604085013567ffffffffffffffff808211156153f2578384fd5b818701915087601f830112615405578384fd5b813581811115615413578485fd5b886020828501011115615424578485fd5b95989497505060200194505050565b600060208284031215615444578081fd5b815167ffffffffffffffff81111561545a578182fd5b8201601f8101841361546a578182fd5b8051615478614ed882615ee6565b81815285602083850101111561548c578384fd5b610e2c826020830160208601615f26565b6000602082840312156154ae578081fd5b813567ffffffffffffffff808211156154c5578283fd5b90830190608082860312156154d8578283fd5b6040516080810181811083821117156154ed57fe5b6040528235828111156154fe578485fd5b61550a87828601614f51565b8252506020830135915061551d82615f52565b816020820152604083013560408201526060830135606082015280935050505092915050565b600060e08284031215615554578081fd5b60405160e0810181811067ffffffffffffffff8211171561557157fe5b60405261557d83614e6b565b815261558b60208401614e6b565b602082015261559c60408401614fcd565b60408201526155ad60608401614e6b565b60608201526080830135608082015260a083013560a08201526155d260c08401614e6b565b60c08201529392505050565b6000602082840312156155ef578081fd5b813567ffffffffffffffff811115615605578182fd5b820160808185031215615007578182fd5b600060e08284031215610836578081fd5b600060a08284031215610836578081fd5b60006101008284031215610836578081fd5b60006020828403121561565b578081fd5b813567ffffffffffffffff80821115615672578283fd5b9083019060408286031215615685578283fd5b60405160408101818110838211171561569a57fe5b6040528235828111156156ab578485fd5b6156b787828601614f51565b825250602083013592506156ca83615f52565b6020810192909252509392505050565b6000806000606084860312156156ee578081fd5b6156f784614f9d565b925061570560208501614f9d565b9150604084015161506f81615f83565b600080600080600080600060e0888a03121561572f578485fd5b875161573a81615f52565b602089015190975061574b81615f74565b955061575960408901614fbb565b945061576760608901614fbb565b935061577560808901614fbb565b925060a088015161578581615f95565b915061579360c08901614f41565b905092959891949750929550565b6000602082840312156157b2578081fd5b61500782614fcd565b6000602082840312156157cc578081fd5b5035919050565b6000602082840312156157e4578081fd5b5051919050565b600080604083850312156157fd578182fd5b82359150602083013561580f81615f52565b809150509250929050565b6000806000806080858703121561582f578182fd5b84359350602085013561584181615f52565b925060408501359150606085013561511681615f52565b60008060006060848603121561586c578081fd5b8335925060208401359150604084013561506f81615f52565b60008060008060006080868803121561589c578283fd5b8535945060208601359350604086013567ffffffffffffffff8111156158c0578384fd5b6158cc88828901614e76565b90945092505060608601356150ca81615f52565b600080600080608085870312156158f5578182fd5b845161590081615f83565b8094505060208501518060060b8114615917578283fd5b604086015190935061592881615f52565b915061528260608601614f41565b73ffffffffffffffffffffffffffffffffffffffff169052565b60008151808452615968816020860160208601615f26565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60020b9052565b62ffffff169052565b606093841b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000908116825260e89390931b7fffffff0000000000000000000000000000000000000000000000000000000000166014820152921b166017820152602b0190565b6000828483379101908152919050565b60008251615a32818460208701615f26565b9190910192915050565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff92831681529116602082015260400190565b600073ffffffffffffffffffffffffffffffffffffffff8088168352861515602084015285604084015280851660608401525060a06080830152615acb60a0830184615950565b979650505050505050565b73ffffffffffffffffffffffffffffffffffffffff929092168252602082015260400190565b6000602080830181845280855180835260408601915060408482028701019250838701855b82811015615b6d577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0888603018452615b5b858351615950565b94509285019290850190600101615b21565b5092979650505050505050565b6000602082526150076020830184615950565b6020810160058310615b9b57fe5b91905290565b60208082526003908201527f4f4e490000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526003908201527f4e454f0000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526012908201527f546f6f206d756368207265717565737465640000000000000000000000000000604082015260600190565b60208082526002908201527f5444000000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526013908201527f546f6f206c6974746c6520726563656976656400000000000000000000000000604082015260600190565b600060c082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015292915050565b600061016082019050615d0c828451615936565b6020830151615d1e6020840182615936565b506040830151615d3160408401826159a1565b506060830151615d44606084018261599a565b506080830151615d57608084018261599a565b5060a083015160a083015260c083015160c083015260e083015160e083015261010080840151818401525061012080840151615d9582850182615936565b505061014092830151919092015290565b600060208252825160406020840152615dc26060840182615950565b905073ffffffffffffffffffffffffffffffffffffffff60208501511660408401528091505092915050565b61ffff91909116815260200190565b90815260200190565b600085825284602083015273ffffffffffffffffffffffffffffffffffffffff8416604083015260806060830152613ef86080830184615950565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112615e75578283fd5b83018035915067ffffffffffffffff821115615e8f578283fd5b602001915036819003821315613fa057600080fd5b60405181810167ffffffffffffffff81118282101715615ec057fe5b604052919050565b600067ffffffffffffffff821115615edc57fe5b5060209081020190565b600067ffffffffffffffff821115615efa57fe5b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b60005b83811015615f41578181015183820152602001615f29565b83811115610c555750506000910152565b73ffffffffffffffffffffffffffffffffffffffff8116811461147957600080fd5b8060020b811461147957600080fd5b63ffffffff8116811461147957600080fd5b60ff8116811461147957600080fdfea164736f6c6343000706000a000000000000000000000000ee4bc42157cf65291ba2fe839ae127e3cc76f7410000000000000000000000003d91b700252e0e3ee7805d12e048a988ab69c8ad000000000000000000000000f807aca27b1550fe778fd4e7013bb57480b17fac000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad38
Deployed Bytecode
0x6080604052600436106102a45760003560e01c80639b2c0a371161016e578063dee00f35116100cb578063f100b2051161007f578063f2d5d56b11610064578063f2d5d56b1461066e578063f3995c6714610681578063fa461e33146106945761034f565b8063f100b2051461063b578063f25801a71461064e5761034f565b8063e0e189a0116100b0578063e0e189a0146105f5578063e90a182f14610608578063efdeed8e1461061b5761034f565b8063dee00f35146105b5578063df2ab5bb146105e25761034f565b8063b858183f11610122578063c45a015511610107578063c45a01551461057a578063cab372ce1461058f578063d4ef38de146105a25761034f565b8063b858183f14610554578063c2e3140a146105675761034f565b8063ab3fdd5011610153578063ab3fdd501461051b578063ac9650d81461052e578063b3a2af13146105415761034f565b80639b2c0a37146104f5578063a4a78f0c146105085761034f565b8063472b43f31161021c578063571ac8b0116101d0578063639d71a9116101b5578063639d71a9146104b857806368e0d4e1146104cb578063791b98bc146104e05761034f565b8063571ac8b0146104925780635ae401dc146104a55761034f565b80634961699711610201578063496169971461044a5780634aa4a4fc1461045d5780635023b4df1461047f5761034f565b8063472b43f31461042457806349404b7c146104375761034f565b80631c58db4f116102735780633068c554116102585780633068c554146103eb57806342712a67146103fe5780634659a494146104115761034f565b80631c58db4f146103b85780631f0464d1146103cb5761034f565b806304e45aaf1461035457806309b813461461037d57806311ed56c91461039057806312210e8a146103b05761034f565b3661034f573373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad38161461034d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f4e6f742057455448390000000000000000000000000000000000000000000000604482015290519081900360640190fd5b005b600080fd5b610367610362366004615543565b6106b4565b6040516103749190615dfd565b60405180910390f35b61036761038b3660046155de565b61083c565b6103a361039e366004615638565b61091c565b6040516103749190615b7a565b61034d610b28565b61034d6103c63660046157bb565b610b3a565b6103de6103d93660046152a7565b610bbe565b6040516103749190615afc565b61034d6103f93660046150d8565b610c48565b61036761040c366004615885565b610c5b565b61034d61041f366004615121565b610e35565b610367610432366004615885565b610ef5565b61034d6104453660046157eb565b6112a9565b61034d6104583660046157bb565b61146f565b34801561046957600080fd5b5061047261147c565b6040516103749190615a3c565b61036761048d366004615616565b6114a0565b61034d6104a0366004614feb565b611589565b6103de6104b33660046152a7565b6115bc565b61034d6104c6366004614feb565b611635565b3480156104d757600080fd5b50610472611649565b3480156104ec57600080fd5b5061047261166d565b61034d61050336600461581a565b611691565b61034d610516366004615121565b6118a7565b61034d610529366004614feb565b61197c565b6103de61053c36600461517c565b6119ba565b6103a361054f3660046152f1565b611b14565b61036761056236600461549d565b611bd2565b61034d610575366004615121565b611d95565b34801561058657600080fd5b50610472611e4a565b61034d61059d366004614feb565b611990565b61034d6105b0366004615858565b611e6e565b3480156105c157600080fd5b506105d56105d036600461500e565b611e7a565b6040516103749190615b8d565b61034d6105f0366004615039565b612027565b61034d61060336600461507a565b61213e565b61034d61061636600461500e565b6122a4565b34801561062757600080fd5b5061034d6106363660046151bc565b6122b3565b6103a3610649366004615627565b612305565b34801561065a57600080fd5b5061034d610669366004615324565b6123a5565b61034d61067c36600461500e565b6123f6565b61034d61068f366004615121565b612402565b3480156106a057600080fd5b5061034d6106af3660046153b8565b61249a565b600080600083608001511415610771575081516040517f70a0823100000000000000000000000000000000000000000000000000000000815260019173ffffffffffffffffffffffffffffffffffffffff16906370a082319061071b903090600401615a3c565b60206040518083038186803b15801561073357600080fd5b505afa158015610747573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061076b91906157d3565b60808401525b6107ed836080015184606001518560c001516040518060400160405280886000015189604001518a602001516040516020016107af939291906159aa565b6040516020818303038152906040528152602001866107ce57336107d0565b305b73ffffffffffffffffffffffffffffffffffffffff1690526125de565b91508260a00151821015610836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90615c7d565b60405180910390fd5b50919050565b60006108b0604083018035906108559060208601614feb565b604080518082019091526000908061086d8880615e41565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050908252503360209091015261278f565b505060005460608201358111156108f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90615c0f565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600055919050565b604080516101608101909152606090610b20907f8831645600000000000000000000000000000000000000000000000000000000908061095f6020870187614feb565b73ffffffffffffffffffffffffffffffffffffffff16815260200185602001602081019061098d9190614feb565b73ffffffffffffffffffffffffffffffffffffffff1681526020016109b860608701604088016157a1565b62ffffff1681526020016109d26080870160608801615379565b60020b81526020016109ea60a0870160808801615379565b60020b8152602090810190610a0a90610a0590880188614feb565b612976565b8152602001610a25866020016020810190610a059190614feb565b815260a0860135602082015260c08601356040820152606001610a4f610100870160e08801614feb565b73ffffffffffffffffffffffffffffffffffffffff1681526020017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff815250604051602401610a9e9190615cf8565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152611b14565b90505b919050565b4715610b3857610b383347612a1b565b565b7f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad3873ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b158015610ba257600080fd5b505af1158015610bb6573d6000803e3d6000fd5b505050505050565b60608380600143034014610c3357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f426c6f636b686173680000000000000000000000000000000000000000000000604482015290519081900360640190fd5b610c3d84846119ba565b91505b509392505050565b610c55848433858561213e565b50505050565b6000610cbb7f000000000000000000000000ee4bc42157cf65291ba2fe839ae127e3cc76f74187868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250612b6992505050565b600081518110610cc757fe5b6020026020010151905084811115610d0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90615c0f565b610da484846000818110610d1b57fe5b9050602002016020810190610d309190614feb565b33610d9e7f000000000000000000000000ee4bc42157cf65291ba2fe839ae127e3cc76f74188886000818110610d6257fe5b9050602002016020810190610d779190614feb565b89896001818110610d8457fe5b9050602002016020810190610d999190614feb565b612ca2565b84612d8d565b73ffffffffffffffffffffffffffffffffffffffff821660011415610dcb57339150610dee565b73ffffffffffffffffffffffffffffffffffffffff821660021415610dee573091505b610e2c848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250869250612f6b915050565b95945050505050565b604080517f8fcbaf0c00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101879052606481018690526001608482015260ff851660a482015260c4810184905260e48101839052905173ffffffffffffffffffffffffffffffffffffffff881691638fcbaf0c9161010480830192600092919082900301818387803b158015610ed557600080fd5b505af1158015610ee9573d6000803e3d6000fd5b50505050505050505050565b60008086610fab575060018484600081610f0b57fe5b9050602002016020810190610f209190614feb565b73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f589190615a3c565b60206040518083038186803b158015610f7057600080fd5b505afa158015610f84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa891906157d3565b96505b61103685856000818110610fbb57fe5b9050602002016020810190610fd09190614feb565b82610fdb5733610fdd565b305b6110307f000000000000000000000000ee4bc42157cf65291ba2fe839ae127e3cc76f7418989600081811061100e57fe5b90506020020160208101906110239190614feb565b8a8a6001818110610d8457fe5b8a612d8d565b73ffffffffffffffffffffffffffffffffffffffff83166001141561105d57339250611080565b73ffffffffffffffffffffffffffffffffffffffff831660021415611080573092505b600085857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81018181106110b057fe5b90506020020160208101906110c59190614feb565b73ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b81526004016110fd9190615a3c565b60206040518083038186803b15801561111557600080fd5b505afa158015611129573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114d91906157d3565b905061118d868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250889250612f6b915050565b6112628187877fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81018181106111bf57fe5b90506020020160208101906111d49190614feb565b73ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b815260040161120c9190615a3c565b60206040518083038186803b15801561122457600080fd5b505afa158015611238573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125c91906157d3565b90613270565b92508683101561129e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90615c7d565b505095945050505050565b60007f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad3873ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561133257600080fd5b505afa158015611346573d6000803e3d6000fd5b505050506040513d602081101561135c57600080fd5b50519050828110156113cf57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f496e73756666696369656e742057455448390000000000000000000000000000604482015290519081900360640190fd5b801561146a577f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad3873ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561144857600080fd5b505af115801561145c573d6000803e3d6000fd5b5050505061146a8282612a1b565b505050565b61147981336112a9565b50565b7f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad3881565b6000611549608083018035906114b99060608601614feb565b6114c960e0860160c08701614feb565b60405180604001604052808760200160208101906114e79190614feb565b6114f760608a0160408b016157a1565b61150460208b018b614feb565b604051602001611516939291906159aa565b60405160208183030381529060405281526020013373ffffffffffffffffffffffffffffffffffffffff1681525061278f565b90508160a001358111156108f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90615c0f565b6115b3817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff613280565b61147957600080fd5b606083806115c86133cc565b1115610c3357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f5472616e73616374696f6e20746f6f206f6c6400000000000000000000000000604482015290519081900360640190fd5b611640816000613280565b61158957600080fd5b7f000000000000000000000000ee4bc42157cf65291ba2fe839ae127e3cc76f74181565b7f000000000000000000000000f807aca27b1550fe778fd4e7013bb57480b17fac81565b6000821180156116a2575060648211155b6116ab57600080fd5b60007f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad3873ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561173457600080fd5b505afa158015611748573d6000803e3d6000fd5b505050506040513d602081101561175e57600080fd5b50519050848110156117d157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f496e73756666696369656e742057455448390000000000000000000000000000604482015290519081900360640190fd5b80156118a0577f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad3873ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561184a57600080fd5b505af115801561185e573d6000803e3d6000fd5b50505050600061271061187a85846133d090919063ffffffff16565b8161188157fe5b0490508015611894576118948382612a1b565b610bb685828403612a1b565b5050505050565b604080517fdd62ed3e00000000000000000000000000000000000000000000000000000000815233600482015230602482015290517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9173ffffffffffffffffffffffffffffffffffffffff89169163dd62ed3e91604480820192602092909190829003018186803b15801561193c57600080fd5b505afa158015611950573d6000803e3d6000fd5b505050506040513d602081101561196657600080fd5b50511015610bb657610bb6868686868686610e35565b611987816000613280565b61199057600080fd5b6115b3817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe613280565b60608167ffffffffffffffff811180156119d357600080fd5b50604051908082528060200260200182016040528015611a0757816020015b60608152602001906001900390816119f25790505b50905060005b82811015611b0d5760008030868685818110611a2557fe5b9050602002810190611a379190615e41565b604051611a45929190615a10565b600060405180830381855af49150503d8060008114611a80576040519150601f19603f3d011682016040523d82523d6000602084013e611a85565b606091505b509150915081611aeb57604481511015611a9e57600080fd5b60048101905080806020019051810190611ab89190615433565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d9190615b7a565b80848481518110611af857fe5b60209081029190910101525050600101611a0d565b5092915050565b606060007f000000000000000000000000f807aca27b1550fe778fd4e7013bb57480b17fac73ffffffffffffffffffffffffffffffffffffffff1683604051611b5d9190615a20565b6000604051808303816000865af19150503d8060008114611b9a576040519150601f19603f3d011682016040523d82523d6000602084013e611b9f565b606091505b50925090508061083657604482511015611bb857600080fd5b60048201915081806020019051810190611ab89190615433565b600080600083604001511415611ca357600190506000611bf584600001516133f4565b50506040517f70a0823100000000000000000000000000000000000000000000000000000000815290915073ffffffffffffffffffffffffffffffffffffffff8216906370a0823190611c4c903090600401615a3c565b60206040518083038186803b158015611c6457600080fd5b505afa158015611c78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c9c91906157d3565b6040850152505b600081611cb05733611cb2565b305b90505b6000611cc48560000151613425565b9050611d1d856040015182611cdd578660200151611cdf565b305b60006040518060400160405280611cf98b6000015161342d565b81526020018773ffffffffffffffffffffffffffffffffffffffff168152506125de565b60408601528015611d3d578451309250611d369061343c565b8552611d4a565b8460400151935050611d50565b50611cb5565b8360600151831015611d8e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90615c7d565b5050919050565b604080517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523360048201523060248201529051869173ffffffffffffffffffffffffffffffffffffffff89169163dd62ed3e91604480820192602092909190829003018186803b158015611e0a57600080fd5b505afa158015611e1e573d6000803e3d6000fd5b505050506040513d6020811015611e3457600080fd5b50511015610bb657610bb6868686868686612402565b7f0000000000000000000000003d91b700252e0e3ee7805d12e048a988ab69c8ad81565b61146a83338484611691565b6000818373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e307f000000000000000000000000f807aca27b1550fe778fd4e7013bb57480b17fac6040518363ffffffff1660e01b8152600401611ed8929190615a5d565b60206040518083038186803b158015611ef057600080fd5b505afa158015611f04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f2891906157d3565b10611f3557506000612021565b611f5f837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff613280565b15611f6c57506001612021565b611f96837ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe613280565b15611fa357506002612021565b611fae836000613280565b611fb757600080fd5b611fe1837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff613280565b15611fee57506003612021565b612018837ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe613280565b1561034f575060045b92915050565b60008373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561209057600080fd5b505afa1580156120a4573d6000803e3d6000fd5b505050506040513d60208110156120ba57600080fd5b505190508281101561212d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f496e73756666696369656e7420746f6b656e0000000000000000000000000000604482015290519081900360640190fd5b8015610c5557610c55848383613471565b60008211801561214f575060648211155b61215857600080fd5b60008573ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156121c157600080fd5b505afa1580156121d5573d6000803e3d6000fd5b505050506040513d60208110156121eb57600080fd5b505190508481101561225e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f496e73756666696369656e7420746f6b656e0000000000000000000000000000604482015290519081900360640190fd5b8015610bb657600061271061227383866133d0565b8161227a57fe5b049050801561228e5761228e878483613471565b61229b8786838503613471565b50505050505050565b6122af828233612027565b5050565b6000806122c1868685613646565b915091508362ffffff1681830312610bb6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90615c46565b6060610b2063219f5d1760e01b6040518060c001604052808560400135815260200161233d866000016020810190610a059190614feb565b8152602001612358866020016020810190610a059190614feb565b815260200185606001358152602001856080013581526020017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff815250604051602401610a9e9190615cb4565b6000806123b28584613859565b915091508362ffffff16818303126118a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90615c46565b6122af82333084613ae1565b604080517fd505accf000000000000000000000000000000000000000000000000000000008152336004820152306024820152604481018790526064810186905260ff8516608482015260a4810184905260c48101839052905173ffffffffffffffffffffffffffffffffffffffff88169163d505accf9160e480830192600092919082900301818387803b158015610ed557600080fd5b60008413806124a95750600083135b6124b257600080fd5b60006124c08284018461564a565b905060008060006124d484600001516133f4565b9250925092506125067f0000000000000000000000003d91b700252e0e3ee7805d12e048a988ab69c8ad848484613cbe565b5060008060008a13612547578473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161089612578565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16108a5b915091508115612597576125928587602001513384612d8d565b610ee9565b85516125a290613425565b156125c75785516125b29061343c565b86526125c1813360008961278f565b50610ee9565b80600081905550610ee98487602001513384612d8d565b600073ffffffffffffffffffffffffffffffffffffffff8416600114156126075733935061262a565b73ffffffffffffffffffffffffffffffffffffffff84166002141561262a573093505b600080600061263c85600001516133f4565b9194509250905073ffffffffffffffffffffffffffffffffffffffff8083169084161060008061266d868686613cd4565b73ffffffffffffffffffffffffffffffffffffffff1663128acb088b856126938f613d12565b73ffffffffffffffffffffffffffffffffffffffff8e16156126b5578d6126db565b876126d45773fffd8963efd1fc6a506488495d951d5263988d256126db565b6401000276a45b8d6040516020016126ec9190615da6565b6040516020818303038152906040526040518663ffffffff1660e01b815260040161271b959493929190615a84565b6040805180830381600087803b15801561273457600080fd5b505af1158015612748573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061276c9190615395565b915091508261277b578161277d565b805b6000039b9a5050505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff8416600114156127b8573393506127db565b73ffffffffffffffffffffffffffffffffffffffff8416600214156127db573093505b60008060006127ed85600001516133f4565b9194509250905073ffffffffffffffffffffffffffffffffffffffff8084169083161060008061281e858786613cd4565b73ffffffffffffffffffffffffffffffffffffffff1663128acb088b856128448f613d12565b60000373ffffffffffffffffffffffffffffffffffffffff8e1615612869578d61288f565b876128885773fffd8963efd1fc6a506488495d951d5263988d2561288f565b6401000276a45b8d6040516020016128a09190615da6565b6040516020818303038152906040526040518663ffffffff1660e01b81526004016128cf959493929190615a84565b6040805180830381600087803b1580156128e857600080fd5b505af11580156128fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129209190615395565b9150915060008361293557818360000361293b565b82826000035b909850905073ffffffffffffffffffffffffffffffffffffffff8a16612967578b811461296757600080fd5b50505050505050949350505050565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff8316906370a08231906129cb903090600401615a3c565b60206040518083038186803b1580156129e357600080fd5b505afa1580156129f7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2091906157d3565b6040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff84169083906040518082805190602001908083835b60208310612a9257805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101612a55565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612af4576040519150601f19603f3d011682016040523d82523d6000602084013e612af9565b606091505b505090508061146a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600360248201527f5354450000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b6060600282511015612b7a57600080fd5b815167ffffffffffffffff81118015612b9257600080fd5b50604051908082528060200260200182016040528015612bbc578160200160208202803683370190505b5090508281600183510381518110612bd057fe5b602090810291909101015281517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff015b8015610c4057600080612c3d87866001860381518110612c1c57fe5b6020026020010151878681518110612c3057fe5b6020026020010151613d44565b91509150612c5f848481518110612c5057fe5b60200260200101518383613e2c565b846001850381518110612c6e57fe5b602090810291909101015250507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01612c00565b6000806000612cb18585613f02565b604080517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606094851b811660208084019190915293851b81166034830152825160288184030181526048830184528051908501207fff0000000000000000000000000000000000000000000000000000000000000060688401529a90941b9093166069840152607d8301989098527f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f609d808401919091528851808403909101815260bd909201909752805196019590952095945050505050565b7f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad3873ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015612de85750804710155b15612f31577f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad3873ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b158015612e5557600080fd5b505af1158015612e69573d6000803e3d6000fd5b50505050507f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad3873ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612eff57600080fd5b505af1158015612f13573d6000803e3d6000fd5b505050506040513d6020811015612f2957600080fd5b50610c559050565b73ffffffffffffffffffffffffffffffffffffffff8316301415612f5f57612f5a848383613471565b610c55565b610c5584848484613ae1565b60005b600183510381101561146a57600080848381518110612f8957fe5b6020026020010151858460010181518110612fa057fe5b6020026020010151915091506000612fb88383613f02565b5090506000612fe87f000000000000000000000000ee4bc42157cf65291ba2fe839ae127e3cc76f7418585612ca2565b90506000806000808473ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561303657600080fd5b505afa15801561304a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061306e91906156da565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff1691506000808773ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff16146130d05782846130d3565b83835b91509150613114828b73ffffffffffffffffffffffffffffffffffffffff166370a082318a6040518263ffffffff1660e01b815260040161120c9190615a3c565b9550613121868383613fa7565b9450505050506000808573ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161461316557826000613169565b6000835b91509150600060028c51038a10613180578a6131c1565b6131c17f000000000000000000000000ee4bc42157cf65291ba2fe839ae127e3cc76f741898e8d600201815181106131b457fe5b6020026020010151612ca2565b604080516000815260208101918290527f022c0d9f0000000000000000000000000000000000000000000000000000000090915290915073ffffffffffffffffffffffffffffffffffffffff87169063022c0d9f906132299086908690869060248101615e06565b600060405180830381600087803b15801561324357600080fd5b505af1158015613257573d6000803e3d6000fd5b50506001909b019a50612f6e9950505050505050505050565b8082038281111561202157600080fd5b60008060008473ffffffffffffffffffffffffffffffffffffffff1663095ea7b360e01b7f000000000000000000000000f807aca27b1550fe778fd4e7013bb57480b17fac866040516024016132d7929190615ad6565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009094169390931790925290516133609190615a20565b6000604051808303816000865af19150503d806000811461339d576040519150601f19603f3d011682016040523d82523d6000602084013e6133a2565b606091505b5091509150818015610e2c575080511580610e2c575080806020019051810190610e2c919061528d565b4290565b60008215806133eb575050818102818382816133e857fe5b04145b61202157600080fd5b60008080613402848261407d565b925061340f84601461417d565b905061341c84601761407d565b91509193909250565b516042111590565b6060610b20826000602b61426d565b8051606090610b209083906017907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe90161426d565b6040805173ffffffffffffffffffffffffffffffffffffffff8481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001781529251825160009485949389169392918291908083835b6020831061354657805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101613509565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146135a8576040519150601f19603f3d011682016040523d82523d6000602084013e6135ad565b606091505b50915091508180156135db5750805115806135db57508080602001905160208110156135d857600080fd5b50515b6118a057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600260248201527f5354000000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600080835185511461365757600080fd5b6000855167ffffffffffffffff8111801561367157600080fd5b506040519080825280602002602001820160405280156136ab57816020015b613698614e34565b8152602001906001900390816136905790505b5090506000865167ffffffffffffffff811180156136c857600080fd5b5060405190808252806020026020018201604052801561370257816020015b6136ef614e34565b8152602001906001900390816136e75790505b50905060005b8751811015613832576000806137318a848151811061372357fe5b602002602001015189613859565b9150915061373e82614454565b85848151811061374a57fe5b60200260200101516000019060020b908160020b8152505061376b81614454565b84848151811061377757fe5b60200260200101516000019060020b908160020b8152505088838151811061379b57fe5b60200260200101518584815181106137af57fe5b6020026020010151602001906fffffffffffffffffffffffffffffffff1690816fffffffffffffffffffffffffffffffff16815250508883815181106137f157fe5b602002602001015184848151811061380557fe5b6020908102919091018101516fffffffffffffffffffffffffffffffff9092169101525050600101613708565b5061383c82614465565b60020b935061384a81614465565b60020b92505050935093915050565b6000806000806138688661454d565b90506000805b82811015613a865760008060006138848b6133f4565b9250925092506000613897848484613cd4565b905060008063ffffffff8d166138c0576138b083614578565b600291820b9350900b9050613962565b6138ca838e614810565b8160020b915050809250508273ffffffffffffffffffffffffffffffffffffffff16633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b15801561391b57600080fd5b505afa15801561392f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139539190615715565b50505060029290920b93505050505b600189038714156139a3578473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161099506139b2565b6139ac8e61343c565b9d508597505b6000871580613a5357508673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1610613a23578673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1610613a53565b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16105b90508015613a68579b82019b9a81019a613a73565b828d039c50818c039b505b50506001909501945061386e9350505050565b5082613ad7577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff850294507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff840293505b5050509250929050565b6040805173ffffffffffffffffffffffffffffffffffffffff85811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd00000000000000000000000000000000000000000000000000000000178152925182516000948594938a169392918291908083835b60208310613bbe57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101613b81565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114613c20576040519150601f19603f3d011682016040523d82523d6000602084013e613c25565b606091505b5091509150818015613c53575080511580613c535750808060200190516020811015613c5057600080fd5b50515b610bb657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600360248201527f5354460000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b6000610e2c85613ccf868686614c41565b614cbe565b6000613d0a7f0000000000000000000000003d91b700252e0e3ee7805d12e048a988ab69c8ad613d05868686614c41565b614cee565b949350505050565b60007f80000000000000000000000000000000000000000000000000000000000000008210613d4057600080fd5b5090565b6000806000613d538585613f02565b509050600080613d64888888612ca2565b73ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b158015613da957600080fd5b505afa158015613dbd573d6000803e3d6000fd5b505050506040513d6060811015613dd357600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905073ffffffffffffffffffffffffffffffffffffffff87811690841614613e1a578082613e1d565b81815b90999098509650505050505050565b6000808411613e9c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f494e53554646494349454e545f4f55545055545f414d4f554e54000000000000604482015290519081900360640190fd5b600083118015613eac5750600082115b613eb557600080fd5b6000613ecd6103e8613ec786886133d0565b906133d0565b90506000613ee16103e5613ec78689613270565b9050613ef86001828481613ef157fe5b0490614e24565b9695505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613f3e57600080fd5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1610613f78578284613f7b565b83835b909250905073ffffffffffffffffffffffffffffffffffffffff8216613fa057600080fd5b9250929050565b600080841161401757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f494e53554646494349454e545f494e5055545f414d4f554e5400000000000000604482015290519081900360640190fd5b6000831180156140275750600082115b61403057600080fd5b600061403e856103e56133d0565b9050600061404c82856133d0565b9050600061406683614060886103e86133d0565b90614e24565b905080828161407157fe5b04979650505050505050565b6000818260140110156140f157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f746f416464726573735f6f766572666c6f770000000000000000000000000000604482015290519081900360640190fd5b816014018351101561416457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f746f416464726573735f6f75744f66426f756e64730000000000000000000000604482015290519081900360640190fd5b5001602001516c01000000000000000000000000900490565b6000818260030110156141f157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f746f55696e7432345f6f766572666c6f77000000000000000000000000000000604482015290519081900360640190fd5b816003018351101561426457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f746f55696e7432345f6f75744f66426f756e6473000000000000000000000000604482015290519081900360640190fd5b50016003015190565b60608182601f0110156142e157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f736c6963655f6f766572666c6f77000000000000000000000000000000000000604482015290519081900360640190fd5b82828401101561435257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f736c6963655f6f766572666c6f77000000000000000000000000000000000000604482015290519081900360640190fd5b818301845110156143c457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f736c6963655f6f75744f66426f756e6473000000000000000000000000000000604482015290519081900360640190fd5b6060821580156143e3576040519150600082526020820160405261444b565b6040519150601f8416801560200281840101858101878315602002848b0101015b8183101561441c578051835260209283019201614404565b5050858452601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016604052505b50949350505050565b80600281900b8114610b2357600080fd5b6000806000805b84518110156144fa5784818151811061448157fe5b6020026020010151602001516fffffffffffffffffffffffffffffffff168582815181106144ab57fe5b60200260200101516000015160020b02830192508481815181106144cb57fe5b6020026020010151602001516fffffffffffffffffffffffffffffffff1682019150808060010191505061446c565b5080828161450457fe5b05925060008212801561451f575080828161451b57fe5b0715155b15611d8e5750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01919050565b5160177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffec9091010490565b6000806000808473ffffffffffffffffffffffffffffffffffffffff16633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156145c457600080fd5b505afa1580156145d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145fc9190615715565b50939750919550935050600161ffff84161191506146489050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90615bd8565b6000808673ffffffffffffffffffffffffffffffffffffffff1663252c09d7856040518263ffffffff1660e01b81526004016146849190615dee565b60806040518083038186803b15801561469c57600080fd5b505afa1580156146b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906146d491906158e0565b5050915091506146e26133cc565b63ffffffff168263ffffffff16146146fc57849550614807565b60008361ffff1660018561ffff168761ffff1601038161471857fe5b06905060008060008a73ffffffffffffffffffffffffffffffffffffffff1663252c09d7856040518263ffffffff1660e01b81526004016147599190615dfd565b60806040518083038186803b15801561477157600080fd5b505afa158015614785573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906147a991906158e0565b93505092509250806147e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90615ba1565b82860363ffffffff811683870360060b816147fe57fe5b059a5050505050505b50505050915091565b60008063ffffffff831661488557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600260248201527f4250000000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b60408051600280825260608201835260009260208301908036833701905050905083816000815181106148b457fe5b602002602001019063ffffffff16908163ffffffff16815250506000816001815181106148dd57fe5b63ffffffff9092166020928302919091018201526040517f883bdbfd00000000000000000000000000000000000000000000000000000000815260048101828152835160248301528351600093849373ffffffffffffffffffffffffffffffffffffffff8b169363883bdbfd9388939192839260449091019185820191028083838b5b83811015614978578181015183820152602001614960565b505050509050019250505060006040518083038186803b15801561499b57600080fd5b505afa1580156149af573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820160409081528110156149f657600080fd5b8101908080516040519392919084640100000000821115614a1657600080fd5b908301906020820185811115614a2b57600080fd5b8251866020820283011164010000000082111715614a4857600080fd5b82525081516020918201928201910280838360005b83811015614a75578181015183820152602001614a5d565b5050505090500160405260200180516040519392919084640100000000821115614a9e57600080fd5b908301906020820185811115614ab357600080fd5b8251866020820283011164010000000082111715614ad057600080fd5b82525081516020918201928201910280838360005b83811015614afd578181015183820152602001614ae5565b5050505090500160405250505091509150600082600081518110614b1d57fe5b602002602001015183600181518110614b3257fe5b6020026020010151039050600082600081518110614b4c57fe5b602002602001015183600181518110614b6157fe5b60200260200101510390508763ffffffff168260060b81614b7e57fe5b05965060008260060b128015614ba857508763ffffffff168260060b81614ba157fe5b0760060b15155b15614bd3577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff909601955b63ffffffff881673ffffffffffffffffffffffffffffffffffffffff0277ffffffffffffffffffffffffffffffffffffffff00000000602083901b1677ffffffffffffffffffffffffffffffffffffffffffffffff821681614c3157fe5b0496505050505050509250929050565b614c49614e4b565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161115614c81579192915b506040805160608101825273ffffffffffffffffffffffffffffffffffffffff948516815292909316602083015262ffffff169181019190915290565b6000614cca8383614cee565b90503373ffffffffffffffffffffffffffffffffffffffff82161461202157600080fd5b6000816020015173ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1610614d3057600080fd5b508051602080830151604093840151845173ffffffffffffffffffffffffffffffffffffffff94851681850152939091168385015262ffffff166060808401919091528351808403820181526080840185528051908301207fff0000000000000000000000000000000000000000000000000000000000000060a085015294901b7fffffffffffffffffffffffffffffffffffffffff0000000000000000000000001660a183015260b58201939093527fe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b5460d5808301919091528251808303909101815260f5909101909152805191012090565b8082018281101561202157600080fd5b604080518082019091526000808252602082015290565b604080516060810182526000808252602082018190529181019190915290565b8035610b2381615f52565b60008083601f840112614e87578182fd5b50813567ffffffffffffffff811115614e9e578182fd5b6020830191508360208083028501011115613fa057600080fd5b600082601f830112614ec8578081fd5b81356020614edd614ed883615ec8565b615ea4565b8281528181019085830183850287018401881015614ef9578586fd5b855b85811015614f345781356fffffffffffffffffffffffffffffffff81168114614f22578788fd5b84529284019290840190600101614efb565b5090979650505050505050565b80518015158114610b2357600080fd5b600082601f830112614f61578081fd5b8135614f6f614ed882615ee6565b818152846020838601011115614f83578283fd5b816020850160208301379081016020019190915292915050565b80516dffffffffffffffffffffffffffff81168114610b2357600080fd5b805161ffff81168114610b2357600080fd5b803562ffffff81168114610b2357600080fd5b8035610b2381615f83565b600060208284031215614ffc578081fd5b813561500781615f52565b9392505050565b60008060408385031215615020578081fd5b823561502b81615f52565b946020939093013593505050565b60008060006060848603121561504d578081fd5b833561505881615f52565b925060208401359150604084013561506f81615f52565b809150509250925092565b600080600080600060a08688031215615091578283fd5b853561509c81615f52565b94506020860135935060408601356150b381615f52565b92506060860135915060808601356150ca81615f52565b809150509295509295909350565b600080600080608085870312156150ed578182fd5b84356150f881615f52565b93506020850135925060408501359150606085013561511681615f52565b939692955090935050565b60008060008060008060c08789031215615139578384fd5b863561514481615f52565b95506020870135945060408701359350606087013561516281615f95565b9598949750929560808101359460a0909101359350915050565b6000806020838503121561518e578182fd5b823567ffffffffffffffff8111156151a4578283fd5b6151b085828601614e76565b90969095509350505050565b600080600080608085870312156151d1578182fd5b843567ffffffffffffffff808211156151e8578384fd5b818701915087601f8301126151fb578384fd5b8135602061520b614ed883615ec8565b82815281810190858301885b858110156152405761522e8e8684358b0101614f51565b84529284019290840190600101615217565b50909950505088013592505080821115615258578384fd5b5061526587828801614eb8565b93505061527460408601614fcd565b915061528260608601614fe0565b905092959194509250565b60006020828403121561529e578081fd5b61500782614f41565b6000806000604084860312156152bb578081fd5b83359250602084013567ffffffffffffffff8111156152d8578182fd5b6152e486828701614e76565b9497909650939450505050565b600060208284031215615302578081fd5b813567ffffffffffffffff811115615318578182fd5b613d0a84828501614f51565b600080600060608486031215615338578081fd5b833567ffffffffffffffff81111561534e578182fd5b61535a86828701614f51565b93505061536960208501614fcd565b9150604084013561506f81615f83565b60006020828403121561538a578081fd5b813561500781615f74565b600080604083850312156153a7578182fd5b505080516020909101519092909150565b600080600080606085870312156153cd578182fd5b8435935060208501359250604085013567ffffffffffffffff808211156153f2578384fd5b818701915087601f830112615405578384fd5b813581811115615413578485fd5b886020828501011115615424578485fd5b95989497505060200194505050565b600060208284031215615444578081fd5b815167ffffffffffffffff81111561545a578182fd5b8201601f8101841361546a578182fd5b8051615478614ed882615ee6565b81815285602083850101111561548c578384fd5b610e2c826020830160208601615f26565b6000602082840312156154ae578081fd5b813567ffffffffffffffff808211156154c5578283fd5b90830190608082860312156154d8578283fd5b6040516080810181811083821117156154ed57fe5b6040528235828111156154fe578485fd5b61550a87828601614f51565b8252506020830135915061551d82615f52565b816020820152604083013560408201526060830135606082015280935050505092915050565b600060e08284031215615554578081fd5b60405160e0810181811067ffffffffffffffff8211171561557157fe5b60405261557d83614e6b565b815261558b60208401614e6b565b602082015261559c60408401614fcd565b60408201526155ad60608401614e6b565b60608201526080830135608082015260a083013560a08201526155d260c08401614e6b565b60c08201529392505050565b6000602082840312156155ef578081fd5b813567ffffffffffffffff811115615605578182fd5b820160808185031215615007578182fd5b600060e08284031215610836578081fd5b600060a08284031215610836578081fd5b60006101008284031215610836578081fd5b60006020828403121561565b578081fd5b813567ffffffffffffffff80821115615672578283fd5b9083019060408286031215615685578283fd5b60405160408101818110838211171561569a57fe5b6040528235828111156156ab578485fd5b6156b787828601614f51565b825250602083013592506156ca83615f52565b6020810192909252509392505050565b6000806000606084860312156156ee578081fd5b6156f784614f9d565b925061570560208501614f9d565b9150604084015161506f81615f83565b600080600080600080600060e0888a03121561572f578485fd5b875161573a81615f52565b602089015190975061574b81615f74565b955061575960408901614fbb565b945061576760608901614fbb565b935061577560808901614fbb565b925060a088015161578581615f95565b915061579360c08901614f41565b905092959891949750929550565b6000602082840312156157b2578081fd5b61500782614fcd565b6000602082840312156157cc578081fd5b5035919050565b6000602082840312156157e4578081fd5b5051919050565b600080604083850312156157fd578182fd5b82359150602083013561580f81615f52565b809150509250929050565b6000806000806080858703121561582f578182fd5b84359350602085013561584181615f52565b925060408501359150606085013561511681615f52565b60008060006060848603121561586c578081fd5b8335925060208401359150604084013561506f81615f52565b60008060008060006080868803121561589c578283fd5b8535945060208601359350604086013567ffffffffffffffff8111156158c0578384fd5b6158cc88828901614e76565b90945092505060608601356150ca81615f52565b600080600080608085870312156158f5578182fd5b845161590081615f83565b8094505060208501518060060b8114615917578283fd5b604086015190935061592881615f52565b915061528260608601614f41565b73ffffffffffffffffffffffffffffffffffffffff169052565b60008151808452615968816020860160208601615f26565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60020b9052565b62ffffff169052565b606093841b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000908116825260e89390931b7fffffff0000000000000000000000000000000000000000000000000000000000166014820152921b166017820152602b0190565b6000828483379101908152919050565b60008251615a32818460208701615f26565b9190910192915050565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff92831681529116602082015260400190565b600073ffffffffffffffffffffffffffffffffffffffff8088168352861515602084015285604084015280851660608401525060a06080830152615acb60a0830184615950565b979650505050505050565b73ffffffffffffffffffffffffffffffffffffffff929092168252602082015260400190565b6000602080830181845280855180835260408601915060408482028701019250838701855b82811015615b6d577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0888603018452615b5b858351615950565b94509285019290850190600101615b21565b5092979650505050505050565b6000602082526150076020830184615950565b6020810160058310615b9b57fe5b91905290565b60208082526003908201527f4f4e490000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526003908201527f4e454f0000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526012908201527f546f6f206d756368207265717565737465640000000000000000000000000000604082015260600190565b60208082526002908201527f5444000000000000000000000000000000000000000000000000000000000000604082015260600190565b60208082526013908201527f546f6f206c6974746c6520726563656976656400000000000000000000000000604082015260600190565b600060c082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015292915050565b600061016082019050615d0c828451615936565b6020830151615d1e6020840182615936565b506040830151615d3160408401826159a1565b506060830151615d44606084018261599a565b506080830151615d57608084018261599a565b5060a083015160a083015260c083015160c083015260e083015160e083015261010080840151818401525061012080840151615d9582850182615936565b505061014092830151919092015290565b600060208252825160406020840152615dc26060840182615950565b905073ffffffffffffffffffffffffffffffffffffffff60208501511660408401528091505092915050565b61ffff91909116815260200190565b90815260200190565b600085825284602083015273ffffffffffffffffffffffffffffffffffffffff8416604083015260806060830152613ef86080830184615950565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112615e75578283fd5b83018035915067ffffffffffffffff821115615e8f578283fd5b602001915036819003821315613fa057600080fd5b60405181810167ffffffffffffffff81118282101715615ec057fe5b604052919050565b600067ffffffffffffffff821115615edc57fe5b5060209081020190565b600067ffffffffffffffff821115615efa57fe5b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b60005b83811015615f41578181015183820152602001615f29565b83811115610c555750506000910152565b73ffffffffffffffffffffffffffffffffffffffff8116811461147957600080fd5b8060020b811461147957600080fd5b63ffffffff8116811461147957600080fd5b60ff8116811461147957600080fdfea164736f6c6343000706000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ee4bc42157cf65291ba2fe839ae127e3cc76f7410000000000000000000000003d91b700252e0e3ee7805d12e048a988ab69c8ad000000000000000000000000f807aca27b1550fe778fd4e7013bb57480b17fac000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad38
-----Decoded View---------------
Arg [0] : _factoryV2 (address): 0xEE4bC42157cf65291Ba2FE839AE127e3Cc76f741
Arg [1] : factoryV3 (address): 0x3D91B700252e0E3eE7805d12e048a988Ab69C8ad
Arg [2] : _positionManager (address): 0xf807Aca27B1550Fe778fD4E7013BB57480b17fAc
Arg [3] : _WETH9 (address): 0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000ee4bc42157cf65291ba2fe839ae127e3cc76f741
Arg [1] : 0000000000000000000000003d91b700252e0e3ee7805d12e048a988ab69c8ad
Arg [2] : 000000000000000000000000f807aca27b1550fe778fd4e7013bb57480b17fac
Arg [3] : 000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad38
Deployed Bytecode Sourcemap
444:343:52:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;439:10:32;:19;453:5;439:19;;431:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444:343:52;;;;;4287:907:54;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9009:462;;;;;;:::i;:::-;;:::i;3194:1005:55:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1406:160:32:-;;;:::i;592:112:59:-;;;;;;:::i;:::-;;:::i;755:245:57:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;757:259:60:-;;;;;;:::i;:::-;;:::i;3256:646:53:-;;;;;;:::i;:::-;;:::i;1325:289:35:-;;;;;;:::i;:::-;;:::i;2093:1123:53:-;;;;;;:::i;:::-;;:::i;524:397:32:-;;;;;;:::i;:::-;;:::i;414:125:59:-;;;;;;:::i;:::-;;:::i;420:39:31:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;8276:693:54:-;;;;;;:::i;:::-;;:::i;1766:123:55:-;;;;;;:::i;:::-;;:::i;492:218:57:-;;;;;;:::i;:::-;;:::i;2108:170:55:-;;;;;;:::i;:::-;;:::i;288:43:56:-;;;;;;;;;;;;;:::i;373:49::-;;;;;;;;;;;;;:::i;553:698:33:-;;;;;;:::i;:::-;;:::i;1652:348:35:-;;;;;;:::i;:::-;;:::i;2320:182:55:-;;;;;;:::i;:::-;;:::i;308:653:30:-;;;;;;:::i;:::-;;:::i;2544:475:55:-;;;;;;:::i;:::-;;:::i;5234:1540:54:-;;;;;;:::i;:::-;;:::i;973:314:35:-;;;;;;:::i;:::-;;:::i;328:41:31:-;;;;;;;;;;;;;:::i;1931:135:55:-;;;;;;:::i;:::-;;:::i;466:231:60:-;;;;;;:::i;:::-;;:::i;905:819:55:-;;;;;;;;;;-1:-1:-1;905:819:55;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;966:395:32:-;;;;;;:::i;:::-;;:::i;1303:678:33:-;;;;;;:::i;:::-;;:::i;757:145:59:-;;;;;;:::i;:::-;;:::i;7806:442:58:-;;;;;;;;;;-1:-1:-1;7806:442:58;;;;;:::i;:::-;;:::i;4241:848:55:-;;;;;;:::i;:::-;;:::i;7409:355:58:-;;;;;;;;;;-1:-1:-1;7409:355:58;;;;;:::i;:::-;;:::i;955:159:59:-;;;;;;:::i;:::-;;:::i;662:273:35:-;;;;;;:::i;:::-;;:::i;1865:1321:54:-;;;;;;;;;;-1:-1:-1;1865:1321:54;;;;;:::i;:::-;;:::i;4287:907::-;4418:17;4558:19;310:1:79;4591:6:54;:15;;;:45;4587:176;;;-1:-1:-1;4712:14:54;;4705:47;;;;;4669:4;;4705:32;;;;;:47;;4746:4;;4705:47;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4687:15;;;:65;4587:176;4785:324;4817:6;:15;;;4846:6;:16;;;4876:6;:24;;;4914:185;;;;;;;;4972:6;:14;;;4988:6;:10;;;5000:6;:15;;;4955:61;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4914:185;;;;5041:14;:43;;5074:10;5041:43;;;5066:4;5041:43;4914:185;;;;4785:18;:324::i;:::-;4773:336;;5140:6;:23;;;5127:9;:36;;5119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4287:907;;;;:::o;9009:462::-;9100:16;9128:174;9161:16;;;;;;9191;;;;;;:::i;:::-;9236:56;;;;;;;;;9221:1;;9236:56;9260:11;:6;;:11;:::i;:::-;9236:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9236:56:54;;;-1:-1:-1;9280:10:54;9236:56;;;;;9128:19;:174::i;:::-;-1:-1:-1;;9324:14:54;;9368:22;;;;9356:34;;;9348:65;;;;;;;;;;;;:::i;:::-;1187:17;9423:14;:41;9009:462;;-1:-1:-1;9009:462:54:o;3194:1005:55:-;3465:695;;;;;;;;;3271:19;;3321:871;;3402:41;;3465:695;3538:13;;;;:6;:13;:::i;:::-;3465:695;;;;;;3585:6;:13;;;;;;;;;;:::i;:::-;3465:695;;;;;;3629:10;;;;;;;;:::i;:::-;3465:695;;;;;;3676:16;;;;;;;;:::i;:::-;3465:695;;;;;;3729:16;;;;;;;;:::i;:::-;3465:695;;;;;;;;;3787:24;;3797:13;;;;:6;:13;:::i;:::-;3787:9;:24::i;:::-;3465:695;;;;3853:24;3863:6;:13;;;;;;;;;;:::i;3853:24::-;3465:695;;3915:17;;;;3465:695;;;;3970:17;;;;3465:695;;;;;;4024:16;;;;;;;;:::i;:::-;3465:695;;;;;;4076:17;3465:695;;;3358:820;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3321:19;:871::i;:::-;3302:890;;3194:1005;;;;:::o;1406:160:32:-;1467:21;:25;1463:96;;1494:65;1525:10;1537:21;1494:30;:65::i;:::-;1406:160::o;592:112:59:-;667:5;660:21;;;689:5;660:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;592:112;:::o;755:245:57:-;941:14;905:17;325::61;319:1;304:12;:16;294:27;:48;286:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;978:15:57::1;988:4;;978:9;:15::i;:::-;971:22;;366:1:61;755:245:57::0;;;;;;:::o;757:259:60:-;935:74;953:5;960:13;975:10;987:7;996:12;935:17;:74::i;:::-;757:259;;;;:::o;3256:646:53:-;3440:16;3479:57;3509:9;3520;3531:4;;3479:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3479:29:53;;-1:-1:-1;;;3479:57:53:i;:::-;3537:1;3479:60;;;;;;;;;;;;;;3468:71;;3569:11;3557:8;:23;;3549:54;;;;;;;;;;;;:::i;:::-;3614:89;3618:4;;3623:1;3618:7;;;;;;;;;;;;;;;;;;;;:::i;:::-;3627:10;3639:53;3664:9;3675:4;;3680:1;3675:7;;;;;;;;;;;;;;;;;;;;:::i;:::-;3684:4;;3689:1;3684:7;;;;;;;;;;;;;;;;;;;;:::i;:::-;3639:24;:53::i;:::-;3694:8;3614:3;:89::i;:::-;3759:26;;;455:1:79;3759:26:53;3755:114;;;3792:10;3787:15;;3755:114;;;3821:28;;;606:1:79;3821:28:53;3817:52;;;3864:4;3851:18;;3817:52;3880:15;3886:4;;3880:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3892:2:53;;-1:-1:-1;3880:5:53;;-1:-1:-1;;3880:15:53:i;:::-;3256:646;;;;;;;:::o;1325:289:35:-;1517:90;;;;;;1551:10;1517:90;;;;1571:4;1517:90;;;;;;;;;;;;;;;;1593:4;1517:90;;;;;;;;;;;;;;;;;;;;;;;;;:33;;;;;;:90;;;;;-1:-1:-1;;1517:90:35;;;;;;;-1:-1:-1;1517:33:35;:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1325:289;;;;;;:::o;2093:1123:53:-;2277:17;;2446:38;2442:155;;-1:-1:-1;2517:4:53;2553;;2558:1;2553:7;;;;;;;;;;;;;;;;;;:::i;:::-;2546:25;;;2580:4;2546:40;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2535:51;;2442:155;2607:180;2624:4;;2629:1;2624:7;;;;;;;;;;;;;;;;;;;;:::i;:::-;2645:14;:43;;2678:10;2645:43;;;2670:4;2645:43;2702:53;2727:9;2738:4;;2743:1;2738:7;;;;;;;;;;;;;;;;;;;;:::i;:::-;2747:4;;2752:1;2747:7;;;;;;2702:53;2769:8;2607:3;:180::i;:::-;2843:26;;;455:1:79;2843:26:53;2839:114;;;2876:10;2871:15;;2839:114;;;2905:28;;;606:1:79;2905:28:53;2901:52;;;2948:4;2935:18;;2901:52;2964:21;2995:4;;3000:15;;;2995:21;;;;;;;;;;;;;;;;;;;;:::i;:::-;2988:39;;;3028:2;2988:43;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2964:67;;3042:15;3048:4;;3042:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3054:2:53;;-1:-1:-1;3042:5:53;;-1:-1:-1;;3042:15:53:i;:::-;3080:62;3128:13;3087:4;;3092:15;;;3087:21;;;;;;;;;;;;;;;;;;;;:::i;:::-;3080:39;;;3120:2;3080:43;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:47;;:62::i;:::-;3068:74;;3173:12;3160:9;:25;;3152:57;;;;;;;;;;;;:::i;:::-;2093:1123;;;;;;;;;:::o;524:397:32:-;621:20;651:5;644:23;;;676:4;644:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;644:38:32;;-1:-1:-1;700:29:32;;;;692:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;767:16;;763:152;;806:5;799:22;;;822:12;799:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;849:55;880:9;891:12;849:30;:55::i;:::-;524:397;;;:::o;414:125:59:-;494:38;506:13;521:10;494:11;:38::i;:::-;414:125;:::o;420:39:31:-;;;:::o;8276:693:54:-;8411:16;8510:247;8543:16;;;;;;8573;;;;;;:::i;:::-;8603:24;;;;;;;;:::i;:::-;8641:106;;;;;;;;8682:6;:15;;;;;;;;;;:::i;:::-;8699:10;;;;;;;;:::i;:::-;8711:14;;;;:6;:14;:::i;:::-;8665:61;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;8641:106;;;;8735:10;8641:106;;;;;8510:19;:247::i;:::-;8499:258;;8788:6;:22;;;8776:8;:34;;8768:65;;;;;;;;;;;;:::i;1766:123:55:-;1845:36;1856:5;1863:17;1845:10;:36::i;:::-;1837:45;;;;;492:218:57;651:14;624:8;244::34;223:17;:15;:17::i;:::-;:29;;215:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2108:170:55;2195:20;2206:5;2213:1;2195:10;:20::i;:::-;2187:29;;;;;288:43:56;;;:::o;373:49::-;;;:::o;553:698:33:-;752:1;742:7;:11;:29;;;;;768:3;757:7;:14;;742:29;734:38;;;;;;783:20;813:5;806:23;;;838:4;806:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;806:38:33;;-1:-1:-1;862:29:33;;;;854:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;929:16;;925:320;;968:5;961:22;;;984:12;961:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1011:17;1059:6;1031:25;1048:7;1031:12;:16;;:25;;;;:::i;:::-;:34;;;;;;;-1:-1:-1;1083:13:33;;1079:74;;1098:55;1129:12;1143:9;1098:30;:55::i;:::-;1167:67;1198:9;1224;1209:12;:24;1167:30;:67::i;925:320::-;553:698;;;;;:::o;1652:348:35:-;1861:50;;;;;;1885:10;1861:50;;;;1905:4;1861:50;;;;;;1914:17;;1861:23;;;;;;:50;;;;;;;;;;;;;;;:23;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1861:50:35;:70;1857:136;;;1945:48;1963:5;1970;1977:6;1985:1;1988;1991;1945:17;:48::i;2320:182:55:-;2415:20;2426:5;2433:1;2415:10;:20::i;:::-;2407:29;;;;;;2454:40;2465:5;2472:21;2454:10;:40::i;308:653:30:-;383:22;439:4;427:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;417:34;;466:9;461:494;481:15;;;461:494;;;518:12;;563:4;582;;587:1;582:7;;;;;;;;;;;;;;;;;;:::i;:::-;555:35;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;517:73;;;;610:7;605:306;;737:2;721:6;:13;:18;717:32;;;741:8;;;717:32;820:4;812:6;808:17;798:27;;878:6;867:28;;;;;;;;;;;;:::i;:::-;860:36;;;;;;;;;;;:::i;605:306::-;938:6;925:7;933:1;925:10;;;;;;;;;;;;;;;;;:19;-1:-1:-1;;498:3:30;;461:494;;;;308:653;;;;:::o;2544:475:55:-;2625:19;2656:12;2698:15;:20;;2719:4;2698:26;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2678:46:55;-1:-1:-1;2678:46:55;-1:-1:-1;2678:46:55;2735:278;;2859:2;2843:6;:13;:18;2839:32;;;2863:8;;;2839:32;2934:4;2926:6;2922:17;2912:27;;2984:6;2973:28;;;;;;;;;;;;:::i;5234:1540:54:-;5321:17;5457:19;310:1:79;5490:6:54;:15;;;:45;5486:236;;;5568:4;5551:21;;5587:15;5610:29;:6;:11;;;:27;:29::i;:::-;-1:-1:-1;;5671:40:54;;;;;5586:53;;-1:-1:-1;5671:25:54;;;;;;:40;;5705:4;;5671:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5653:15;;;:58;-1:-1:-1;5486:236:54;5732:13;5748:14;:43;;5781:10;5748:43;;;5773:4;5748:43;5732:59;;5802:887;5829:21;5853:30;:6;:11;;;:28;:30::i;:::-;5829:54;;5995:394;6031:6;:15;;;6064:16;:51;;6099:6;:16;;;6064:51;;;6091:4;6064:51;6184:1;6203:172;;;;;;;;6248:26;:6;:11;;;:24;:26::i;:::-;6203:172;;;;6351:5;6203:172;;;;;5995:18;:394::i;:::-;5977:15;;;:412;6459:220;;;;6552:11;;6515:4;;-1:-1:-1;6552:23:54;;:21;:23::i;:::-;6538:37;;6459:220;;;6626:6;:15;;;6614:27;;6659:5;;;6459:220;5802:887;;;;6720:6;:23;;;6707:9;:36;;6699:68;;;;;;;;;;;;:::i;:::-;5234:1540;;;;;:::o;973:314:35:-;1177:50;;;;;;1201:10;1177:50;;;;1221:4;1177:50;;;;;;1230:5;;1177:23;;;;;;:50;;;;;;;;;;;;;;;:23;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1177:50:35;:58;1173:107;;;1237:43;1248:5;1255;1262:8;1272:1;1275;1278;1237:10;:43::i;328:41:31:-;;;:::o;466:231:60:-;622:68;641:13;656:10;668:7;677:12;622:18;:68::i;905:819:55:-;988:12;1110:6;1058:5;1051:23;;;1083:4;1090:15;1051:55;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:65;1047:103;;-1:-1:-1;1125:25:55;1118:32;;1047:103;1222:36;1233:5;1240:17;1222:10;:36::i;:::-;1218:65;;;-1:-1:-1;1267:16:55;1260:23;;1218:65;1297:40;1308:5;1315:21;1297:10;:40::i;:::-;1293:79;;;-1:-1:-1;1346:26:55;1339:33;;1293:79;1435:20;1446:5;1453:1;1435:10;:20::i;:::-;1427:29;;;;;;1528:36;1539:5;1546:17;1528:10;:36::i;:::-;1524:75;;;-1:-1:-1;1573:26:55;1566:33;;1524:75;1613:40;1624:5;1631:21;1613:10;:40::i;:::-;1609:89;;;-1:-1:-1;1662:36:55;905:819;;;;;:::o;966:395:32:-;1107:20;1137:5;1130:23;;;1162:4;1130:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1130:38:32;;-1:-1:-1;1186:29:32;;;;1178:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1253:16;;1249:106;;1285:59;1313:5;1320:9;1331:12;1285:27;:59::i;1303:678:33:-;1524:1;1514:7;:11;:29;;;;;1540:3;1529:7;:14;;1514:29;1506:38;;;;;;1555:20;1585:5;1578:23;;;1610:4;1578:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1578:38:33;;-1:-1:-1;1634:29:33;;;;1626:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1701:16;;1697:278;;1733:17;1781:6;1753:25;:12;1770:7;1753:16;:25::i;:::-;:34;;;;;;;-1:-1:-1;1805:13:33;;1801:78;;1820:59;1848:5;1855:12;1869:9;1820:27;:59::i;:::-;1893:71;1921:5;1928:9;1954;1939:12;:24;1893:27;:71::i;:::-;1697:278;1303:678;;;;;;:::o;757:145:59:-;851:44;862:5;869:13;884:10;851;:44::i;:::-;757:145;;:::o;7806:442:58:-;8004:34;8040;8090:45;8108:5;8115:7;8124:10;8090:17;:45::i;:::-;8003:132;;;;8213:21;8153:81;;8183:27;8153;:57;:81;8145:96;;;;;;;;;;;;:::i;4241:848:55:-;4376:19;4430:652;4511:54;;;4587:463;;;;;;;;4674:6;:14;;;4587:463;;;;4730:24;4740:6;:13;;;;;;;;;;:::i;4730:24::-;4587:463;;;;4796:24;4806:6;:13;;;;;;;;;;:::i;4796:24::-;4587:463;;;;4858:6;:17;;;4587:463;;;;4913:6;:17;;;4587:463;;;;4966:17;4587:463;;;4467:601;;;;;;;;:::i;7409:355:58:-;7570:27;7599;7630:35;7648:4;7654:10;7630:17;:35::i;:::-;7569:96;;;;7729:21;7683:67;;7706:20;7683;:43;:67;7675:82;;;;;;;;;;;;:::i;955:159:59:-;1035:72;1067:5;1074:10;1094:4;1101:5;1035:31;:72::i;662:273:35:-;849:79;;;;;;876:10;849:79;;;;896:4;849:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:26;;;;;;:79;;;;;-1:-1:-1;;849:79:35;;;;;;;-1:-1:-1;849:26:35;:79;;;;;;;;;;1865:1321:54;2041:1;2026:12;:16;:36;;;;2061:1;2046:12;:16;2026:36;2018:45;;;;;;2136:28;2167:37;;;;2178:5;2167:37;:::i;:::-;2136:68;;2215:15;2232:16;2250:10;2264:27;:4;:9;;;:25;:27::i;:::-;2214:77;;;;;;2301:66;2335:7;2344;2353:8;2363:3;2301:33;:66::i;:::-;;2379:17;2398:19;2448:1;2433:12;:16;:140;;2542:7;2531:18;;:8;:18;;;2559:12;2433:140;;;2479:8;2469:18;;:7;:18;;;2497:12;2433:140;2378:195;;;;2588:12;2584:596;;;2616:49;2620:7;2629:4;:10;;;2641;2653:11;2616:3;:49::i;:::-;2584:596;;;2752:9;;:28;;:26;:28::i;:::-;2748:422;;;2812:9;;:21;;:19;:21::i;:::-;2800:33;;2851:53;2871:11;2884:10;2800:9;:4;2851:19;:53::i;:::-;;2748:422;;;2960:11;2943:14;:28;;;;3105:50;3109:8;3119:4;:10;;;3131;3143:11;3105:3;:50::i;3240:1007::-;3417:17;3498:33;;;455:1:79;3498:33:54;3494:142;;;3545:10;3533:22;;3494:142;;;3574:35;;;606:1:79;3574:35:54;3570:66;;;3631:4;3611:25;;3570:66;3648:15;3665:16;3683:10;3697:27;:4;:9;;;:25;:27::i;:::-;3647:77;;-1:-1:-1;3647:77:54;-1:-1:-1;3647:77:54;-1:-1:-1;3753:18:54;;;;;;;;3735:15;;3829:31;3647:77;;;3829:7;:31::i;:::-;:36;;;3883:9;3910:10;3938:19;:8;:17;:19::i;:::-;3975:22;;;;:157;;4115:17;3975:157;;;4021:10;:70;;4064:27;4021:70;;;4034:27;4021:70;4161:4;4150:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;3829:351;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3782:398;;;;4208:10;:30;;4231:7;4208:30;;;4221:7;4208:30;4206:33;;;3240:1007;-1:-1:-1;;;;;;;;;;;3240:1007:54:o;6829:1407::-;7008:16;7088:33;;;455:1:79;7088:33:54;7084:142;;;7135:10;7123:22;;7084:142;;;7164:35;;;606:1:79;7164:35:54;7160:66;;;7221:4;7201:25;;7160:66;7238:16;7256:15;7273:10;7287:27;:4;:9;;;:25;:27::i;:::-;7237:77;;-1:-1:-1;7237:77:54;-1:-1:-1;7237:77:54;-1:-1:-1;7343:18:54;;;;;;;;7325:15;;7429:31;7237:77;;;7429:7;:31::i;:::-;:36;;;7483:9;7510:10;7539:20;:9;:18;:20::i;:::-;7538:21;;7577:22;;;;:157;;7717:17;7577:157;;;7623:10;:70;;7666:27;7623:70;;;7636:27;7623:70;7763:4;7752:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;7429:353;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7372:410;;;;7793:25;7860:10;:134;;7956:12;7980;7979:13;;7860:134;;;7894:12;7918;7917:13;;7860:134;7828:166;;-1:-1:-1;7828:166:54;-1:-1:-1;8166:22:54;;;8162:67;;8219:9;8198:17;:30;8190:39;;;;;;6829:1407;;;;;;;;;;;;;:::o;3025:127:55:-;3107:38;;;;;3081:7;;3107:23;;;;;;:38;;3139:4;;3107:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;2370:165:51:-;2482:12;;;2442;2482;;;;;;;;;2460:7;;;;2475:5;;2460:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2441:54;;;2513:7;2505:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3119:538:81;3253:24;3312:1;3297:4;:11;:16;;3289:25;;;;;;3348:4;:11;3334:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3334:26:81;;3324:36;;3400:9;3370:7;3395:1;3378:7;:14;:18;3370:27;;;;;;;;;;;;;;;;;:39;3436:11;;:15;;3419:232;3453:5;;3419:232;;3480:17;3499:18;3521:42;3533:7;3542:4;3551:1;3547;:5;3542:11;;;;;;;;;;;;;;3555:4;3560:1;3555:7;;;;;;;;;;;;;;3521:11;:42::i;:::-;3479:84;;;;3594:46;3606:7;3614:1;3606:10;;;;;;;;;;;;;;3618:9;3629:10;3594:11;:46::i;:::-;3577:7;3589:1;3585;:5;3577:14;;;;;;;;;;;;;;;;;:63;-1:-1:-1;;3460:3:81;;3419:232;;734:633;853:12;878:14;894;912:26;923:6;931;912:10;:26::i;:::-;1150:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1140:43;;;;;;1032:286;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1001:335;;;;;;;;;734:633;-1:-1:-1;;;;;734:633:81:o;1757:699:32:-;1904:5;1895:14;;:5;:14;;;:48;;;;;1938:5;1913:21;:30;;1895:48;1891:559;;;1996:5;1989:21;;;2018:5;1989:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2082:5;2075:22;;;2098:9;2109:5;2075:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1891:559:32;;-1:-1:-1;1891:559:32;;2136:22;;;2153:4;2136:22;2132:318;;;2265:52;2293:5;2300:9;2311:5;2265:27;:52::i;:::-;2132:318;;;2376:63;2408:5;2415;2422:9;2433:5;2376:31;:63::i;791:1262:53:-;865:9;860:1187;894:1;880:4;:11;:15;876:1;:19;860:1187;;;917:13;932:14;951:4;956:1;951:7;;;;;;;;;;;;;;960:4;965:1;969;965:5;960:11;;;;;;;;;;;;;;916:56;;;;987:14;1007:42;1035:5;1042:6;1007:27;:42::i;:::-;986:63;;;1063:19;1100:50;1125:9;1136:5;1143:6;1100:24;:50::i;:::-;1063:88;;1165:19;1198:20;1303:16;1321;1343:4;:16;;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1302:59;;;;;;;;;1380:20;1402:21;1456:6;1447:15;;:5;:15;;;:61;;1489:8;1499;1447:61;;;1466:8;1476;1447:61;1379:129;;;;1540:56;1583:12;1547:5;1540:23;;;1572:4;1540:38;;;;;;;;;;;;;;;:::i;:56::-;1526:70;;1629:71;1659:11;1672:12;1686:13;1629:29;:71::i;:::-;1614:86;;860:1187;;;;1729:18;1749;1796:6;1787:15;;:5;:15;;;:73;;1835:12;1857:1;1787:73;;;1814:1;1818:12;1787:73;1728:132;;;;1874:10;1905:1;1891:4;:11;:15;1887:1;:19;:84;;1968:3;1887:84;;;1909:56;1934:9;1945:6;1953:4;1958:1;1962;1958:5;1953:11;;;;;;;;;;;;;;1909:24;:56::i;:::-;2023:12;;;2033:1;2023:12;;;;;;;;;1985:51;;;;1874:97;;-1:-1:-1;1985:9:53;;;;;;:51;;1995:10;;2007;;1874:97;;1985:51;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;897:3:53;;;;;-1:-1:-1;860:1187:53;;-1:-1:-1;;;;;;;;;;860:1187:53;710:111:25;802:5;;;797:16;;;;789:25;;;;;566:297:55;634:4;651:12;665:17;698:5;:10;;732:23;;;757:15;774:6;709:72;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;698:84;;;;709:72;698:84;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;650:132;;;;799:7;:57;;;;-1:-1:-1;811:11:55;;:16;;:44;;;842:4;831:24;;;;;;;;;;;;:::i;319:106:29:-;403:15;319:106;:::o;986:125:25:-;1044:9;1073:6;;;:30;;-1:-1:-1;;1088:5:25;;;1102:1;1097;1088:5;1097:1;1083:15;;;;;:20;1073:30;1065:39;;;;;1779:314:49;1883:14;;;1983:17;:4;1883:14;1983;:17::i;:::-;1974:26;-1:-1:-1;2016:24:49;:4;304:2;2016:13;:24::i;:::-;2010:30;-1:-1:-1;2059:27:49;:4;507:20;2059:14;:27::i;:::-;2050:36;;1779:314;;;;;:::o;992:138::-;1083:11;777:24;-1:-1:-1;1083:40:49;;992:138::o;2319:127::-;2383:12;2414:25;:4;2425:1;618:23;2414:10;:25::i;2635:149::-;2751:11;;2696:12;;2727:50;;2751:4;;507:20;;2751:25;;2727:10;:50::i;1211:309:51:-;1371:59;;;1360:10;1371:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1394:24;1371:59;;;1360:71;;;;1325:12;;;;1360:10;;;;1371:59;1360:71;;;1371:59;1360:71;;1371:59;1360:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1324:107;;;;1449:7;:57;;;;-1:-1:-1;1461:11:51;;:16;;:44;;;1492:4;1481:24;;;;;;;;;;;;;;;-1:-1:-1;1481:24:51;1461:44;1441:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6098:1269:58;6245:34;6281;6351:7;:14;6335:5;:12;:30;6327:39;;;;;;6377:69;6498:5;:12;6461:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;6377:134;;6521:69;6642:5;:12;6605:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;6521:134;;6671:9;6666:466;6690:5;:12;6686:1;:16;6666:466;;;6724:27;6753;6784:39;6802:5;6808:1;6802:8;;;;;;;;;;;;;;6812:10;6784:17;:39::i;:::-;6723:100;;;;6877:29;6885:20;6877:7;:29::i;:::-;6837;6867:1;6837:32;;;;;;;;;;;;;;:37;;:69;;;;;;;;;;;6960:29;6968:20;6960:7;:29::i;:::-;6920;6950:1;6920:32;;;;;;;;;;;;;;:37;;:69;;;;;;;;;;;7045:7;7053:1;7045:10;;;;;;;;;;;;;;7003:29;7033:1;7003:32;;;;;;;;;;;;;;:39;;:52;;;;;;;;;;;7111:7;7119:1;7111:10;;;;;;;;;;;;;;7069:29;7099:1;7069:32;;;;;;;;;;;;;;;;;;;:52;;;;:39;;:52;-1:-1:-1;;6704:3:58;;6666:466;;;;7172:74;7216:29;7172:43;:74::i;:::-;7142:104;;;;7286:74;7330:29;7286:43;:74::i;:::-;7256:104;;;;6098:1269;;;;;;;;:::o;2866:2578::-;2978:27;3007;3050:23;3084:16;3103:15;:4;:13;:15::i;:::-;3084:34;-1:-1:-1;3128:23:58;;3161:2051;3185:8;3181:1;:12;3161:2051;;;3276:15;3293:16;3311:10;3325:22;:4;:20;:22::i;:::-;3275:72;;;;;;3361:19;3383:38;3398:7;3407:8;3417:3;3383:14;:38::i;:::-;3361:60;-1:-1:-1;3506:18:58;;3574:15;;;3570:397;;3737:36;3768:4;3737:30;:36::i;:::-;3708:65;;;;;-1:-1:-1;3708:65:58;;;-1:-1:-1;3570:397:58;;;3830:48;3860:4;3867:10;3830:21;:48::i;:::-;3812:66;;;;;;;;;;3939:4;3924:26;;;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;3896:56:58;;;;;;-1:-1:-1;;;;3570:397:58;4001:1;3990:8;:12;3985:1;:17;3981:682;;;4451:8;4441:18;;:7;:18;;;4420:39;;3981:682;;;4589:16;:4;:14;:16::i;:::-;4582:23;;4641:7;4623:25;;3981:682;4839:8;4851:6;;;4850:81;;;4881:7;4863:25;;:15;:25;;;:67;;4923:7;4912:18;;:8;:18;;;4863:67;;;4901:8;4891:18;;:7;:18;;;4863:67;4839:92;;4949:3;4945:257;;;4972:35;;;;5025;;;;4945:257;;;5123:11;5099:35;;;;5176:11;5152:35;;;;4945:257;-1:-1:-1;;3195:3:58;;;;;-1:-1:-1;3161:2051:58;;-1:-1:-1;;;;3161:2051:58;;;5327:18;5322:116;;5385:2;5361:26;;;;5425:2;5401:26;;;;5322:116;2866:2578;;;;;;;;:::o;561:358:51:-;759:69;;;748:10;759:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;782:28;759:69;;;748:81;;;;701:12;;;;748:10;;;;759:69;748:81;;;759:69;748:81;;759:69;748:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700:129;;;;847:7;:57;;;;-1:-1:-1;859:11:51;;:16;;:44;;;890:4;879:24;;;;;;;;;;;;;;;-1:-1:-1;879:24:51;859:44;839:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;683:259:47;829:19;867:68;882:7;891:43;914:6;922;930:3;891:22;:43::i;:::-;867:14;:68::i;1487:249:54:-;1600:14;1648:80;1675:7;1684:43;1707:6;1715;1723:3;1684:22;:43::i;:::-;1648:26;:80::i;:::-;1626:103;1487:249;-1:-1:-1;;;;1487:249:54:o;924:121:26:-;976:8;1008:6;1004:1;:10;996:19;;;;;;-1:-1:-1;1036:1:26;924:121::o;1422:431:81:-;1545:16;1563;1592:14;1612:26;1623:6;1631;1612:10;:26::i;:::-;1591:47;;;1649:16;1667;1704:32;1712:7;1721:6;1729;1704:7;:32::i;:::-;1689:60;;;:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1689:62:81;;;;;;;1648:103;;;;;-1:-1:-1;1648:103:81;;-1:-1:-1;1784:16:81;;;;;;;;:62;;1827:8;1837;1784:62;;;1804:8;1814;1784:62;1761:85;;;;-1:-1:-1;1422:431:81;-1:-1:-1;;;;;;;1422:431:81:o;2589:452::-;2721:16;2769:1;2757:9;:13;2749:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2831:1;2819:9;:13;:31;;;;;2849:1;2836:10;:14;2819:31;2811:40;;;;;;2861:17;2881:34;2910:4;2881:24;:9;2895;2881:13;:24::i;:::-;:28;;:34::i;:::-;2861:54;-1:-1:-1;2925:19:81;2947:34;2977:3;2947:25;:10;2962:9;2947:14;:25::i;:34::-;2925:56;;3002:32;3032:1;3015:11;3003:9;:23;;;;;;;3002:29;:32::i;:::-;2991:43;2589:452;-1:-1:-1;;;;;;2589:452:81:o;375:270::-;450:14;466;510:6;500:16;;:6;:16;;;;492:25;;;;;;555:6;546:15;;:6;:15;;;:53;;584:6;592;546:53;;;565:6;573;546:53;527:72;;-1:-1:-1;527:72:81;-1:-1:-1;617:20:81;;;609:29;;;;;;375:270;;;;;:::o;1972:499::-;2104:17;2152:1;2141:8;:12;2133:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2213:1;2201:9;:13;:31;;;;;2231:1;2218:10;:14;2201:31;2193:40;;;;;;2243:23;2269:17;:8;2282:3;2269:12;:17::i;:::-;2243:43;-1:-1:-1;2296:17:81;2316:31;2243:43;2336:10;2316:19;:31::i;:::-;2296:51;-1:-1:-1;2357:19:81;2379:40;2403:15;2379:19;:9;2393:4;2379:13;:19::i;:::-;:23;;:40::i;:::-;2357:62;;2453:11;2441:9;:23;;;;;;;1972:499;-1:-1:-1;;;;;;;1972:499:81:o;3412:416:46:-;3491:7;3533:6;3518;3527:2;3518:11;:21;;3510:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3597:6;3606:2;3597:11;3580:6;:13;:28;;3572:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3722:30:46;3738:4;3722:30;3716:37;3755:27;3712:71;;;3412:416::o;3834:365::-;3912:6;3952;3938;3947:1;3938:10;:20;;3930:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4015:6;4024:1;4015:10;3998:6;:13;:27;;3990:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4127:29:46;4143:3;4127:29;4121:36;;3834:365::o;399:3007::-;521:12;569:7;553;563:2;553:12;:23;;545:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;633:6;622:7;613:6;:16;:26;;605:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;702:7;693:6;:16;676:6;:13;:33;;668:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742:22;805:15;;837:2099;;;;3089:4;3083:11;3070:24;;3287:1;3276:9;3269:20;3339:4;3328:9;3324:20;3318:4;3311:34;798:2565;;837:2099;1031:4;1025:11;1012:24;;1726:2;1717:7;1713:16;2128:9;2121:17;2115:4;2111:28;2099:9;2088;2084:25;2080:60;2180:7;2176:2;2172:16;2448:6;2434:9;2427:17;2421:4;2417:28;2405:9;2397:6;2393:22;2389:57;2385:70;2210:461;2485:3;2481:2;2478:11;2210:461;;;2639:9;;2628:21;;2530:4;2522:13;;;;2566;2210:461;;;-1:-1:-1;;2693:26:46;;;2913:2;2896:11;2909:7;2892:25;2886:4;2879:39;-1:-1:-1;798:2565:46;-1:-1:-1;3390:9:46;399:3007;-1:-1:-1;;;;399:3007:46:o;5521:103:58:-;5615:1;5597:19;;;;;;5589:28;;;;;7370:893:48;7500:32;7624:16;7697:19;7836:9;7831:204;7851:16;:23;7847:1;:27;7831:204;;;7942:16;7959:1;7942:19;;;;;;;;;;;;;;:26;;;7935:34;;7908:16;7925:1;7908:19;;;;;;;;;;;;;;:24;;;:61;;;7895:74;;;;7998:16;8015:1;7998:19;;;;;;;;;;;;;;:26;;;7983:41;;;;;;7876:3;;;;;;;7831:204;;;;8099:11;8080:9;:31;;;;;;8045:67;;8183:1;8171:9;:13;:55;;;;;8208:11;8189:9;:31;;;;;;:36;;8171:55;8167:89;;;-1:-1:-1;;8228:28:48;;;7370:893;-1:-1:-1;7370:893:48:o;1282:235:49:-;1471:11;507:20;1471:23;;;;1470:39;;1282:235::o;782:1474:58:-;890:23;915:17;948:23;981:29;1086:4;:10;;;:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;1020:78:58;;-1:-1:-1;1020:78:58;;-1:-1:-1;1020:78:58;-1:-1:-1;;1225:1:58;1200:26;;;;;-1:-1:-1;1192:42:58;;-1:-1:-1;1192:42:58;;;;;;;;;;;:::i;:::-;1552:27;1581:20;1609:4;:17;;;1627:16;1609:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1551:93;;;;;;1689:17;:15;:17::i;:::-;1658:49;;:20;:49;;;1654:596;;1743:11;1723:31;;1654:596;;;1785:17;1864:22;1805:81;;1859:1;1834:22;1806:50;;1814:16;1806:25;;:50;:54;1805:81;;;;;;1785:101;;1901:31;1934:24;1962:20;2002:4;:17;;;2020:9;2002:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1900:130;;;;;;;2053:15;2045:31;;;;;;;;;;;;:::i;:::-;2106:47;;;2193:45;;;2194:35;;;2193:45;;;;;;;;2167:72;;1654:596;;;;;;782:1474;;;;;;;:::o;885:1227:48:-;982:24;;1061:15;;;1053:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1124:15;;;1137:1;1124:15;;;;;;;;1094:27;;1124:15;;;;;;;;;;-1:-1:-1;1124:15:48;1094:45;;1166:10;1149:11;1161:1;1149:14;;;;;;;;;;;;;:27;;;;;;;;;;;1203:1;1186:11;1198:1;1186:14;;;;;;;;:18;;;;:14;;;;;;;;;;:18;1315:41;;;;;;;;;;;;;;;;;;;1216:30;;;;1315:28;;;;;;1344:11;;1315:41;;;;;;;;;;;;;;;;;1216:30;1315:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1315:41:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1315:41:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1215:141;;;;1367:26;1417:15;1433:1;1417:18;;;;;;;;;;;;;;1396:15;1412:1;1396:18;;;;;;;;;;;;;;:39;1367:68;;1445:43;1543:34;1578:1;1543:37;;;;;;;;;;;;;;1503:34;1538:1;1503:37;;;;;;;;;;;;;;:77;1445:135;;1641:10;1618:33;;:20;:33;;;;;;;;1591:61;;1734:1;1711:20;:24;;;:68;;;;;1763:10;1740:33;;:20;:33;;;;;;;;:38;;;;1711:68;1707:94;;;1781:20;;;;;1707:94;1954:19;;;1976:17;1954:39;2053:50;2101:2;2053:50;;;;;2035:69;;2053:50;2035:69;;;;;2003:102;;885:1227;;;;;;;;;;;:::o;784:274:50:-;901:14;;:::i;:::-;940:6;931:15;;:6;:15;;;927:56;;;968:6;;976;927:56;-1:-1:-1;1000:51:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;784:274::o;1189:279:47:-;1313:19;1370:44;1397:7;1406;1370:26;:44::i;:::-;1348:67;-1:-1:-1;1433:10:47;:27;;;;1425:36;;;;;1305:512:50;1389:12;1434:3;:10;;;1421:23;;:3;:10;;;:23;;;1413:32;;;;;;-1:-1:-1;1668:10:50;;1680;;;;;1692:7;;;;;1657:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1647:54;;;;;;1539:229;;;;;;;;;;;;;;;;;;;;;241:66;1539:229;;;;;;;;;;;;;;;;;;;;;;;;;1508:278;;;;;;1305:512::o;435:111:25:-;527:5;;;522:16;;;;514:25;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:138:89:-;84:20;;113:33;84:20;113:33;:::i;157:404::-;;;290:3;283:4;275:6;271:17;267:27;257:2;;315:8;305;298:26;257:2;-1:-1:-1;345:20:89;;388:18;377:30;;374:2;;;427:8;417;410:26;374:2;471:4;463:6;459:17;447:29;;534:3;527:4;519;511:6;507:17;499:6;495:30;491:41;488:50;485:2;;;551:1;548;541:12;566:840;;679:3;672:4;664:6;660:17;656:27;646:2;;701:5;694;687:20;646:2;741:6;728:20;767:4;791:63;806:47;850:2;806:47;:::i;:::-;791:63;:::i;:::-;888:15;;;919:12;;;;951:15;;;997:11;;;985:24;;981:33;;978:42;-1:-1:-1;975:2:89;;;1037:5;1030;1023:20;975:2;1063:5;1077:300;1091:2;1088:1;1085:9;1077:300;;;1162:3;1149:17;1210:34;1203:5;1199:46;1192:5;1189:57;1179:2;;1264:5;1257;1250:20;1179:2;1285:18;;1323:12;;;;1355;;;;1109:1;1102:9;1077:300;;;-1:-1:-1;1395:5:89;;636:770;-1:-1:-1;;;;;;;636:770:89:o;1411:166::-;1489:13;;1538;;1531:21;1521:32;;1511:2;;1567:1;1564;1557:12;1582:485;;1679:3;1672:4;1664:6;1660:17;1656:27;1646:2;;1701:5;1694;1687:20;1646:2;1741:6;1728:20;1772:49;1787:33;1817:2;1787:33;:::i;1772:49::-;1846:2;1837:7;1830:19;1892:3;1885:4;1880:2;1872:6;1868:15;1864:26;1861:35;1858:2;;;1913:5;1906;1899:20;1858:2;1982;1975:4;1967:6;1963:17;1956:4;1947:7;1943:18;1930:55;2005:16;;;2023:4;2001:27;1994:42;;;;2009:7;1636:431;-1:-1:-1;;1636:431:89:o;2072:190::-;2153:13;;2206:30;2195:42;;2185:53;;2175:2;;2252:1;2249;2242:12;2267:165;2347:13;;2400:6;2389:18;;2379:29;;2369:2;;2422:1;2419;2412:12;2437:163;2506:20;;2566:8;2555:20;;2545:31;;2535:2;;2590:1;2587;2580:12;2605:136;2674:20;;2703:32;2674:20;2703:32;:::i;2746:259::-;;2858:2;2846:9;2837:7;2833:23;2829:32;2826:2;;;2879:6;2871;2864:22;2826:2;2923:9;2910:23;2942:33;2969:5;2942:33;:::i;:::-;2994:5;2816:189;-1:-1:-1;;;2816:189:89:o;3010:327::-;;;3139:2;3127:9;3118:7;3114:23;3110:32;3107:2;;;3160:6;3152;3145:22;3107:2;3204:9;3191:23;3223:33;3250:5;3223:33;:::i;:::-;3275:5;3327:2;3312:18;;;;3299:32;;-1:-1:-1;;;3097:240:89:o;3342:470::-;;;;3488:2;3476:9;3467:7;3463:23;3459:32;3456:2;;;3509:6;3501;3494:22;3456:2;3553:9;3540:23;3572:33;3599:5;3572:33;:::i;:::-;3624:5;-1:-1:-1;3676:2:89;3661:18;;3648:32;;-1:-1:-1;3732:2:89;3717:18;;3704:32;3745:35;3704:32;3745:35;:::i;:::-;3799:7;3789:17;;;3446:366;;;;;:::o;3817:683::-;;;;;;3997:3;3985:9;3976:7;3972:23;3968:33;3965:2;;;4019:6;4011;4004:22;3965:2;4063:9;4050:23;4082:33;4109:5;4082:33;:::i;:::-;4134:5;-1:-1:-1;4186:2:89;4171:18;;4158:32;;-1:-1:-1;4242:2:89;4227:18;;4214:32;4255:35;4214:32;4255:35;:::i;:::-;4309:7;-1:-1:-1;4363:2:89;4348:18;;4335:32;;-1:-1:-1;4419:3:89;4404:19;;4391:33;4433:35;4391:33;4433:35;:::i;:::-;4487:7;4477:17;;;3955:545;;;;;;;;:::o;4505:539::-;;;;;4668:3;4656:9;4647:7;4643:23;4639:33;4636:2;;;4690:6;4682;4675:22;4636:2;4734:9;4721:23;4753:33;4780:5;4753:33;:::i;:::-;4805:5;-1:-1:-1;4857:2:89;4842:18;;4829:32;;-1:-1:-1;4908:2:89;4893:18;;4880:32;;-1:-1:-1;4964:2:89;4949:18;;4936:32;4977:35;4936:32;4977:35;:::i;:::-;4626:418;;;;-1:-1:-1;4626:418:89;;-1:-1:-1;;4626:418:89:o;5049:673::-;;;;;;;5244:3;5232:9;5223:7;5219:23;5215:33;5212:2;;;5266:6;5258;5251:22;5212:2;5310:9;5297:23;5329:33;5356:5;5329:33;:::i;:::-;5381:5;-1:-1:-1;5433:2:89;5418:18;;5405:32;;-1:-1:-1;5484:2:89;5469:18;;5456:32;;-1:-1:-1;5540:2:89;5525:18;;5512:32;5553:33;5512:32;5553:33;:::i;:::-;5202:520;;;;-1:-1:-1;5202:520:89;;5659:3;5644:19;;5631:33;;5711:3;5696:19;;;5683:33;;-1:-1:-1;5202:520:89;-1:-1:-1;;5202:520:89:o;5727:474::-;;;5885:2;5873:9;5864:7;5860:23;5856:32;5853:2;;;5906:6;5898;5891:22;5853:2;5951:9;5938:23;5984:18;5976:6;5973:30;5970:2;;;6021:6;6013;6006:22;5970:2;6065:76;6133:7;6124:6;6113:9;6109:22;6065:76;:::i;:::-;6160:8;;6039:102;;-1:-1:-1;5843:358:89;-1:-1:-1;;;;5843:358:89:o;6206:1340::-;;;;;6426:3;6414:9;6405:7;6401:23;6397:33;6394:2;;;6448:6;6440;6433:22;6394:2;6493:9;6480:23;6522:18;6563:2;6555:6;6552:14;6549:2;;;6584:6;6576;6569:22;6549:2;6627:6;6616:9;6612:22;6602:32;;6672:7;6665:4;6661:2;6657:13;6653:27;6643:2;;6699:6;6691;6684:22;6643:2;6740;6727:16;6762:4;6786:63;6801:47;6845:2;6801:47;:::i;6786:63::-;6883:15;;;6914:12;;;;6946:11;;;6975:6;6990:210;7004:2;7001:1;6998:9;6990:210;;;7061:64;7117:7;7112:2;7105:3;7092:17;7088:2;7084:26;7080:35;7061:64;:::i;:::-;7049:77;;7146:12;;;;7178;;;;7022:1;7015:9;6990:210;;;-1:-1:-1;7219:5:89;;-1:-1:-1;;;7262:18:89;;7249:32;;-1:-1:-1;;7293:16:89;;;7290:2;;;7327:6;7319;7312:22;7290:2;;7355:69;7416:7;7405:8;7394:9;7390:24;7355:69;:::i;:::-;7345:79;;;7443:39;7478:2;7467:9;7463:18;7443:39;:::i;:::-;7433:49;;7501:39;7536:2;7525:9;7521:18;7501:39;:::i;:::-;7491:49;;6384:1162;;;;;;;:::o;7551:214::-;;7671:2;7659:9;7650:7;7646:23;7642:32;7639:2;;;7692:6;7684;7677:22;7639:2;7720:39;7749:9;7720:39;:::i;7770:542::-;;;;7945:2;7933:9;7924:7;7920:23;7916:32;7913:2;;;7966:6;7958;7951:22;7913:2;8007:9;7994:23;7984:33;;8068:2;8057:9;8053:18;8040:32;8095:18;8087:6;8084:30;8081:2;;;8132:6;8124;8117:22;8081:2;8176:76;8244:7;8235:6;8224:9;8220:22;8176:76;:::i;:::-;7903:409;;8271:8;;-1:-1:-1;8150:102:89;;-1:-1:-1;;;;7903:409:89:o;8317:342::-;;8438:2;8426:9;8417:7;8413:23;8409:32;8406:2;;;8459:6;8451;8444:22;8406:2;8504:9;8491:23;8537:18;8529:6;8526:30;8523:2;;;8574:6;8566;8559:22;8523:2;8602:51;8645:7;8636:6;8625:9;8621:22;8602:51;:::i;8664:551::-;;;;8817:2;8805:9;8796:7;8792:23;8788:32;8785:2;;;8838:6;8830;8823:22;8785:2;8883:9;8870:23;8916:18;8908:6;8905:30;8902:2;;;8953:6;8945;8938:22;8902:2;8981:51;9024:7;9015:6;9004:9;9000:22;8981:51;:::i;:::-;8971:61;;;9051:39;9086:2;9075:9;9071:18;9051:39;:::i;:::-;9041:49;;9140:2;9129:9;9125:18;9112:32;9153;9179:5;9153:32;:::i;9220:255::-;;9330:2;9318:9;9309:7;9305:23;9301:32;9298:2;;;9351:6;9343;9336:22;9298:2;9395:9;9382:23;9414:31;9439:5;9414:31;:::i;9480:253::-;;;9618:2;9606:9;9597:7;9593:23;9589:32;9586:2;;;9639:6;9631;9624:22;9586:2;-1:-1:-1;;9667:16:89;;9723:2;9708:18;;;9702:25;9667:16;;9702:25;;-1:-1:-1;9576:157:89:o;9738:775::-;;;;;9901:2;9889:9;9880:7;9876:23;9872:32;9869:2;;;9922:6;9914;9907:22;9869:2;9963:9;9950:23;9940:33;;10020:2;10009:9;10005:18;9992:32;9982:42;;10075:2;10064:9;10060:18;10047:32;10098:18;10139:2;10131:6;10128:14;10125:2;;;10160:6;10152;10145:22;10125:2;10203:6;10192:9;10188:22;10178:32;;10248:7;10241:4;10237:2;10233:13;10229:27;10219:2;;10275:6;10267;10260:22;10219:2;10320;10307:16;10346:2;10338:6;10335:14;10332:2;;;10367:6;10359;10352:22;10332:2;10417:7;10412:2;10403:6;10399:2;10395:15;10391:24;10388:37;10385:2;;;10443:6;10435;10428:22;10385:2;9859:654;;;;-1:-1:-1;;10479:2:89;10471:11;;-1:-1:-1;;;9859:654:89:o;10518:676::-;;10651:2;10639:9;10630:7;10626:23;10622:32;10619:2;;;10672:6;10664;10657:22;10619:2;10710:9;10704:16;10743:18;10735:6;10732:30;10729:2;;;10780:6;10772;10765:22;10729:2;10808:22;;10861:4;10853:13;;10849:27;-1:-1:-1;10839:2:89;;10895:6;10887;10880:22;10839:2;10929;10923:9;10954:49;10969:33;10999:2;10969:33;:::i;10954:49::-;11026:2;11019:5;11012:17;11066:7;11061:2;11056;11052;11048:11;11044:20;11041:33;11038:2;;;11092:6;11084;11077:22;11038:2;11110:54;11161:2;11156;11149:5;11145:14;11140:2;11136;11132:11;11110:54;:::i;11199:1042::-;;11345:2;11333:9;11324:7;11320:23;11316:32;11313:2;;;11366:6;11358;11351:22;11313:2;11411:9;11398:23;11440:18;11481:2;11473:6;11470:14;11467:2;;;11502:6;11494;11487:22;11467:2;11530:22;;;;11586:4;11568:16;;;11564:27;11561:2;;;11609:6;11601;11594:22;11561:2;11647;11641:9;11689:4;11681:6;11677:17;11744:6;11732:10;11729:22;11724:2;11712:10;11709:18;11706:46;11703:2;;;11755:9;11703:2;11782;11775:22;11822:16;;11850;;;11847:2;;;11884:6;11876;11869:22;11847:2;11917:46;11955:7;11944:8;11940:2;11936:17;11917:46;:::i;:::-;11909:6;11902:62;;12007:2;12003;11999:11;11986:25;11973:38;;12020:33;12047:5;12020:33;:::i;:::-;12086:5;12081:2;12073:6;12069:15;12062:30;12146:2;12142;12138:11;12125:25;12120:2;12112:6;12108:15;12101:50;12205:2;12201;12197:11;12184:25;12179:2;12171:6;12167:15;12160:50;12229:6;12219:16;;;;;11303:938;;;;:::o;12246:897::-;;12398:3;12386:9;12377:7;12373:23;12369:33;12366:2;;;12420:6;12412;12405:22;12366:2;12458;12452:9;12500:3;12492:6;12488:16;12570:6;12558:10;12555:22;12534:18;12522:10;12519:34;12516:62;12513:2;;;12581:9;12513:2;12608;12601:22;12647:31;12668:9;12647:31;:::i;:::-;12639:6;12632:47;12712:40;12748:2;12737:9;12733:18;12712:40;:::i;:::-;12707:2;12699:6;12695:15;12688:65;12786:39;12821:2;12810:9;12806:18;12786:39;:::i;:::-;12781:2;12773:6;12769:15;12762:64;12859:40;12895:2;12884:9;12880:18;12859:40;:::i;:::-;12854:2;12846:6;12842:15;12835:65;12962:3;12951:9;12947:19;12934:33;12928:3;12920:6;12916:16;12909:59;13030:3;13019:9;13015:19;13002:33;12996:3;12988:6;12984:16;12977:59;13070:41;13106:3;13095:9;13091:19;13070:41;:::i;:::-;13064:3;13052:16;;13045:67;13056:6;12356:787;-1:-1:-1;;;12356:787:89:o;13148:427::-;;13297:2;13285:9;13276:7;13272:23;13268:32;13265:2;;;13318:6;13310;13303:22;13265:2;13363:9;13350:23;13396:18;13388:6;13385:30;13382:2;;;13433:6;13425;13418:22;13382:2;13461:22;;13517:3;13499:16;;;13495:26;13492:2;;;13539:6;13531;13524:22;13580:220;;13735:3;13723:9;13714:7;13710:23;13706:33;13703:2;;;13757:6;13749;13742:22;13805:220;;13960:3;13948:9;13939:7;13935:23;13931:33;13928:2;;;13982:6;13974;13967:22;14030:207;;14172:3;14160:9;14151:7;14147:23;14143:33;14140:2;;;14194:6;14186;14179:22;14242:928;;14388:2;14376:9;14367:7;14363:23;14359:32;14356:2;;;14409:6;14401;14394:22;14356:2;14454:9;14441:23;14483:18;14524:2;14516:6;14513:14;14510:2;;;14545:6;14537;14530:22;14510:2;14573:22;;;;14629:4;14611:16;;;14607:27;14604:2;;;14652:6;14644;14637:22;14604:2;14690:4;14684:11;14734:4;14726:6;14722:17;14789:6;14777:10;14774:22;14769:2;14757:10;14754:18;14751:46;14748:2;;;14800:9;14748:2;14827:4;14820:24;14869:16;;14897;;;14894:2;;;14931:6;14923;14916:22;14894:2;14964:46;15002:7;14991:8;14987:2;14983:17;14964:46;:::i;:::-;14956:6;14949:62;;15054:2;15050;15046:11;15033:25;15020:38;;15067:33;15094:5;15067:33;:::i;:::-;15128:2;15116:15;;15109:30;;;;-1:-1:-1;15120:6:89;14346:824;-1:-1:-1;;;14346:824:89:o;15175:435::-;;;;15331:2;15319:9;15310:7;15306:23;15302:32;15299:2;;;15352:6;15344;15337:22;15299:2;15380:42;15412:9;15380:42;:::i;:::-;15370:52;;15441:51;15488:2;15477:9;15473:18;15441:51;:::i;:::-;15431:61;;15535:2;15524:9;15520:18;15514:25;15548:32;15574:5;15548:32;:::i;15879:867::-;;;;;;;;16094:3;16082:9;16073:7;16069:23;16065:33;16062:2;;;16116:6;16108;16101:22;16062:2;16153:9;16147:16;16172:33;16199:5;16172:33;:::i;:::-;16274:2;16259:18;;16253:25;16224:5;;-1:-1:-1;16287:33:89;16253:25;16287:33;:::i;:::-;16339:7;-1:-1:-1;16365:50:89;16411:2;16396:18;;16365:50;:::i;:::-;16355:60;;16434:50;16480:2;16469:9;16465:18;16434:50;:::i;:::-;16424:60;;16503:51;16549:3;16538:9;16534:19;16503:51;:::i;:::-;16493:61;;16599:3;16588:9;16584:19;16578:26;16613:33;16638:7;16613:33;:::i;:::-;16665:7;-1:-1:-1;16691:49:89;16735:3;16720:19;;16691:49;:::i;:::-;16681:59;;16052:694;;;;;;;;;;:::o;16751:196::-;;16862:2;16850:9;16841:7;16837:23;16833:32;16830:2;;;16883:6;16875;16868:22;16830:2;16911:30;16931:9;16911:30;:::i;16952:190::-;;17064:2;17052:9;17043:7;17039:23;17035:32;17032:2;;;17085:6;17077;17070:22;17032:2;-1:-1:-1;17113:23:89;;17022:120;-1:-1:-1;17022:120:89:o;17147:194::-;;17270:2;17258:9;17249:7;17245:23;17241:32;17238:2;;;17291:6;17283;17276:22;17238:2;-1:-1:-1;17319:16:89;;17228:113;-1:-1:-1;17228:113:89:o;17346:327::-;;;17475:2;17463:9;17454:7;17450:23;17446:32;17443:2;;;17496:6;17488;17481:22;17443:2;17537:9;17524:23;17514:33;;17597:2;17586:9;17582:18;17569:32;17610:33;17637:5;17610:33;:::i;:::-;17662:5;17652:15;;;17433:240;;;;;:::o;17678:539::-;;;;;17841:3;17829:9;17820:7;17816:23;17812:33;17809:2;;;17863:6;17855;17848:22;17809:2;17904:9;17891:23;17881:33;;17964:2;17953:9;17949:18;17936:32;17977:33;18004:5;17977:33;:::i;:::-;18029:5;-1:-1:-1;18081:2:89;18066:18;;18053:32;;-1:-1:-1;18137:2:89;18122:18;;18109:32;18150:35;18109:32;18150:35;:::i;18769:395::-;;;;18915:2;18903:9;18894:7;18890:23;18886:32;18883:2;;;18936:6;18928;18921:22;18883:2;18977:9;18964:23;18954:33;;19034:2;19023:9;19019:18;19006:32;18996:42;;19088:2;19077:9;19073:18;19060:32;19101:33;19128:5;19101:33;:::i;19169:737::-;;;;;;19367:3;19355:9;19346:7;19342:23;19338:33;19335:2;;;19389:6;19381;19374:22;19335:2;19430:9;19417:23;19407:33;;19487:2;19476:9;19472:18;19459:32;19449:42;;19542:2;19531:9;19527:18;19514:32;19569:18;19561:6;19558:30;19555:2;;;19606:6;19598;19591:22;19555:2;19650:76;19718:7;19709:6;19698:9;19694:22;19650:76;:::i;:::-;19745:8;;-1:-1:-1;19624:102:89;-1:-1:-1;;19830:2:89;19815:18;;19802:32;19843:33;19802:32;19843:33;:::i;19911:651::-;;;;;20079:3;20067:9;20058:7;20054:23;20050:33;20047:2;;;20101:6;20093;20086:22;20047:2;20138:9;20132:16;20157:32;20183:5;20157:32;:::i;:::-;20208:5;20198:15;;;20258:2;20247:9;20243:18;20237:25;20307:7;20304:1;20293:22;20284:7;20281:35;20271:2;;20335:6;20327;20320:22;20271:2;20415;20400:18;;20394:25;20363:7;;-1:-1:-1;20428:35:89;20394:25;20428:35;:::i;:::-;20482:7;-1:-1:-1;20508:48:89;20552:2;20537:18;;20508:48;:::i;20567:129::-;20646:42;20635:54;20623:67;;20613:83::o;20701:318::-;;20782:5;20776:12;20809:6;20804:3;20797:19;20825:63;20881:6;20874:4;20869:3;20865:14;20858:4;20851:5;20847:16;20825:63;:::i;:::-;20933:2;20921:15;20938:66;20917:88;20908:98;;;;21008:4;20904:109;;20752:267;-1:-1:-1;;20752:267:89:o;21024:93::-;21101:1;21090:20;21078:33;;21068:49::o;21122:94::-;21200:8;21189:20;21177:33;;21167:49::o;21221:514::-;21509:2;21505:15;;;21414:66;21501:24;;;21489:37;;21564:3;21560:16;;;;21578:66;21556:89;21551:2;21542:12;;21535:111;21680:15;;21676:24;21671:2;21662:12;;21655:46;21726:2;21717:12;;21394:341::o;21740:273::-;;21923:6;21915;21910:3;21897:33;21949:16;;21974:15;;;21949:16;21887:126;-1:-1:-1;21887:126:89:o;22018:274::-;;22185:6;22179:13;22201:53;22247:6;22242:3;22235:4;22227:6;22223:17;22201:53;:::i;:::-;22270:16;;;;;22155:137;-1:-1:-1;;22155:137:89:o;22297:226::-;22473:42;22461:55;;;;22443:74;;22431:2;22416:18;;22398:125::o;22767:327::-;22951:42;23020:15;;;23002:34;;23072:15;;23067:2;23052:18;;23045:43;22929:2;22914:18;;22896:198::o;23099:593::-;;23342:42;23423:2;23415:6;23411:15;23400:9;23393:34;23477:6;23470:14;23463:22;23458:2;23447:9;23443:18;23436:50;23522:6;23517:2;23506:9;23502:18;23495:34;23577:2;23569:6;23565:15;23560:2;23549:9;23545:18;23538:43;;23618:3;23612;23601:9;23597:19;23590:32;23639:47;23681:3;23670:9;23666:19;23658:6;23639:47;:::i;:::-;23631:55;23322:370;-1:-1:-1;;;;;;;23322:370:89:o;23697:297::-;23901:42;23889:55;;;;23871:74;;23976:2;23961:18;;23954:34;23859:2;23844:18;;23826:168::o;23999:865::-;;24188:2;24228;24217:9;24213:18;24258:2;24247:9;24240:21;24281:6;24316;24310:13;24347:6;24339;24332:22;24385:2;24374:9;24370:18;24363:25;;24448:2;24442;24434:6;24430:15;24419:9;24415:31;24411:40;24397:54;;24486:2;24478:6;24474:15;24507:4;24520:315;24534:6;24531:1;24528:13;24520:315;;;24623:66;24611:9;24603:6;24599:22;24595:95;24590:3;24583:108;24714:41;24748:6;24739;24733:13;24714:41;:::i;:::-;24704:51;-1:-1:-1;24813:12:89;;;;24778:15;;;;24556:1;24549:9;24520:315;;;-1:-1:-1;24852:6:89;;24168:696;-1:-1:-1;;;;;;;24168:696:89:o;24869:219::-;;25016:2;25005:9;24998:21;25036:46;25078:2;25067:9;25063:18;25055:6;25036:46;:::i;25093:239::-;25242:2;25227:18;;25275:1;25264:13;;25254:2;;25281:9;25254:2;25301:25;;;25209:123;:::o;25563:326::-;25765:2;25747:21;;;25804:1;25784:18;;;25777:29;25842:5;25837:2;25822:18;;25815:33;25880:2;25865:18;;25737:152::o;25894:326::-;26096:2;26078:21;;;26135:1;26115:18;;;26108:29;26173:5;26168:2;26153:18;;26146:33;26211:2;26196:18;;26068:152::o;26225:342::-;26427:2;26409:21;;;26466:2;26446:18;;;26439:30;26505:20;26500:2;26485:18;;26478:48;26558:2;26543:18;;26399:168::o;26572:325::-;26774:2;26756:21;;;26813:1;26793:18;;;26786:29;26851:4;26846:2;26831:18;;26824:32;26888:2;26873:18;;26746:151::o;26902:343::-;27104:2;27086:21;;;27143:2;27123:18;;;27116:30;27182:21;27177:2;27162:18;;27155:49;27236:2;27221:18;;27076:169::o;27250:582::-;;27466:3;27455:9;27451:19;27443:27;;27503:6;27497:13;27486:9;27479:32;27567:4;27559:6;27555:17;27549:24;27542:4;27531:9;27527:20;27520:54;27630:4;27622:6;27618:17;27612:24;27605:4;27594:9;27590:20;27583:54;27693:4;27685:6;27681:17;27675:24;27668:4;27657:9;27653:20;27646:54;27756:4;27748:6;27744:17;27738:24;27731:4;27720:9;27716:20;27709:54;27819:4;27811:6;27807:17;27801:24;27794:4;27783:9;27779:20;27772:54;27433:399;;;;:::o;27837:1234::-;;28027:3;28016:9;28012:19;28004:27;;28040:46;28076:9;28067:6;28061:13;28040:46;:::i;:::-;28133:4;28125:6;28121:17;28115:24;28148:56;28198:4;28187:9;28183:20;28169:12;28148:56;:::i;:::-;;28253:4;28245:6;28241:17;28235:24;28268:57;28319:4;28308:9;28304:20;28288:14;28268:57;:::i;:::-;;28374:4;28366:6;28362:17;28356:24;28389:56;28439:4;28428:9;28424:20;28408:14;28389:56;:::i;:::-;;28494:4;28486:6;28482:17;28476:24;28509:56;28559:4;28548:9;28544:20;28528:14;28509:56;:::i;:::-;;28621:4;28613:6;28609:17;28603:24;28596:4;28585:9;28581:20;28574:54;28684:4;28676:6;28672:17;28666:24;28659:4;28648:9;28644:20;28637:54;28747:4;28739:6;28735:17;28729:24;28722:4;28711:9;28707:20;28700:54;28773:6;28833:2;28825:6;28821:15;28815:22;28810:2;28799:9;28795:18;28788:50;;28857:6;28912:2;28904:6;28900:15;28894:22;28925:56;28977:2;28966:9;28962:18;28946:14;28925:56;:::i;:::-;-1:-1:-1;;29000:6:89;29048:15;;;29042:22;29022:18;;;;29015:50;27994:1077;:::o;29076:497::-;;29273:2;29262:9;29255:21;29311:6;29305:13;29354:4;29349:2;29338:9;29334:18;29327:32;29382:52;29430:2;29419:9;29415:18;29401:12;29382:52;:::i;:::-;29368:66;;29500:42;29494:2;29486:6;29482:15;29476:22;29472:71;29465:4;29454:9;29450:20;29443:101;29561:6;29553:14;;;29245:328;;;;:::o;29578:189::-;29753:6;29741:19;;;;29723:38;;29711:2;29696:18;;29678:89::o;29772:177::-;29918:25;;;29906:2;29891:18;;29873:76::o;29954:483::-;;30185:6;30174:9;30167:25;30228:6;30223:2;30212:9;30208:18;30201:34;30283:42;30275:6;30271:55;30266:2;30255:9;30251:18;30244:83;30363:3;30358:2;30347:9;30343:18;30336:31;30384:47;30426:3;30415:9;30411:19;30403:6;30384:47;:::i;30442:592::-;;;30585:11;30572:25;30675:66;30664:8;30648:14;30644:29;30640:102;30620:18;30616:127;30606:2;;30760:4;30754;30747:18;30606:2;30790:33;;30842:20;;;-1:-1:-1;30885:18:89;30874:30;;30871:2;;;30920:4;30914;30907:18;30871:2;30956:4;30944:17;;-1:-1:-1;30987:14:89;30983:27;;;30973:38;;30970:2;;;31024:1;31021;31014:12;31039:242;31109:2;31103:9;31139:17;;;31186:18;31171:34;;31207:22;;;31168:62;31165:2;;;31233:9;31165:2;31260;31253:22;31083:198;;-1:-1:-1;31083:198:89:o;31286:181::-;;31383:18;31375:6;31372:30;31369:2;;;31405:9;31369:2;-1:-1:-1;31456:4:89;31437:17;;;31433:28;;31359:108::o;31472:240::-;;31555:18;31547:6;31544:30;31541:2;;;31577:9;31541:2;-1:-1:-1;31625:4:89;31613:17;31632:66;31609:90;31701:4;31605:101;;31531:181::o;31717:258::-;31789:1;31799:113;31813:6;31810:1;31807:13;31799:113;;;31889:11;;;31883:18;31870:11;;;31863:39;31835:2;31828:10;31799:113;;;31930:6;31927:1;31924:13;31921:2;;;-1:-1:-1;;31965:1:89;31947:16;;31940:27;31770:205::o;31980:156::-;32068:42;32061:5;32057:54;32050:5;32047:65;32037:2;;32126:1;32123;32116:12;32141:120;32230:5;32227:1;32216:20;32209:5;32206:31;32196:2;;32251:1;32248;32241:12;32266:123;32353:10;32346:5;32342:22;32335:5;32332:33;32322:2;;32379:1;32376;32369:12;32394:116;32480:4;32473:5;32469:16;32462:5;32459:27;32449:2;;32500:1;32497;32490:12
Swarm Source
none
Loading...
Loading
OVERVIEW
This is the SpookySwap SwapRouter02 V1.3.1.Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.