ERC-20
Overview
Max Total Supply
2.990215591285242435 ERC20 ***
Holders
8
Market
Price
$0.00 @ 0.000000 S
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xC225FA4e...76b9E4dFE The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Hypervisor
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: BUSL-1.1pragma solidity 0.7.6;import "@openzeppelin/contracts/math/Math.sol";import "@openzeppelin/contracts/math/SafeMath.sol";import "@openzeppelin/contracts/math/SignedSafeMath.sol";import "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";import "@openzeppelin/contracts/drafts/ERC20Permit.sol";import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";import "@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3MintCallback.sol";import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol";import "@uniswap/v3-core/contracts/libraries/TickMath.sol";import "@uniswap/v3-core/contracts/libraries/FullMath.sol";import "@uniswap/v3-periphery/contracts/libraries/LiquidityAmounts.sol";/// @title Hypervisor v1.3/// @notice A Uniswap V2-like interface with fungible liquidity to Uniswap V3/// which allows for arbitrary liquidity provision: one-sided, lop-sided, and balancedcontract Hypervisor is IUniswapV3MintCallback, ERC20Permit, ReentrancyGuard {using SafeERC20 for IERC20;using SafeMath for uint256;using SignedSafeMath for int256;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <0.8.0;import "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev Initializes the contract setting the deployer as the initial owner.*/constructor () internal {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <0.8.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: 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.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: MITpragma solidity >=0.6.0 <0.8.0;/*** @dev Standard math utilities missing in the Solidity language.*/library Math {/*** @dev Returns the largest of two numbers.*/function max(uint256 a, uint256 b) internal pure returns (uint256) {return a >= b ? a : b;}/*** @dev Returns the smallest of two numbers.*/function min(uint256 a, uint256 b) internal pure returns (uint256) {return a < b ? a : b;}/*** @dev Returns the average of two numbers. The result is rounded towards* zero.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <0.8.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.6.0 <0.8.0;/*** @title SignedSafeMath* @dev Signed math operations with safety checks that revert on error.*/library SignedSafeMath {int256 constant private _INT256_MIN = -2**255;/*** @dev Returns the multiplication of two signed integers, reverting on* overflow.** Counterpart to Solidity's `*` operator.** Requirements:** - Multiplication cannot overflow.*/function mul(int256 a, int256 b) internal pure returns (int256) {// Gas optimization: this is cheaper than requiring 'a' not being zero, but the// benefit is lost if 'b' is also tested.// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522if (a == 0) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <0.8.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
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <0.8.0;/*** @dev Interface of the ERC20 standard as defined in the EIP.*/interface IERC20 {/*** @dev Returns the amount of tokens in existence.*/function totalSupply() external view returns (uint256);/*** @dev Returns the amount of tokens owned by `account`.*/function balanceOf(address account) external view returns (uint256);/*** @dev Moves `amount` tokens from the caller's account to `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: MITpragma solidity >=0.6.0 <0.8.0;import "./IERC20.sol";import "../../math/SafeMath.sol";import "../../utils/Address.sol";/*** @title SafeERC20* @dev Wrappers around ERC20 operations that throw on failure (when the token* contract returns false). Tokens that return no value (and instead revert or* throw on failure) are also supported, non-reverting calls are assumed to be* successful.* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.*/library SafeERC20 {using SafeMath for uint256;using Address for address;function safeTransfer(IERC20 token, address to, uint256 value) internal {_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));}function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.6.2 <0.8.0;/*** @dev Collection of functions related to the address type*/library Address {/*** @dev Returns true if `account` is a contract.** [IMPORTANT]* ====* It is unsafe to assume that an address for which this function returns* false is an externally-owned account (EOA) and not a contract.** Among others, `isContract` will return false for the following* types of addresses:** - an externally-owned account* - a contract in construction* - an address where a contract will be created* - an address where a contract lived, but was destroyed* ====*/function isContract(address account) internal view returns (bool) {
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.6.0 <0.8.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.0 <0.8.0;/*** @dev Contract module that helps prevent reentrant calls to a function.** Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier* available, which can be applied to functions to make sure there are no nested* (reentrant) calls to them.** Note that because there is a single `nonReentrant` guard, functions marked as* `nonReentrant` may not call one another. This can be worked around by making* those functions `private`, and then adding `external` `nonReentrant` entry* points to them.** TIP: If you would like to learn more about reentrancy and alternative ways* to protect against it, check out our blog post* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].*/abstract contract ReentrancyGuard {// Booleans are more expensive than uint256 or any type that takes up a full// word because each write operation emits an extra SLOAD to first read the// slot's contents, replace the bits taken up by the boolean, and then write// back. This is the compiler's defense against contract upgrades and// pointer aliasing, and it cannot be disabled.
123456789101112131415161718// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Callback for IUniswapV3PoolActions#mint/// @notice Any contract that calls IUniswapV3PoolActions#mint must implement this interfaceinterface IUniswapV3MintCallback {/// @notice Called to `msg.sender` after minting liquidity to a position from IUniswapV3Pool#mint./// @dev In the implementation you must pay the pool tokens owed for the minted liquidity./// The caller of this method must be checked to be a UniswapV3Pool deployed by the canonical UniswapV3Factory./// @param amount0Owed The amount of token0 due to the pool for the minted liquidity/// @param amount1Owed The amount of token1 due to the pool for the minted liquidity/// @param data Any data passed through by the caller via the IUniswapV3PoolActions#mint callfunction uniswapV3MintCallback(uint256 amount0Owed,uint256 amount1Owed,bytes calldata data) external;}
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;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title Minimal ERC20 interface for Uniswap/// @notice Contains a subset of the full ERC20 interface that is used in Uniswap V3interface IERC20Minimal {/// @notice Returns the balance of a token/// @param account The account for which to look up the number of tokens it has, i.e. its balance/// @return The number of tokens held by the accountfunction balanceOf(address account) external view returns (uint256);/// @notice Transfers the amount of token from the `msg.sender` to the recipient/// @param recipient The account that will receive the amount transferred/// @param amount The number of tokens to send from the sender to the recipient/// @return Returns true for a successful transfer, false for an unsuccessful transferfunction transfer(address recipient, uint256 amount) external returns (bool);/// @notice Returns the current allowance given to a spender by an owner/// @param owner The account of the token owner/// @param spender The account of the token spender/// @return The current allowance granted by `owner` to `spender`function allowance(address owner, address spender) external view returns (uint256);/// @notice Sets the allowance of a spender from the `msg.sender` to the value `amount`/// @param spender The account which will be allowed to spend a given amount of the owners tokens/// @param amount The amount of tokens allowed to be used by `spender`
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;/// @title The interface for the Uniswap V3 Factory/// @notice The Uniswap V3 Factory facilitates creation of Uniswap V3 pools and control over the protocol feesinterface IUniswapV3Factory {/// @notice Emitted when the owner of the factory is changed/// @param oldOwner The owner before the owner was changed/// @param newOwner The owner after the owner was changedevent OwnerChanged(address indexed oldOwner, address indexed newOwner);/// @notice Emitted when a pool is created/// @param token0 The first token of the pool by address sort order/// @param token1 The second token of the pool by address sort order/// @param fee The fee collected upon every swap in the pool, denominated in hundredths of a bip/// @param tickSpacing The minimum number of ticks between initialized ticks/// @param pool The address of the created poolevent PoolCreated(address indexed token0,address indexed token1,uint24 indexed fee,int24 tickSpacing,address pool);/// @notice Emitted when a new fee amount is enabled for pool creation via the factory
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.5.0;/// @title An interface for a contract that is capable of deploying Uniswap V3 Pools/// @notice A contract that constructs a pool must implement this to pass arguments to the pool/// @dev This is used to avoid having constructor arguments in the pool contract, which results in the init code hash/// of the pool being constant allowing the CREATE2 address of the pool to be cheaply computed on-chaininterface IUniswapV3PoolDeployer {/// @notice Get the parameters to be used in constructing the pool, set transiently during pool creation./// @dev Called by the pool constructor to fetch the parameters of the pool/// Returns factory The factory address/// Returns token0 The first token of the pool by address sort order/// Returns token1 The second token of the pool by address sort order/// Returns fee The fee collected upon every swap in the pool, denominated in hundredths of a bip/// Returns tickSpacing The minimum number of ticks between initialized ticksfunction parameters()externalviewreturns (address factory,address token0,address token1,uint24 fee,int24 tickSpacing);}
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,
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 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-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.
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 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,
12345678910// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.4.0;/// @title FixedPoint96/// @notice A library for handling binary fixed point numbers, see https://en.wikipedia.org/wiki/Q_(number_format)/// @dev Used in SqrtPriceMath.sollibrary FixedPoint96 {uint8 internal constant RESOLUTION = 96;uint256 internal constant Q96 = 0x1000000000000000000000000;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.4.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.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.5.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');
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 ISwapRouter is IUniswapV3SwapCallback {struct ExactInputSingleParams {address tokenIn;address tokenOut;uint24 fee;address recipient;uint256 deadline;uint256 amountIn;uint256 amountOutMinimum;uint160 sqrtPriceLimitX96;}/// @notice Swaps `amountIn` of one token for as much as possible of another token/// @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);struct ExactInputParams {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.5.0;import '@uniswap/v3-core/contracts/libraries/FullMath.sol';import '@uniswap/v3-core/contracts/libraries/FixedPoint96.sol';/// @title Liquidity amount functions/// @notice Provides functions for computing liquidity amounts from token amounts and priceslibrary LiquidityAmounts {/// @notice Downcasts uint256 to uint128/// @param x The uint258 to be downcasted/// @return y The passed value, downcasted to uint128function toUint128(uint256 x) private pure returns (uint128 y) {require((y = uint128(x)) == x);}/// @notice Computes the amount of liquidity received for a given amount of token0 and price range/// @dev Calculates amount0 * (sqrt(upper) * sqrt(lower)) / (sqrt(upper) - sqrt(lower))/// @param sqrtRatioAX96 A sqrt price representing the first tick boundary/// @param sqrtRatioBX96 A sqrt price representing the second tick boundary/// @param amount0 The amount0 being sent in/// @return liquidity The amount of returned liquidityfunction getLiquidityForAmount0(uint160 sqrtRatioAX96,uint160 sqrtRatioBX96,uint256 amount0
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: BUSL-1.1pragma solidity 0.7.6;import "@openzeppelin/contracts/math/Math.sol";import "@openzeppelin/contracts/math/SafeMath.sol";import "@openzeppelin/contracts/math/SignedSafeMath.sol";import "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";import "@openzeppelin/contracts/drafts/ERC20Permit.sol";import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";import "@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3MintCallback.sol";import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol";import "@uniswap/v3-core/contracts/libraries/TickMath.sol";import "@uniswap/v3-core/contracts/libraries/FullMath.sol";import "@uniswap/v3-periphery/contracts/libraries/LiquidityAmounts.sol";/// @title TokeHypervisor/// @notice A Uniswap V2-like interface with fungible liquidity to Uniswap V3/// which allows for arbitrary liquidity provision: one-sided, lop-sided, and balancedcontract TokeHypervisor is IUniswapV3MintCallback, ERC20Permit, ReentrancyGuard {using SafeERC20 for IERC20;using SafeMath for uint256;using SignedSafeMath for int256;IUniswapV3Pool public pool;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSEDpragma solidity =0.7.6;import {IUniswapV3Factory} from '@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol';import {Ownable} from '@openzeppelin/contracts/access/Ownable.sol';import {TokeHypervisor} from './TokeHypervisor.sol';/// @title TokeHypervisorFactorycontract TokeHypervisorFactory is Ownable {IUniswapV3Factory public uniswapV3Factory;mapping(address => mapping(address => mapping(uint24 => address))) public getHypervisor; // toke0, token1, fee -> hypervisor addressaddress[] public allHypervisors;event HypervisorCreated(address token0, address token1, uint24 fee, address hypervisor, uint256);constructor(address _uniswapV3Factory) {require(_uniswapV3Factory != address(0), "uniswapV3Factory should be non-zero");uniswapV3Factory = IUniswapV3Factory(_uniswapV3Factory);}/// @notice Get the number of hypervisors created/// @return Number of hypervisors createdfunction allHypervisorsLength() external view returns (uint256) {
1234567891011121314151617181920212223242526/// SPDX-License-Identifier: BUSL-1.1pragma solidity 0.7.6;pragma abicoder v2;import "./interfaces/IHypervisor.sol";import "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";import "@uniswap/v3-core/contracts/libraries/FullMath.sol";import "@openzeppelin/contracts/math/SafeMath.sol";import "@openzeppelin/contracts/math/SignedSafeMath.sol";import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";import "@uniswap/v3-core/contracts/libraries/TickMath.sol";/// @title Clearing v1.2.3/// @notice Proxy contract for hypervisor positions managementcontract Clearing is ReentrancyGuard {using SafeERC20 for IERC20;using SafeMath for uint256;using SignedSafeMath for int256;string constant VERSION = '1.2.3';address public owner;mapping(address => Position) public positions;bool public twapCheck = true;uint32 public twapInterval = 3600;
1234567891011121314151617181920212223242526/// SPDX-License-Identifier: BUSL-1.1pragma solidity 0.7.6;pragma abicoder v2;import "./interfaces/IHypervisor.sol";import "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";import "@uniswap/v3-core/contracts/libraries/FullMath.sol";import "@openzeppelin/contracts/math/SafeMath.sol";import "@openzeppelin/contracts/math/SignedSafeMath.sol";import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";import "@uniswap/v3-core/contracts/libraries/TickMath.sol";/// @title Clearing v2/// @notice Proxy contract for hypervisor positions managementcontract ClearingV2 is ReentrancyGuard {using SafeERC20 for IERC20;using SafeMath for uint256;using SignedSafeMath for int256;string constant VERSION = '2.0.0';address public owner;bool public paused;mapping(address => Position) public positions;bool public twapCheck = true;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: Unlicensepragma solidity 0.7.6;pragma abicoder v2;import "@openzeppelin/contracts/math/SafeMath.sol";import "@openzeppelin/contracts/token/ERC20/ERC20.sol";import "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";import "@uniswap/v3-core/contracts/libraries/TickMath.sol";import "@uniswap/v3-periphery/contracts/interfaces/ISwapRouter.sol";contract FeeRecipient {using SafeERC20 for IERC20;using SafeMath for uint256;address public owner;address public feeManager;address public recipient1;address public recipient2;event Send(address token, address recipient, uint256 amount);constructor(
1234567891011121314151617181920212223242526pragma solidity 0.7.6;import "@openzeppelin/contracts/math/SafeMath.sol";import "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";contract FeeRecipientV2 {using SafeERC20 for IERC20;using SafeMath for uint256;address public owner;address public feeManager;mapping(address => uint256) public recipientShares;address[] public recipients;event Send(address token, address recipient, uint256 amount);event RecipientAdded(address recipient, uint256 share);event RecipientRemoved(address recipient);event ShareUpdated(address recipient, uint256 share);event OwnershipTransferred(address oldOwner, address newOwner);event FeeManagerTransferred(address oldFeeManager, address newFeeManager);event RescueERC20(address token, address to, uint256 amount);constructor(address _owner, address _feeManager) {owner = _owner;feeManager = _feeManager;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSEDpragma solidity =0.7.6;import {IUniswapV3Factory} from '@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol';import {Ownable} from '@openzeppelin/contracts/access/Ownable.sol';import {Hypervisor} from './Hypervisor.sol';/// @title HypervisorFactorycontract HypervisorFactory is Ownable {IUniswapV3Factory public uniswapV3Factory;mapping(address => mapping(address => mapping(uint24 => address))) public getHypervisor; // toke0, token1, fee -> hypervisor addressaddress[] public allHypervisors;event HypervisorCreated(address token0, address token1, uint24 fee, address hypervisor, uint256);constructor(address _uniswapV3Factory) {require(_uniswapV3Factory != address(0), "uniswapV3Factory should be non-zero");uniswapV3Factory = IUniswapV3Factory(_uniswapV3Factory);}/// @notice Get the number of hypervisors created/// @return Number of hypervisors createdfunction allHypervisorsLength() external view returns (uint256) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-3.0-onlypragma solidity 0.7.6;pragma abicoder v2;import "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol";interface IHypervisor {function deposit(uint256,uint256,address,address,uint256[4] memory minIn) external returns (uint256);function withdraw(uint256,address,address,uint256[4] memory) external returns (uint256, uint256);function compound() external returns (
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSEDpragma solidity =0.7.6;import {IUniswapV3Pool} from '@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol';import {IUniswapV3Factory} from '@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol';import {IUniswapV3MintCallback} from '@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3MintCallback.sol';import {IUniswapV3SwapCallback} from '@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.sol';import {IERC20Minimal} from '@uniswap/v3-core/contracts/interfaces/IERC20Minimal.sol';import {IUniswapV3PoolDeployer} from '@uniswap/v3-core/contracts/interfaces/IUniswapV3PoolDeployer.sol';import {TickMath} from '@uniswap/v3-core/contracts/libraries/TickMath.sol';import {LowGasSafeMath} from '@uniswap/v3-core/contracts/libraries/LowGasSafeMath.sol';import {TransferHelper} from '@uniswap/v3-periphery/contracts/libraries/TransferHelper.sol';import {LiquidityAmounts} from '@uniswap/v3-periphery/contracts/libraries/LiquidityAmounts.sol';contract MockUniswapV3Pool is IUniswapV3MintCallback, IUniswapV3SwapCallback, IERC20Minimal {using LowGasSafeMath for uint256;address public immutable token0;address public immutable token1;uint24 public fee;int24 public tickSpacing;IUniswapV3Pool public currentPool;IUniswapV3Factory public immutable uniswapFactory;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSEDpragma solidity =0.7.6;import {IUniswapV3PoolDeployer} from '@uniswap/v3-core/contracts/interfaces/IUniswapV3PoolDeployer.sol';import {MockUniswapV3Pool} from './MockUniswapV3Pool.sol';contract MockUniswapV3PoolDeployer is IUniswapV3PoolDeployer {struct Parameters {address factory;address token0;address token1;uint24 fee;int24 tickSpacing;}Parameters public override parameters;event PoolDeployed(address pool);function deploy(address factory,address token0,address token1,uint24 fee,int24 tickSpacing) external returns (address pool) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSEDpragma solidity =0.7.6;import {IERC20Minimal} from '@uniswap/v3-core/contracts/interfaces/IERC20Minimal.sol';contract TestERC20 is IERC20Minimal {mapping(address => uint256) public override balanceOf;mapping(address => mapping(address => uint256)) public override allowance;constructor(uint256 amountToMint) {mint(msg.sender, amountToMint);}function mint(address to, uint256 amount) public {uint256 balanceNext = balanceOf[to] + amount;require(balanceNext >= amount, 'overflow balance');balanceOf[to] = balanceNext;}function transfer(address recipient, uint256 amount) external override returns (bool) {uint256 balanceBefore = balanceOf[msg.sender];require(balanceBefore >= amount, 'insufficient balance');balanceOf[msg.sender] = balanceBefore - amount;uint256 balanceRecipient = balanceOf[recipient];require(balanceRecipient + amount >= balanceRecipient, 'recipient balance overflow');
1234567891011121314151617181920212223242526// SPDX-License-Identifier: BUSL-1.1pragma solidity 0.7.6;import "../interfaces/IHypervisor.sol";import "@openzeppelin/contracts/token/ERC20/IERC20.sol";/// @title Admincontract Admin {address public admin;bool public ownerFixed = false;mapping(address => address) public rebalancers;mapping(address => address) public advisors;modifier onlyAdmin {require(msg.sender == admin, "only admin");_;}modifier onlyAdvisor(address hypervisor) {require(msg.sender == advisors[hypervisor], "only advisor");_;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: BUSL-1.1pragma solidity 0.7.6;import "../interfaces/IHypervisor.sol";import "@openzeppelin/contracts/math/SignedSafeMath.sol";import "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";import "@uniswap/v3-core/contracts/libraries/FullMath.sol";import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol";import "@uniswap/v3-core/contracts/libraries/TickMath.sol";import "@uniswap/v3-periphery/contracts/libraries/LiquidityAmounts.sol";contract AutoRebal {using SafeMath for uint256;address public admin;address public advisor;address public feeRecipient;IUniswapV3Pool public pool;IHypervisor public hypervisor;int24 public limitWidth = 1;modifier onlyAdvisor {require(msg.sender == advisor, "only advisor");_;
1234567891011121314151617181920212223242526pragma solidity 0.7.6;import "@openzeppelin/contracts/math/SafeMath.sol";import "@openzeppelin/contracts/math/SignedSafeMath.sol";import "./interfaces/IHypervisor.sol";import "./proxy/admin.sol";import "hardhat/console.sol";contract RebalanceProxy {using SignedSafeMath for int256;using SafeMath for uint256;address public owner;uint256 public maxTranslation = 300;uint256 public maxWidth = 300;uint256 public minInterval = 1;mapping(address => bool) public exempted;mapping(address => uint256) public customDiff;mapping(address => uint256) public customWidth;mapping(address => uint256) public customInterval;mapping(address => uint256) public lastRebalance;mapping(address => address) public rebalancers;mapping(address => address) public admins;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: Unlicensepragma solidity 0.7.6;pragma abicoder v2;import "@openzeppelin/contracts/math/SafeMath.sol";import "@openzeppelin/contracts/token/ERC20/ERC20.sol";import "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";import "@uniswap/v3-core/contracts/libraries/TickMath.sol";import "@uniswap/v3-periphery/contracts/interfaces/ISwapRouter.sol";contract Send {using SafeERC20 for IERC20;using SafeMath for uint256;address public owner;address public recipient1;address public recipient2;event Send(address token, address recipient, uint256 amount);constructor(address _owner,address _recipient1,
1234567891011121314151617181920212223242526// SPDX-License-Identifier: Unlicensepragma solidity 0.7.6;pragma abicoder v2;import "@openzeppelin/contracts/math/SafeMath.sol";import "@openzeppelin/contracts/token/ERC20/ERC20.sol";import "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";import "@uniswap/v3-core/contracts/libraries/TickMath.sol";import "@uniswap/v3-periphery/contracts/interfaces/ISwapRouter.sol";contract Swap {using SafeERC20 for IERC20;using SafeMath for uint256;address public owner;address public recipient;address public USDT = 0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9;ISwapRouter public router;event Swap(address token, address recipient, uint256 amountOut);event Send(address token, address recipient, uint256 amount);
12345678910111213141516pragma solidity ^0.7.6;import "@openzeppelin/contracts/access/Ownable.sol";import "@openzeppelin/contracts/token/ERC20/ERC20.sol";contract MintableToken is Ownable, ERC20 {constructor() public ERC20("ACCT", "ACCT") { }function mint(address account, uint256 amount) public onlyOwner {_mint(account, amount);}function burn(address account, uint256 amount) public onlyOwner {_burn(account, amount);}}
12345678910111213141516171819// SPDX-License-Identifier: Unlicensepragma solidity 0.7.6;import "@openzeppelin/contracts/token/ERC20/ERC20.sol";contract MockToken is ERC20 {constructor(string memory name,string memory symbol,uint8 decimals) ERC20(name, symbol) {_setupDecimals(decimals);}function mint(address account, uint256 amount) external {_mint(account, amount);}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: Unlicensepragma solidity 0.7.6;import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol";import "@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3MintCallback.sol";import "@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.sol";import "@uniswap/v3-core/contracts/libraries/TickMath.sol";/*** @title TestRouter* @dev DO NOT USE IN PRODUCTION. This is only intended to be used for* tests and lacks slippage and callback caller checks.*/contract TestRouter is IUniswapV3MintCallback, IUniswapV3SwapCallback {using SafeERC20 for IERC20;function mint(IUniswapV3Pool pool,int24 tickLower,int24 tickUpper,uint128 amount) external returns (uint256, uint256) {int24 tickSpacing = pool.tickSpacing();
1234567891011121314151617181920212223242526/// SPDX-License-Identifier: BUSL-1.1pragma solidity 0.7.6;pragma abicoder v2;import "./interfaces/IHypervisor.sol";import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";interface IClearing {function clearDeposit(uint256 deposit0,uint256 deposit1,address from,address to,address pos,uint256[4] memory minIn) external view returns (bool cleared);function clearShares(address pos,uint256 shares) external view returns (bool cleared);function getDepositAmount(address pos,
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.4.22 <0.9.0;library console {address constant CONSOLE_ADDRESS =0x000000000000000000636F6e736F6c652e6c6f67;function _sendLogPayloadImplementation(bytes memory payload) internal view {address consoleAddress = CONSOLE_ADDRESS;/// @solidity memory-safe-assemblyassembly {pop(staticcall(gas(),consoleAddress,add(payload, 32),mload(payload),0,0))}}function _castToPure(function(bytes memory) internal view fnIn
123456789101112131415161718{"optimizer": {"enabled": true,"runs": 800},"metadata": {"bytecodeHash": "none"},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","abi"]}}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_pool","type":"address"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"int24","name":"tick","type":"int24"},{"indexed":false,"internalType":"uint256","name":"totalAmount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalAmount1","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feeAmount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feeAmount1","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"Rebalance","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"newFee","type":"uint8"}],"name":"SetFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Withdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"fee","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"fees0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"fees1","type":"uint256"}],"name":"ZeroBurn","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRECISION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"},{"internalType":"uint256[2]","name":"inMin","type":"uint256[2]"}],"name":"addLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseLower","outputs":[{"internalType":"int24","name":"","type":"int24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUpper","outputs":[{"internalType":"int24","name":"","type":"int24"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[4]","name":"inMin","type":"uint256[4]"}],"name":"compound","outputs":[{"internalType":"uint128","name":"baseToken0Owed","type":"uint128"},{"internalType":"uint128","name":"baseToken1Owed","type":"uint128"},{"internalType":"uint128","name":"limitToken0Owed","type":"uint128"},{"internalType":"uint128","name":"limitToken1Owed","type":"uint128"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentTick","outputs":[{"internalType":"int24","name":"tick","type":"int24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"deposit0","type":"uint256"},{"internalType":"uint256","name":"deposit1","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256[4]","name":"inMin","type":"uint256[4]"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deposit0Max","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposit1Max","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"directDeposit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBasePosition","outputs":[{"internalType":"uint128","name":"liquidity","type":"uint128"},{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLimitPosition","outputs":[{"internalType":"uint128","name":"liquidity","type":"uint128"},{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalAmounts","outputs":[{"internalType":"uint256","name":"total0","type":"uint256"},{"internalType":"uint256","name":"total1","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitLower","outputs":[{"internalType":"int24","name":"","type":"int24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitUpper","outputs":[{"internalType":"int24","name":"","type":"int24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","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":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pool","outputs":[{"internalType":"contract IUniswapV3Pool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"uint128","name":"shares","type":"uint128"},{"internalType":"uint256[2]","name":"amountMin","type":"uint256[2]"}],"name":"pullLiquidity","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"int24","name":"_baseLower","type":"int24"},{"internalType":"int24","name":"_baseUpper","type":"int24"},{"internalType":"int24","name":"_limitLower","type":"int24"},{"internalType":"int24","name":"_limitUpper","type":"int24"},{"internalType":"address","name":"_feeRecipient","type":"address"},{"internalType":"uint256[4]","name":"inMin","type":"uint256[4]"},{"internalType":"uint256[4]","name":"outMin","type":"uint256[4]"}],"name":"rebalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"newFee","type":"uint8"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tickSpacing","outputs":[{"internalType":"int24","name":"","type":"int24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleDirectDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token0","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token1","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"uniswapV3MintCallback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistedAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256[4]","name":"minAmounts","type":"uint256[4]"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101406040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c961012052600a805460ff60a01b1916600160a01b1790553480156200004a57600080fd5b5060405162004dfe38038062004dfe833981810160405260808110156200007057600080fd5b815160208301516040808501805191519395929483019291846401000000008211156200009c57600080fd5b908301906020820185811115620000b257600080fd5b8251640100000000811182820188101715620000cd57600080fd5b82525081516020918201929091019080838360005b83811015620000fc578181015183820152602001620000e2565b50505050905090810190601f1680156200012a5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200014e57600080fd5b9083019060208201858111156200016457600080fd5b82516401000000008111828201881017156200017f57600080fd5b82525081516020918201929091019080838360005b83811015620001ae57818101518382015260200162000194565b50505050905090810190601f168015620001dc5780820380516001836020036101000a031916815260200191505b506040525050508180604051806040016040528060018152602001603160f81b815250848481600390805190602001906200021992919062000575565b5080516200022f90600490602084019062000575565b50506005805460ff1916601217905550815160208084019190912082519183019190912060c082905260e08190527f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f620002886200050d565b60a0526200029881848462000511565b60805261010052505060016007555050506001600160a01b038416620002bd57600080fd5b6001600160a01b038316620002d157600080fd5b600880546001600160a01b0319166001600160a01b03868116919091179182905560408051630dfe168160e01b815290519290911691630dfe168191600480820192602092909190829003018186803b1580156200032e57600080fd5b505afa15801562000343573d6000803e3d6000fd5b505050506040513d60208110156200035a57600080fd5b5051600980546001600160a01b0319166001600160a01b039283161790556008546040805163d21220a760e01b81529051919092169163d21220a7916004808301926020929190829003018186803b158015620003b657600080fd5b505afa158015620003cb573d6000803e3d6000fd5b505050506040513d6020811015620003e257600080fd5b5051600a80546001600160a01b0319166001600160a01b03928316179055600954166200040e57600080fd5b600a546001600160a01b03166200042457600080fd5b600860009054906101000a90046001600160a01b03166001600160a01b031663d0c93a7c6040518163ffffffff1660e01b815260040160206040518083038186803b1580156200047357600080fd5b505afa15801562000488573d6000803e3d6000fd5b505050506040513d60208110156200049f57600080fd5b5051600a805460029290920b62ffffff16600160a81b0262ffffff60a81b199092169190911790555050600b80546001600160a01b03909216660100000000000002600160301b600160d01b0319909216919091179055506000600e55600019600c819055600d5562000621565b4690565b6000838383620005206200050d565b3060405160200180868152602001858152602001848152602001838152602001826001600160a01b03168152602001955050505050506040516020818303038152906040528051906020012090509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620005ad5760008555620005f8565b82601f10620005c857805160ff1916838001178555620005f8565b82800160010185558215620005f8579182015b82811115620005f8578251825591602001919060010190620005db565b50620006069291506200060a565b5090565b5b808211156200060657600081556001016200060b565b60805160a05160c05160e05161010051610120516147936200066b6000398061259e525080612b17525080612b59525080612b38525080612abe525080612aee52506147936000f3fe608060405234801561001057600080fd5b50600436106103155760003560e01c806386a29081116101a7578063c4a7761e116100ee578063d348799711610097578063ddca3f4311610071578063ddca3f4314610a68578063f2fde38b14610a70578063fa08274314610a9657610315565b8063d34879971461096d578063d505accf146109e9578063dd62ed3e14610a3a57610315565b8063d0c93a7c116100c8578063d0c93a7c14610955578063d21220a71461095d578063d2eabcfc1461096557610315565b8063c4a7761e14610925578063c5241e291461092d578063cb122a091461093557610315565b8063a049de6b11610150578063a9059cbb1161012a578063a9059cbb146108e9578063aaf5eb6814610915578063b1a3d5331461091d57610315565b8063a049de6b14610822578063a457c2d714610852578063a85598721461087e57610315565b80638e3c92e4116101815780638e3c92e414610723578063952356561461079457806395d89b411461081a57610315565b806386a290811461070b578063888a9134146107135780638da5cb5b1461071b57610315565b8063395093511161026b578063648cab85116102145780637ecebe00116101ee5780637ecebe0014610612578063854cff2f1461063857806385919c5d1461065e57610315565b8063648cab85146105dc5780636d90a39c146105e457806370a08231146105ec57610315565b8063513ea88411610245578063513ea884146104e457806351e87af71461056a57806363e968361461057257610315565b806339509351146104a857806346904840146104d45780634d461fbb146104dc57610315565b806316f0115b116102cd5780632ab4d052116102a75780632ab4d0521461047a578063313ce567146104825780633644e515146104a057610315565b806316f0115b1461042257806318160ddd1461042a57806323b872dd1461044457610315565b8063095ea7b3116102fe578063095ea7b3146103b65780630dfe1681146103f65780630f35bcac1461041a57610315565b8063065e53601461031a57806306fdde0314610339575b600080fd5b610322610a9e565b6040805160029290920b8252519081900360200190f35b610341610b17565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561037b578181015183820152602001610363565b50505050905090810190601f1680156103a85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103e2600480360360408110156103cc57600080fd5b506001600160a01b038135169060200135610bae565b604080519115158252519081900360200190f35b6103fe610bcc565b604080516001600160a01b039092168252519081900360200190f35b610322610bdb565b6103fe610beb565b610432610bfa565b60408051918252519081900360200190f35b6103e26004803603606081101561045a57600080fd5b506001600160a01b03813581169160208101359091169060400135610c00565b610432610c88565b61048a610c8e565b6040805160ff9092168252519081900360200190f35b610432610c97565b6103e2600480360360408110156104be57600080fd5b506001600160a01b038135169060200135610ca6565b6103fe610cf4565b610432610d03565b610536600480360360808110156104fa57600080fd5b8101908080608001906004806020026040519081016040528092919082600460200280828437600092019190915250919450610d099350505050565b604080516001600160801b039586168152938516602085015291841683830152909216606082015290519081900360800190f35b610322610f60565b6105da600480360360c081101561058857600080fd5b6040805180820182528335600290810b946020810135820b9484820135946060830135949183019360c0840192916080850191908390839080828437600092019190915250919450610f699350505050565b005b610432610ff6565b6103e2610ffc565b6104326004803603602081101561060257600080fd5b50356001600160a01b031661100c565b6104326004803603602081101561062857600080fd5b50356001600160a01b031661102b565b6105da6004803603602081101561064e57600080fd5b50356001600160a01b031661104c565b6105da60048036036101a081101561067557600080fd5b60408051608081810183528435600290810b956020810135820b9594810135820b94606082013590920b936001600160a01b03848301351693928201926101208301919060a0840190600490839083908082843760009201919091525050604080516080818101909252929594938181019392509060049083908390808284376000920191909152509194506110ce9350505050565b6103fe6116f3565b610322611702565b6103fe611712565b610432600480360361010081101561073a57600080fd5b60408051608081810183528435946020810135946001600160a01b03948201358516946060830135169390820192610100830191908084019060049083908390808284376000920191909152509194506117289350505050565b610801600480360360a08110156107aa57600080fd5b6040805180820182528335600290810b946020810135820b946001600160801b0385830135169490820193919260a0840192916060850191908390839080828437600092019190915250919450611bc59350505050565b6040805192835260208301919091528051918290030190f35b610341611c5d565b61082a611cbe565b604080516001600160801b039094168452602084019290925282820152519081900360600190f35b6103e26004803603604081101561086857600080fd5b506001600160a01b038135169060200135611d44565b610801600480360360e081101561089457600080fd5b60408051608081810183528435946001600160a01b036020820135811695948201351693810192909160e08301919060608401906004908390839080828437600092019190915250919450611dac9350505050565b6103e2600480360360408110156108ff57600080fd5b506001600160a01b03813516906020013561214e565b610432612162565b6105da612175565b6108016121e9565b6105da6122f9565b6105da6004803603602081101561094b57600080fd5b503560ff1661236b565b61032261241a565b6103fe61242a565b61082a612439565b6105da6004803603606081101561098357600080fd5b8135916020810135918101906060810160408201356401000000008111156109aa57600080fd5b8201836020820111156109bc57600080fd5b803590602001918460018302840111640100000000831117156109de57600080fd5b509092509050612495565b6105da600480360360e08110156109ff57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c0013561252f565b61043260048036036040811015610a5057600080fd5b506001600160a01b03813581169160200135166126e6565b61048a612711565b6105da60048036036020811015610a8657600080fd5b50356001600160a01b0316612721565b6103226127c8565b60085460408051633850c7bd60e01b815290516000926001600160a01b031691633850c7bd9160048083019260e0929190829003018186803b158015610ae357600080fd5b505afa158015610af7573d6000803e3d6000fd5b505050506040513d60e0811015610b0d57600080fd5b5060200151919050565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ba35780601f10610b7857610100808354040283529160200191610ba3565b820191906000526020600020905b815481529060010190602001808311610b8657829003601f168201915b505050505090505b90565b6000610bc2610bbb6127d8565b84846127dc565b5060015b92915050565b6009546001600160a01b031681565b600b546301000000900460020b81565b6008546001600160a01b031681565b60025490565b6000610c0d8484846128c8565b610c7d84610c196127d8565b610c78856040518060600160405280602881526020016146a6602891396001600160a01b038a16600090815260016020526040812090610c576127d8565b6001600160a01b031681526020810191909152604001600020549190612a23565b6127dc565b5060015b9392505050565b600e5481565b60055460ff1690565b6000610ca1612aba565b905090565b6000610bc2610cb36127d8565b84610c788560016000610cc46127d8565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612b84565b6010546001600160a01b031681565b600d5481565b600080600080600b60069054906101000a90046001600160a01b03166001600160a01b0316336001600160a01b031614610d77576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b610d7f612bde565b5050600a54600954604080516370a0823160e01b81523060048201529051600093610e9593600160c01b8204600290810b94600160d81b909304900b926001600160a01b03909116916370a08231916024808301926020929190829003018186803b158015610ded57600080fd5b505afa158015610e01573d6000803e3d6000fd5b505050506040513d6020811015610e1757600080fd5b5051600a54604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015610e6457600080fd5b505afa158015610e78573d6000803e3d6000fd5b505050506040513d6020811015610e8e57600080fd5b5051612c29565b600a548751919250610eca91600160c01b8204600290810b92600160d81b9004900b90849030908b60015b6020020151612ccf565b600b54600954604080516370a0823160e01b81523060048201529051610f2d93600281810b946301000000909204900b926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015610ded57600080fd5b600b546040880151919250610f5891600282810b9263010000009004900b90849030908b6003610ec0565b509193509193565b600b5460020b81565b600b54600160301b90046001600160a01b03163314610fbc576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b610fc68585612ea1565b506000610fd586868686612c29565b9050610fee868683308660006020020151876001610ec0565b505050505050565b600c5481565b601054600160a01b900460ff1681565b6001600160a01b0381166000908152602081905260409020545b919050565b6001600160a01b0381166000908152600660205260408120610bc690613218565b600b54600160301b90046001600160a01b0316331461109f576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600f805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60026007541415611126576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600755600b54600160301b90046001600160a01b0316331461117e576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b8560020b8760020b1280156111b05750600a54600160a81b9004600290810b810b9088900b816111aa57fe5b0760020b155b80156111d95750600a54600160a81b9004600290810b810b9087900b816111d357fe5b0760020b155b6111e257600080fd5b8360020b8560020b1280156112145750600a54600160a81b9004600290810b810b9086900b8161120e57fe5b0760020b155b801561123d5750600a54600160a81b9004600290810b810b9085900b8161123757fe5b0760020b155b61124657600080fd5b8560020b8460020b14158061126157508660020b8560020b14155b61126a57600080fd5b6001600160a01b03831661127d57600080fd5b6010805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385161790556112ad612bde565b5050600a54600090819081906112d890600160c01b8104600290810b91600160d81b9004900b61321c565b600b549295506001600160801b0391821694501691506000908190819061130d90600281810b9163010000009004900b61321c565b600a549295506001600160801b03918216945016915061135790600160c01b8104600290810b91600160d81b9004900b883060018c600060200201518d60015b60200201516132f7565b5050600b5461138790600281810b9163010000009004810b90869030906001908d905b60200201518d600361134d565b50507fbc4c20ad04f161d631d9ce94d27659391196415aa3c42f6a71c62e905ece782d6113b2610a9e565b600954604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156113fd57600080fd5b505afa158015611411573d6000803e3d6000fd5b505050506040513d602081101561142757600080fd5b5051600a54604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561147457600080fd5b505afa158015611488573d6000803e3d6000fd5b505050506040513d602081101561149e57600080fd5b50516114aa868a612b84565b6114b4868a612b84565b6114bc610bfa565b6040805160029790970b87526020870195909552858501939093526060850191909152608084015260a0830152519081900360c00190a18c600a60186101000a81548162ffffff021916908360020b62ffffff1602179055508b600a601b6101000a81548162ffffff021916908360020b62ffffff1602179055506115bc600a60189054906101000a900460020b600a601b9054906101000a900460020b600960009054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015610ded57600080fd5b600a5489519197506115eb91600160c01b8204600290810b92600160d81b9004900b90899030908d6001610ec0565b8a600b60006101000a81548162ffffff021916908360020b62ffffff16021790555089600b60036101000a81548162ffffff021916908360020b62ffffff1602179055506116b4600b60009054906101000a900460020b600b60039054906101000a900460020b600960009054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015610ded57600080fd5b600b5460408a01519194506116df91600282810b9263010000009004900b90869030908d6003610ec0565b505060016007555050505050505050505050565b600f546001600160a01b031681565b600a54600160d81b900460020b81565b600b54600160301b90046001600160a01b031681565b600060026007541415611782576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600755851515806117955750600085115b61179e57600080fd5b600c5486111580156117b25750600d548511155b6117bb57600080fd5b6001600160a01b038416158015906117dc57506001600160a01b0384163014155b611812576040805162461bcd60e51b8152602060048201526002602482015261746f60f01b604482015290519081900360640190fd5b600f546001600160a01b03163314611857576040805162461bcd60e51b815260206004820152600360248201526257484560e81b604482015290519081900360640190fd5b61185f612bde565b505060085460408051633850c7bd60e01b815290516000926001600160a01b031691633850c7bd9160048083019260e0929190829003018186803b1580156118a657600080fd5b505afa1580156118ba573d6000803e3d6000fd5b505050506040513d60e08110156118d057600080fd5b5051905060006119066118ec6001600160a01b03841680613545565b6ec097ce7bc90715b34b9f1000000000600160c01b61359e565b90506000806119136121e9565b909250905061194561193e6ec097ce7bc90715b34b9f10000000006119388d87613545565b9061364d565b8a90612b84565b9450891561196557600954611965906001600160a01b031688308d6136b4565b881561198357600a54611983906001600160a01b031688308c6136b4565b600061198d610bfa565b90508015611b0f5760006119b46ec097ce7bc90715b34b9f10000000006119388688613545565b90506119cd6119c38285612b84565b6119388985613545565b601054909750600160a01b900460ff1615611b0d57600a54600954604080516370a0823160e01b81523060048201529051600093611a4e93600160c01b8204600290810b94600160d81b909304900b926001600160a01b03909116916370a08231916024808301926020929190829003018186803b158015610ded57600080fd5b600a548a51919250611a7d91600160c01b8204600290810b92600160d81b9004900b90849030908e6001610ec0565b600b54600954604080516370a0823160e01b81523060048201529051611ae093600281810b946301000000909204900b926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015610ded57600080fd5b600b5460408b0151919250611b0b91600282810b9263010000009004900b90849030908e6003610ec0565b505b505b611b198987613723565b60408051878152602081018d90528082018c905290516001600160a01b03808c1692908b16917f4e2ca0515ed1aef1395f66b5303bb5d6f1bf9d61a353fa53f73f8ac9973fa9f69181900360600190a3600e541580611b7a5750600e548111155b611bb1576040805162461bcd60e51b81526020600482015260036024820152620dac2f60eb1b604482015290519081900360640190fd5b505060016007555091979650505050505050565b600b546000908190600160301b90046001600160a01b03163314611c1d576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b611c278686612ea1565b50611c508686611c418989896001600160801b0316613813565b8651309060009089600161134d565b9097909650945050505050565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ba35780601f10610b7857610100808354040283529160200191610ba3565b600b5460009081908190819081908190611ce690600281810b9163010000009004900b61321c565b600b549295509093509150611d0a90600281810b9163010000009004900b85613853565b9095509350611d22856001600160801b038416612b84565b9450611d37846001600160801b038316612b84565b9350829550505050909192565b6000610bc2611d516127d8565b84610c78856040518060600160405280602581526020016147626025913960016000611d7b6127d8565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612a23565b60008060026007541415611e07576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260075585611e5e576040805162461bcd60e51b815260206004820152600660248201527f7368617265730000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b038516611e9e576040805162461bcd60e51b8152602060048201526002602482015261746f60f01b604482015290519081900360640190fd5b611ea6612bde565b5050600a546000908190611ee490600160c01b8104600290810b91600160d81b9004900b611ed582828d613813565b88518b906000908b600161134d565b600b5491935091506000908190611f1a90600281810b9163010000009004900b611f0f82828f613813565b8c60008c600261137a565b915091506000611fc3611f2b610bfa565b6119388d600960009054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611f9157600080fd5b505afa158015611fa5573d6000803e3d6000fd5b505050506040513d6020811015611fbb57600080fd5b505190613545565b90506000612038611fd2610bfa565b6119388e600a60009054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611f9157600080fd5b9050811561205757600954612057906001600160a01b03168c846138fd565b801561207457600a54612074906001600160a01b03168c836138fd565b612088826120828887612b84565b90612b84565b9750612098816120828786612b84565b96506001600160a01b038a1633146120dd576040805162461bcd60e51b815260206004820152600360248201526237bbb760e91b604482015290519081900360640190fd5b6120e78a8d613969565b604080518d8152602081018a905280820189905290516001600160a01b03808e1692908d16917febff2602b3f468259e1e99f613fed6691f3a6526effe6ef3e768ba7ae7a36c4f9181900360600190a3505050505050600160078190555094509492505050565b6000610bc261215b6127d8565b84846128c8565b6ec097ce7bc90715b34b9f100000000081565b600b54600160301b90046001600160a01b031633146121c8576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b6010805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6000806000806121f7612439565b9250925050600080612207611cbe565b600954604080516370a0823160e01b81523060048201529051939650919450612295935085926120829289926001600160a01b0316916370a0823191602480820192602092909190829003018186803b15801561226357600080fd5b505afa158015612277573d6000803e3d6000fd5b505050506040513d602081101561228d57600080fd5b505190612b84565b600a54604080516370a0823160e01b815230600482015290519298506122ef9284926120829288926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561226357600080fd5b9450505050509091565b600b54600160301b90046001600160a01b0316331461234c576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600f805473ffffffffffffffffffffffffffffffffffffffff19169055565b600b54600160301b90046001600160a01b031633146123be576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600a805460ff808416600160a01b90810260ff60a01b199093169290921792839055604080519290930416815290517f91f2ade82ab0e77bb6823899e6daddc07e3da0e3ad998577e7c09c2f38943c439181900360200190a150565b600a54600160a81b900460020b81565b600a546001600160a01b031681565b60008060008060008061246a600a60189054906101000a900460020b600a601b9054906101000a900460020b61321c565b600a549295509093509150611d0a90600160c01b8104600290810b91600160d81b9004900b85613853565b6008546001600160a01b031633146124ac57600080fd5b601054600160a81b900460ff1615156001146124c757600080fd5b601080547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff169055831561250c5760095461250c906001600160a01b031633866138fd565b821561252957600a54612529906001600160a01b031633856138fd565b50505050565b83421115612584576040805162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015290519081900360640190fd5b6001600160a01b03871660009081526006602052604081207f0000000000000000000000000000000000000000000000000000000000000000908990899089906125cd90613218565b8960405160200180878152602001866001600160a01b03168152602001856001600160a01b031681526020018481526020018381526020018281526020019650505050505050604051602081830303815290604052805190602001209050600061263682613a65565b9050600061264682878787613ab1565b9050896001600160a01b0316816001600160a01b0316146126ae576040805162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015290519081900360640190fd5b6001600160a01b038a1660009081526006602052604090206126cf90613c26565b6126da8a8a8a6127dc565b50505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600a54600160a01b900460ff1681565b600b54600160301b90046001600160a01b03163314612774576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b6001600160a01b03811661278757600080fd5b600b80546001600160a01b03909216600160301b027fffffffffffff0000000000000000000000000000000000000000ffffffffffff909216919091179055565b600a54600160c01b900460020b81565b3390565b6001600160a01b0383166128215760405162461bcd60e51b81526004018080602001828103825260248152602001806147146024913960400191505060405180910390fd5b6001600160a01b0382166128665760405162461bcd60e51b81526004018080602001828103825260228152602001806145d36022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661290d5760405162461bcd60e51b81526004018080602001828103825260258152602001806146ef6025913960400191505060405180910390fd5b6001600160a01b0382166129525760405162461bcd60e51b815260040180806020018281038252602381526020018061458e6023913960400191505060405180910390fd5b61295d838383613964565b61299a816040518060600160405280602681526020016145f5602691396001600160a01b0386166000908152602081905260409020549190612a23565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546129c99082612b84565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115612ab25760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612a77578181015183820152602001612a5f565b50505050905090810190601f168015612aa45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60007f0000000000000000000000000000000000000000000000000000000000000000612ae5613c2f565b1415612b1257507f0000000000000000000000000000000000000000000000000000000000000000610bab565b612b7d7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000613c33565b9050610bab565b600082820183811015610c81576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600a546000908190612c0590600160c01b8104600290810b91600160d81b9004900b612ea1565b600b54909250612c2390600281810b9163010000009004900b612ea1565b90509091565b600080600860009054906101000a90046001600160a01b03166001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b158015612c7a57600080fd5b505afa158015612c8e573d6000803e3d6000fd5b505050506040513d60e0811015612ca457600080fd5b50519050612cc581612cb588613c95565b612cbe88613c95565b8787613fd4565b9695505050505050565b6001600160801b03841615610fee576001601060156101000a81548160ff021916908315150217905550600080600860009054906101000a90046001600160a01b03166001600160a01b0316633c8a7d8d308a8a8a8a60405160200180826001600160a01b031681526020019150506040516020818303038152906040526040518663ffffffff1660e01b815260040180866001600160a01b031681526020018560020b81526020018460020b8152602001836001600160801b0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612dc9578181015183820152602001612db1565b50505050905090810190601f168015612df65780820380516001836020036101000a031916815260200191505b5096505050505050506040805180830381600087803b158015612e1857600080fd5b505af1158015612e2c573d6000803e3d6000fd5b505050506040513d6040811015612e4257600080fd5b5080516020909101519092509050838210801590612e605750828110155b612e97576040805162461bcd60e51b815260206004820152600360248201526250534360e81b604482015290519081900360640190fd5b5050505050505050565b6000612ead838361321c565b50909150506001600160801b03811615610bc6576008546040805163a34123a760e01b8152600286810b600483015285900b602482015260006044820181905282516001600160a01b039094169363a34123a7936064808501949193918390030190829087803b158015612f2057600080fd5b505af1158015612f34573d6000803e3d6000fd5b505050506040513d6040811015612f4a57600080fd5b5050600854604080516309e3d67b60e31b8152306004820152600286810b602483015285900b60448201526001600160801b03606482018190526084820152815160009384936001600160a01b0390911692634f1eb3d89260a4808301939282900301818787803b158015612fbe57600080fd5b505af1158015612fd2573d6000803e3d6000fd5b505050506040513d6040811015612fe857600080fd5b508051602091820151600a546040805160ff600160a01b9093049290921682526001600160801b039384169482018590529290911681830181905291519294509092507f4606b8a47eb284e8e80929101ece6ab5fe8d4f8735acc56bd0c92ca872f2cfe7919081900360600190a1600a54600090613071908490600160a01b900460ff1661364d565b1180156130f25750600954604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156130c457600080fd5b505afa1580156130d8573d6000803e3d6000fd5b505050506040513d60208110156130ee57600080fd5b5051115b1561313357601054600a54613133916001600160a01b031690613120908590600160a01b900460ff1661364d565b6009546001600160a01b031691906138fd565b600a5460009061314e908390600160a01b900460ff1661364d565b1180156131cf5750600a54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156131a157600080fd5b505afa1580156131b5573d6000803e3d6000fd5b505050506040513d60208110156131cb57600080fd5b5051115b1561321057601054600a54613210916001600160a01b0316906131fd908490600160a01b900460ff1661364d565b600a546001600160a01b031691906138fd565b505092915050565b5490565b604080513060601b602080830191909152600285810b60e890811b60348501529085900b901b60378301528251808303601a018152603a83018085528151919092012060085463514ea4bf60e01b909252603e830181905292516000938493849391926001600160a01b039092169163514ea4bf91605e8082019260a092909190829003018186803b1580156132b157600080fd5b505afa1580156132c5573d6000803e3d6000fd5b505050506040513d60a08110156132db57600080fd5b5080516060820151608090920151909891975095509350505050565b6000806001600160801b03871615613539576008546040805163a34123a760e01b815260028c810b60048301528b900b60248201526001600160801b038a166044820152815160009384936001600160a01b039091169263a34123a7926064808301939282900301818787803b15801561337057600080fd5b505af1158015613384573d6000803e3d6000fd5b505050506040513d604081101561339a57600080fd5b50805160209091015190925090508582108015906133b85750848110155b6133ef576040805162461bcd60e51b815260206004820152600360248201526250534360e81b604482015290519081900360640190fd5b600087613404576133ff8361408c565b61340d565b6001600160801b035b90506000886134245761341f8361408c565b61342d565b6001600160801b035b90506000826001600160801b0316118061345057506000816001600160801b0316115b1561353457600860009054906101000a90046001600160a01b03166001600160a01b0316634f1eb3d88b8f8f86866040518663ffffffff1660e01b815260040180866001600160a01b031681526020018560020b81526020018460020b8152602001836001600160801b03168152602001826001600160801b03168152602001955050505050506040805180830381600087803b1580156134f057600080fd5b505af1158015613504573d6000803e3d6000fd5b505050506040513d604081101561351a57600080fd5b5080516020909101516001600160801b0391821697501694505b505050505b97509795505050505050565b60008261355457506000610bc6565b8282028284828161356157fe5b0414610c815760405162461bcd60e51b81526004018080602001828103825260218152602001806146856021913960400191505060405180910390fd5b60008080600019858709868602925082811090839003039050806135d457600084116135c957600080fd5b508290049050610c81565b8084116135e057600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b60008082116136a3576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816136ac57fe5b049392505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166323b872dd60e01b1790526125299085906140a3565b6001600160a01b03821661377e576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61378a60008383613964565b6002546137979082612b84565b6002556001600160a01b0382166000908152602081905260409020546137bd9082612b84565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600080613820858561321c565b5050905061384a613845613832610bfa565b6119386001600160801b03851687613545565b61408c565b95945050505050565b6000806000600860009054906101000a90046001600160a01b03166001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156138a657600080fd5b505afa1580156138ba573d6000803e3d6000fd5b505050506040513d60e08110156138d057600080fd5b505190506138f0816138e188613c95565b6138ea88613c95565b87614154565b9250925050935093915050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b1790526139649084906140a3565b505050565b6001600160a01b0382166139ae5760405162461bcd60e51b81526004018080602001828103825260218152602001806146ce6021913960400191505060405180910390fd5b6139ba82600083613964565b6139f7816040518060600160405280602281526020016145b1602291396001600160a01b0385166000908152602081905260409020549190612a23565b6001600160a01b038316600090815260208190526040902055600254613a1d90826141f0565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000613a6f612aba565b82604051602001808061190160f01b81525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050919050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115613b125760405162461bcd60e51b815260040180806020018281038252602281526020018061461b6022913960400191505060405180910390fd5b8360ff16601b1480613b2757508360ff16601c145b613b625760405162461bcd60e51b81526004018080602001828103825260228152602001806146636022913960400191505060405180910390fd5b600060018686868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015613bbe573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661384a576040805162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015290519081900360640190fd5b80546001019055565b4690565b6000838383613c40613c2f565b3060405160200180868152602001858152602001848152602001838152602001826001600160a01b03168152602001955050505050506040516020818303038152906040528051906020012090509392505050565b60008060008360020b12613cac578260020b613cb4565b8260020b6000035b9050620d89e8811115613cf2576040805162461bcd60e51b81526020600482015260016024820152601560fa1b604482015290519081900360640190fd5b600060018216613d1357700100000000000000000000000000000000613d25565b6ffffcb933bd6fad37aa2d162d1a5940015b70ffffffffffffffffffffffffffffffffff1690506002821615613d59576ffff97272373d413259a46990580e213a0260801c5b6004821615613d78576ffff2e50f5f656932ef12357cf3c7fdcc0260801c5b6008821615613d97576fffe5caca7e10e4e61c3624eaa0941cd00260801c5b6010821615613db6576fffcb9843d60f6159c9db58835c9266440260801c5b6020821615613dd5576fff973b41fa98c081472e6896dfb254c00260801c5b6040821615613df4576fff2ea16466c96a3843ec78b326b528610260801c5b6080821615613e13576ffe5dee046a99a2a811c461f1969c30530260801c5b610100821615613e33576ffcbe86c7900a88aedcffc83b479aa3a40260801c5b610200821615613e53576ff987a7253ac413176f2b074cf7815e540260801c5b610400821615613e73576ff3392b0822b70005940c7a398e4b70f30260801c5b610800821615613e93576fe7159475a2c29b7443b29c7fa6e889d90260801c5b611000821615613eb3576fd097f3bdfd2022b8845ad8f792aa58250260801c5b612000821615613ed3576fa9f746462d870fdf8a65dc1f90e061e50260801c5b614000821615613ef3576f70d869a156d2a1b890bb3df62baf32f70260801c5b618000821615613f13576f31be135f97d08fd981231505542fcfa60260801c5b62010000821615613f34576f09aa508b5b7a84e1c677de54f3e99bc90260801c5b62020000821615613f54576e5d6af8dedb81196699c329225ee6040260801c5b62040000821615613f73576d2216e584f5fa1ea926041bedfe980260801c5b62080000821615613f90576b048a170391f7dc42444e8fa20260801c5b60008460020b1315613fab578060001981613fa757fe5b0490505b640100000000810615613fbf576001613fc2565b60005b60ff16602082901c0192505050919050565b6000836001600160a01b0316856001600160a01b03161115613ff4579293925b846001600160a01b0316866001600160a01b03161161401f5761401885858561424d565b905061384a565b836001600160a01b0316866001600160a01b0316101561408157600061404687868661424d565b905060006140558789866142b0565b9050806001600160801b0316826001600160801b0316106140765780614078565b815b9250505061384a565b612cc58585846142b0565b60006001600160801b0382111561409f57fe5b5090565b60006140f8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166142f59092919063ffffffff16565b8051909150156139645780806020019051602081101561411757600080fd5b50516139645760405162461bcd60e51b815260040180806020018281038252602a815260200180614738602a913960400191505060405180910390fd5b600080836001600160a01b0316856001600160a01b03161115614175579293925b846001600160a01b0316866001600160a01b0316116141a057614199858585614304565b91506141e7565b836001600160a01b0316866001600160a01b031610156141d9576141c5868585614304565b91506141d285878561436d565b90506141e7565b6141e485858561436d565b90505b94509492505050565b600082821115614247576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000826001600160a01b0316846001600160a01b0316111561426d579192915b6000614290856001600160a01b0316856001600160a01b0316600160601b61359e565b905061384a6142ab84838888036001600160a01b031661359e565b6143b0565b6000826001600160a01b0316846001600160a01b031611156142d0579192915b6142ed6142ab83600160601b8787036001600160a01b031661359e565b949350505050565b60606142ed84846000856143c6565b6000826001600160a01b0316846001600160a01b03161115614324579192915b836001600160a01b031661435d606060ff16846001600160801b0316901b8686036001600160a01b0316866001600160a01b031661359e565b8161436457fe5b04949350505050565b6000826001600160a01b0316846001600160a01b0316111561438d579192915b6142ed826001600160801b03168585036001600160a01b0316600160601b61359e565b806001600160801b038116811461102657600080fd5b6060824710156144075760405162461bcd60e51b815260040180806020018281038252602681526020018061463d6026913960400191505060405180910390fd5b61441085614521565b614461576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b6020831061449f5780518252601f199092019160209182019101614480565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614501576040519150601f19603f3d011682016040523d82523d6000602084013e614506565b606091505b5091509150614516828286614527565b979650505050505050565b3b151590565b60608315614536575081610c81565b8251156145465782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315612a77578181015183820152602001612a5f56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545434453413a20696e76616c6964207369676e6174757265202773272076616c7565416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c45434453413a20696e76616c6964207369676e6174757265202776272076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa164736f6c6343000706000a000000000000000000000000b1bc4b830fcba2184b92e15b9133c4116051803800000000000000000000000071e7d05be74ff748c45402c06a941c822d756dc5000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000a7877532d55534443653100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a7877532d55534443653100000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106103155760003560e01c806386a29081116101a7578063c4a7761e116100ee578063d348799711610097578063ddca3f4311610071578063ddca3f4314610a68578063f2fde38b14610a70578063fa08274314610a9657610315565b8063d34879971461096d578063d505accf146109e9578063dd62ed3e14610a3a57610315565b8063d0c93a7c116100c8578063d0c93a7c14610955578063d21220a71461095d578063d2eabcfc1461096557610315565b8063c4a7761e14610925578063c5241e291461092d578063cb122a091461093557610315565b8063a049de6b11610150578063a9059cbb1161012a578063a9059cbb146108e9578063aaf5eb6814610915578063b1a3d5331461091d57610315565b8063a049de6b14610822578063a457c2d714610852578063a85598721461087e57610315565b80638e3c92e4116101815780638e3c92e414610723578063952356561461079457806395d89b411461081a57610315565b806386a290811461070b578063888a9134146107135780638da5cb5b1461071b57610315565b8063395093511161026b578063648cab85116102145780637ecebe00116101ee5780637ecebe0014610612578063854cff2f1461063857806385919c5d1461065e57610315565b8063648cab85146105dc5780636d90a39c146105e457806370a08231146105ec57610315565b8063513ea88411610245578063513ea884146104e457806351e87af71461056a57806363e968361461057257610315565b806339509351146104a857806346904840146104d45780634d461fbb146104dc57610315565b806316f0115b116102cd5780632ab4d052116102a75780632ab4d0521461047a578063313ce567146104825780633644e515146104a057610315565b806316f0115b1461042257806318160ddd1461042a57806323b872dd1461044457610315565b8063095ea7b3116102fe578063095ea7b3146103b65780630dfe1681146103f65780630f35bcac1461041a57610315565b8063065e53601461031a57806306fdde0314610339575b600080fd5b610322610a9e565b6040805160029290920b8252519081900360200190f35b610341610b17565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561037b578181015183820152602001610363565b50505050905090810190601f1680156103a85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103e2600480360360408110156103cc57600080fd5b506001600160a01b038135169060200135610bae565b604080519115158252519081900360200190f35b6103fe610bcc565b604080516001600160a01b039092168252519081900360200190f35b610322610bdb565b6103fe610beb565b610432610bfa565b60408051918252519081900360200190f35b6103e26004803603606081101561045a57600080fd5b506001600160a01b03813581169160208101359091169060400135610c00565b610432610c88565b61048a610c8e565b6040805160ff9092168252519081900360200190f35b610432610c97565b6103e2600480360360408110156104be57600080fd5b506001600160a01b038135169060200135610ca6565b6103fe610cf4565b610432610d03565b610536600480360360808110156104fa57600080fd5b8101908080608001906004806020026040519081016040528092919082600460200280828437600092019190915250919450610d099350505050565b604080516001600160801b039586168152938516602085015291841683830152909216606082015290519081900360800190f35b610322610f60565b6105da600480360360c081101561058857600080fd5b6040805180820182528335600290810b946020810135820b9484820135946060830135949183019360c0840192916080850191908390839080828437600092019190915250919450610f699350505050565b005b610432610ff6565b6103e2610ffc565b6104326004803603602081101561060257600080fd5b50356001600160a01b031661100c565b6104326004803603602081101561062857600080fd5b50356001600160a01b031661102b565b6105da6004803603602081101561064e57600080fd5b50356001600160a01b031661104c565b6105da60048036036101a081101561067557600080fd5b60408051608081810183528435600290810b956020810135820b9594810135820b94606082013590920b936001600160a01b03848301351693928201926101208301919060a0840190600490839083908082843760009201919091525050604080516080818101909252929594938181019392509060049083908390808284376000920191909152509194506110ce9350505050565b6103fe6116f3565b610322611702565b6103fe611712565b610432600480360361010081101561073a57600080fd5b60408051608081810183528435946020810135946001600160a01b03948201358516946060830135169390820192610100830191908084019060049083908390808284376000920191909152509194506117289350505050565b610801600480360360a08110156107aa57600080fd5b6040805180820182528335600290810b946020810135820b946001600160801b0385830135169490820193919260a0840192916060850191908390839080828437600092019190915250919450611bc59350505050565b6040805192835260208301919091528051918290030190f35b610341611c5d565b61082a611cbe565b604080516001600160801b039094168452602084019290925282820152519081900360600190f35b6103e26004803603604081101561086857600080fd5b506001600160a01b038135169060200135611d44565b610801600480360360e081101561089457600080fd5b60408051608081810183528435946001600160a01b036020820135811695948201351693810192909160e08301919060608401906004908390839080828437600092019190915250919450611dac9350505050565b6103e2600480360360408110156108ff57600080fd5b506001600160a01b03813516906020013561214e565b610432612162565b6105da612175565b6108016121e9565b6105da6122f9565b6105da6004803603602081101561094b57600080fd5b503560ff1661236b565b61032261241a565b6103fe61242a565b61082a612439565b6105da6004803603606081101561098357600080fd5b8135916020810135918101906060810160408201356401000000008111156109aa57600080fd5b8201836020820111156109bc57600080fd5b803590602001918460018302840111640100000000831117156109de57600080fd5b509092509050612495565b6105da600480360360e08110156109ff57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c0013561252f565b61043260048036036040811015610a5057600080fd5b506001600160a01b03813581169160200135166126e6565b61048a612711565b6105da60048036036020811015610a8657600080fd5b50356001600160a01b0316612721565b6103226127c8565b60085460408051633850c7bd60e01b815290516000926001600160a01b031691633850c7bd9160048083019260e0929190829003018186803b158015610ae357600080fd5b505afa158015610af7573d6000803e3d6000fd5b505050506040513d60e0811015610b0d57600080fd5b5060200151919050565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ba35780601f10610b7857610100808354040283529160200191610ba3565b820191906000526020600020905b815481529060010190602001808311610b8657829003601f168201915b505050505090505b90565b6000610bc2610bbb6127d8565b84846127dc565b5060015b92915050565b6009546001600160a01b031681565b600b546301000000900460020b81565b6008546001600160a01b031681565b60025490565b6000610c0d8484846128c8565b610c7d84610c196127d8565b610c78856040518060600160405280602881526020016146a6602891396001600160a01b038a16600090815260016020526040812090610c576127d8565b6001600160a01b031681526020810191909152604001600020549190612a23565b6127dc565b5060015b9392505050565b600e5481565b60055460ff1690565b6000610ca1612aba565b905090565b6000610bc2610cb36127d8565b84610c788560016000610cc46127d8565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612b84565b6010546001600160a01b031681565b600d5481565b600080600080600b60069054906101000a90046001600160a01b03166001600160a01b0316336001600160a01b031614610d77576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b610d7f612bde565b5050600a54600954604080516370a0823160e01b81523060048201529051600093610e9593600160c01b8204600290810b94600160d81b909304900b926001600160a01b03909116916370a08231916024808301926020929190829003018186803b158015610ded57600080fd5b505afa158015610e01573d6000803e3d6000fd5b505050506040513d6020811015610e1757600080fd5b5051600a54604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015610e6457600080fd5b505afa158015610e78573d6000803e3d6000fd5b505050506040513d6020811015610e8e57600080fd5b5051612c29565b600a548751919250610eca91600160c01b8204600290810b92600160d81b9004900b90849030908b60015b6020020151612ccf565b600b54600954604080516370a0823160e01b81523060048201529051610f2d93600281810b946301000000909204900b926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015610ded57600080fd5b600b546040880151919250610f5891600282810b9263010000009004900b90849030908b6003610ec0565b509193509193565b600b5460020b81565b600b54600160301b90046001600160a01b03163314610fbc576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b610fc68585612ea1565b506000610fd586868686612c29565b9050610fee868683308660006020020151876001610ec0565b505050505050565b600c5481565b601054600160a01b900460ff1681565b6001600160a01b0381166000908152602081905260409020545b919050565b6001600160a01b0381166000908152600660205260408120610bc690613218565b600b54600160301b90046001600160a01b0316331461109f576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600f805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60026007541415611126576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600755600b54600160301b90046001600160a01b0316331461117e576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b8560020b8760020b1280156111b05750600a54600160a81b9004600290810b810b9088900b816111aa57fe5b0760020b155b80156111d95750600a54600160a81b9004600290810b810b9087900b816111d357fe5b0760020b155b6111e257600080fd5b8360020b8560020b1280156112145750600a54600160a81b9004600290810b810b9086900b8161120e57fe5b0760020b155b801561123d5750600a54600160a81b9004600290810b810b9085900b8161123757fe5b0760020b155b61124657600080fd5b8560020b8460020b14158061126157508660020b8560020b14155b61126a57600080fd5b6001600160a01b03831661127d57600080fd5b6010805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385161790556112ad612bde565b5050600a54600090819081906112d890600160c01b8104600290810b91600160d81b9004900b61321c565b600b549295506001600160801b0391821694501691506000908190819061130d90600281810b9163010000009004900b61321c565b600a549295506001600160801b03918216945016915061135790600160c01b8104600290810b91600160d81b9004900b883060018c600060200201518d60015b60200201516132f7565b5050600b5461138790600281810b9163010000009004810b90869030906001908d905b60200201518d600361134d565b50507fbc4c20ad04f161d631d9ce94d27659391196415aa3c42f6a71c62e905ece782d6113b2610a9e565b600954604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156113fd57600080fd5b505afa158015611411573d6000803e3d6000fd5b505050506040513d602081101561142757600080fd5b5051600a54604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561147457600080fd5b505afa158015611488573d6000803e3d6000fd5b505050506040513d602081101561149e57600080fd5b50516114aa868a612b84565b6114b4868a612b84565b6114bc610bfa565b6040805160029790970b87526020870195909552858501939093526060850191909152608084015260a0830152519081900360c00190a18c600a60186101000a81548162ffffff021916908360020b62ffffff1602179055508b600a601b6101000a81548162ffffff021916908360020b62ffffff1602179055506115bc600a60189054906101000a900460020b600a601b9054906101000a900460020b600960009054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015610ded57600080fd5b600a5489519197506115eb91600160c01b8204600290810b92600160d81b9004900b90899030908d6001610ec0565b8a600b60006101000a81548162ffffff021916908360020b62ffffff16021790555089600b60036101000a81548162ffffff021916908360020b62ffffff1602179055506116b4600b60009054906101000a900460020b600b60039054906101000a900460020b600960009054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015610ded57600080fd5b600b5460408a01519194506116df91600282810b9263010000009004900b90869030908d6003610ec0565b505060016007555050505050505050505050565b600f546001600160a01b031681565b600a54600160d81b900460020b81565b600b54600160301b90046001600160a01b031681565b600060026007541415611782576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600755851515806117955750600085115b61179e57600080fd5b600c5486111580156117b25750600d548511155b6117bb57600080fd5b6001600160a01b038416158015906117dc57506001600160a01b0384163014155b611812576040805162461bcd60e51b8152602060048201526002602482015261746f60f01b604482015290519081900360640190fd5b600f546001600160a01b03163314611857576040805162461bcd60e51b815260206004820152600360248201526257484560e81b604482015290519081900360640190fd5b61185f612bde565b505060085460408051633850c7bd60e01b815290516000926001600160a01b031691633850c7bd9160048083019260e0929190829003018186803b1580156118a657600080fd5b505afa1580156118ba573d6000803e3d6000fd5b505050506040513d60e08110156118d057600080fd5b5051905060006119066118ec6001600160a01b03841680613545565b6ec097ce7bc90715b34b9f1000000000600160c01b61359e565b90506000806119136121e9565b909250905061194561193e6ec097ce7bc90715b34b9f10000000006119388d87613545565b9061364d565b8a90612b84565b9450891561196557600954611965906001600160a01b031688308d6136b4565b881561198357600a54611983906001600160a01b031688308c6136b4565b600061198d610bfa565b90508015611b0f5760006119b46ec097ce7bc90715b34b9f10000000006119388688613545565b90506119cd6119c38285612b84565b6119388985613545565b601054909750600160a01b900460ff1615611b0d57600a54600954604080516370a0823160e01b81523060048201529051600093611a4e93600160c01b8204600290810b94600160d81b909304900b926001600160a01b03909116916370a08231916024808301926020929190829003018186803b158015610ded57600080fd5b600a548a51919250611a7d91600160c01b8204600290810b92600160d81b9004900b90849030908e6001610ec0565b600b54600954604080516370a0823160e01b81523060048201529051611ae093600281810b946301000000909204900b926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015610ded57600080fd5b600b5460408b0151919250611b0b91600282810b9263010000009004900b90849030908e6003610ec0565b505b505b611b198987613723565b60408051878152602081018d90528082018c905290516001600160a01b03808c1692908b16917f4e2ca0515ed1aef1395f66b5303bb5d6f1bf9d61a353fa53f73f8ac9973fa9f69181900360600190a3600e541580611b7a5750600e548111155b611bb1576040805162461bcd60e51b81526020600482015260036024820152620dac2f60eb1b604482015290519081900360640190fd5b505060016007555091979650505050505050565b600b546000908190600160301b90046001600160a01b03163314611c1d576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b611c278686612ea1565b50611c508686611c418989896001600160801b0316613813565b8651309060009089600161134d565b9097909650945050505050565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ba35780601f10610b7857610100808354040283529160200191610ba3565b600b5460009081908190819081908190611ce690600281810b9163010000009004900b61321c565b600b549295509093509150611d0a90600281810b9163010000009004900b85613853565b9095509350611d22856001600160801b038416612b84565b9450611d37846001600160801b038316612b84565b9350829550505050909192565b6000610bc2611d516127d8565b84610c78856040518060600160405280602581526020016147626025913960016000611d7b6127d8565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612a23565b60008060026007541415611e07576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260075585611e5e576040805162461bcd60e51b815260206004820152600660248201527f7368617265730000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b038516611e9e576040805162461bcd60e51b8152602060048201526002602482015261746f60f01b604482015290519081900360640190fd5b611ea6612bde565b5050600a546000908190611ee490600160c01b8104600290810b91600160d81b9004900b611ed582828d613813565b88518b906000908b600161134d565b600b5491935091506000908190611f1a90600281810b9163010000009004900b611f0f82828f613813565b8c60008c600261137a565b915091506000611fc3611f2b610bfa565b6119388d600960009054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611f9157600080fd5b505afa158015611fa5573d6000803e3d6000fd5b505050506040513d6020811015611fbb57600080fd5b505190613545565b90506000612038611fd2610bfa565b6119388e600a60009054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611f9157600080fd5b9050811561205757600954612057906001600160a01b03168c846138fd565b801561207457600a54612074906001600160a01b03168c836138fd565b612088826120828887612b84565b90612b84565b9750612098816120828786612b84565b96506001600160a01b038a1633146120dd576040805162461bcd60e51b815260206004820152600360248201526237bbb760e91b604482015290519081900360640190fd5b6120e78a8d613969565b604080518d8152602081018a905280820189905290516001600160a01b03808e1692908d16917febff2602b3f468259e1e99f613fed6691f3a6526effe6ef3e768ba7ae7a36c4f9181900360600190a3505050505050600160078190555094509492505050565b6000610bc261215b6127d8565b84846128c8565b6ec097ce7bc90715b34b9f100000000081565b600b54600160301b90046001600160a01b031633146121c8576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b6010805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6000806000806121f7612439565b9250925050600080612207611cbe565b600954604080516370a0823160e01b81523060048201529051939650919450612295935085926120829289926001600160a01b0316916370a0823191602480820192602092909190829003018186803b15801561226357600080fd5b505afa158015612277573d6000803e3d6000fd5b505050506040513d602081101561228d57600080fd5b505190612b84565b600a54604080516370a0823160e01b815230600482015290519298506122ef9284926120829288926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561226357600080fd5b9450505050509091565b600b54600160301b90046001600160a01b0316331461234c576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600f805473ffffffffffffffffffffffffffffffffffffffff19169055565b600b54600160301b90046001600160a01b031633146123be576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600a805460ff808416600160a01b90810260ff60a01b199093169290921792839055604080519290930416815290517f91f2ade82ab0e77bb6823899e6daddc07e3da0e3ad998577e7c09c2f38943c439181900360200190a150565b600a54600160a81b900460020b81565b600a546001600160a01b031681565b60008060008060008061246a600a60189054906101000a900460020b600a601b9054906101000a900460020b61321c565b600a549295509093509150611d0a90600160c01b8104600290810b91600160d81b9004900b85613853565b6008546001600160a01b031633146124ac57600080fd5b601054600160a81b900460ff1615156001146124c757600080fd5b601080547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff169055831561250c5760095461250c906001600160a01b031633866138fd565b821561252957600a54612529906001600160a01b031633856138fd565b50505050565b83421115612584576040805162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015290519081900360640190fd5b6001600160a01b03871660009081526006602052604081207f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9908990899089906125cd90613218565b8960405160200180878152602001866001600160a01b03168152602001856001600160a01b031681526020018481526020018381526020018281526020019650505050505050604051602081830303815290604052805190602001209050600061263682613a65565b9050600061264682878787613ab1565b9050896001600160a01b0316816001600160a01b0316146126ae576040805162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015290519081900360640190fd5b6001600160a01b038a1660009081526006602052604090206126cf90613c26565b6126da8a8a8a6127dc565b50505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600a54600160a01b900460ff1681565b600b54600160301b90046001600160a01b03163314612774576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b6001600160a01b03811661278757600080fd5b600b80546001600160a01b03909216600160301b027fffffffffffff0000000000000000000000000000000000000000ffffffffffff909216919091179055565b600a54600160c01b900460020b81565b3390565b6001600160a01b0383166128215760405162461bcd60e51b81526004018080602001828103825260248152602001806147146024913960400191505060405180910390fd5b6001600160a01b0382166128665760405162461bcd60e51b81526004018080602001828103825260228152602001806145d36022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661290d5760405162461bcd60e51b81526004018080602001828103825260258152602001806146ef6025913960400191505060405180910390fd5b6001600160a01b0382166129525760405162461bcd60e51b815260040180806020018281038252602381526020018061458e6023913960400191505060405180910390fd5b61295d838383613964565b61299a816040518060600160405280602681526020016145f5602691396001600160a01b0386166000908152602081905260409020549190612a23565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546129c99082612b84565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115612ab25760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612a77578181015183820152602001612a5f565b50505050905090810190601f168015612aa45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60007f0000000000000000000000000000000000000000000000000000000000000092612ae5613c2f565b1415612b1257507fb77af06ce1d942960896244941da45b43ad808f13f74de1f21c4916af98293bd610bab565b612b7d7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7fc19a1cda5bf36f165a62065f13d27124f8c8f82b7c201ead6f5b9c4de9245d717fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6613c33565b9050610bab565b600082820183811015610c81576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600a546000908190612c0590600160c01b8104600290810b91600160d81b9004900b612ea1565b600b54909250612c2390600281810b9163010000009004900b612ea1565b90509091565b600080600860009054906101000a90046001600160a01b03166001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b158015612c7a57600080fd5b505afa158015612c8e573d6000803e3d6000fd5b505050506040513d60e0811015612ca457600080fd5b50519050612cc581612cb588613c95565b612cbe88613c95565b8787613fd4565b9695505050505050565b6001600160801b03841615610fee576001601060156101000a81548160ff021916908315150217905550600080600860009054906101000a90046001600160a01b03166001600160a01b0316633c8a7d8d308a8a8a8a60405160200180826001600160a01b031681526020019150506040516020818303038152906040526040518663ffffffff1660e01b815260040180866001600160a01b031681526020018560020b81526020018460020b8152602001836001600160801b0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612dc9578181015183820152602001612db1565b50505050905090810190601f168015612df65780820380516001836020036101000a031916815260200191505b5096505050505050506040805180830381600087803b158015612e1857600080fd5b505af1158015612e2c573d6000803e3d6000fd5b505050506040513d6040811015612e4257600080fd5b5080516020909101519092509050838210801590612e605750828110155b612e97576040805162461bcd60e51b815260206004820152600360248201526250534360e81b604482015290519081900360640190fd5b5050505050505050565b6000612ead838361321c565b50909150506001600160801b03811615610bc6576008546040805163a34123a760e01b8152600286810b600483015285900b602482015260006044820181905282516001600160a01b039094169363a34123a7936064808501949193918390030190829087803b158015612f2057600080fd5b505af1158015612f34573d6000803e3d6000fd5b505050506040513d6040811015612f4a57600080fd5b5050600854604080516309e3d67b60e31b8152306004820152600286810b602483015285900b60448201526001600160801b03606482018190526084820152815160009384936001600160a01b0390911692634f1eb3d89260a4808301939282900301818787803b158015612fbe57600080fd5b505af1158015612fd2573d6000803e3d6000fd5b505050506040513d6040811015612fe857600080fd5b508051602091820151600a546040805160ff600160a01b9093049290921682526001600160801b039384169482018590529290911681830181905291519294509092507f4606b8a47eb284e8e80929101ece6ab5fe8d4f8735acc56bd0c92ca872f2cfe7919081900360600190a1600a54600090613071908490600160a01b900460ff1661364d565b1180156130f25750600954604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156130c457600080fd5b505afa1580156130d8573d6000803e3d6000fd5b505050506040513d60208110156130ee57600080fd5b5051115b1561313357601054600a54613133916001600160a01b031690613120908590600160a01b900460ff1661364d565b6009546001600160a01b031691906138fd565b600a5460009061314e908390600160a01b900460ff1661364d565b1180156131cf5750600a54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156131a157600080fd5b505afa1580156131b5573d6000803e3d6000fd5b505050506040513d60208110156131cb57600080fd5b5051115b1561321057601054600a54613210916001600160a01b0316906131fd908490600160a01b900460ff1661364d565b600a546001600160a01b031691906138fd565b505092915050565b5490565b604080513060601b602080830191909152600285810b60e890811b60348501529085900b901b60378301528251808303601a018152603a83018085528151919092012060085463514ea4bf60e01b909252603e830181905292516000938493849391926001600160a01b039092169163514ea4bf91605e8082019260a092909190829003018186803b1580156132b157600080fd5b505afa1580156132c5573d6000803e3d6000fd5b505050506040513d60a08110156132db57600080fd5b5080516060820151608090920151909891975095509350505050565b6000806001600160801b03871615613539576008546040805163a34123a760e01b815260028c810b60048301528b900b60248201526001600160801b038a166044820152815160009384936001600160a01b039091169263a34123a7926064808301939282900301818787803b15801561337057600080fd5b505af1158015613384573d6000803e3d6000fd5b505050506040513d604081101561339a57600080fd5b50805160209091015190925090508582108015906133b85750848110155b6133ef576040805162461bcd60e51b815260206004820152600360248201526250534360e81b604482015290519081900360640190fd5b600087613404576133ff8361408c565b61340d565b6001600160801b035b90506000886134245761341f8361408c565b61342d565b6001600160801b035b90506000826001600160801b0316118061345057506000816001600160801b0316115b1561353457600860009054906101000a90046001600160a01b03166001600160a01b0316634f1eb3d88b8f8f86866040518663ffffffff1660e01b815260040180866001600160a01b031681526020018560020b81526020018460020b8152602001836001600160801b03168152602001826001600160801b03168152602001955050505050506040805180830381600087803b1580156134f057600080fd5b505af1158015613504573d6000803e3d6000fd5b505050506040513d604081101561351a57600080fd5b5080516020909101516001600160801b0391821697501694505b505050505b97509795505050505050565b60008261355457506000610bc6565b8282028284828161356157fe5b0414610c815760405162461bcd60e51b81526004018080602001828103825260218152602001806146856021913960400191505060405180910390fd5b60008080600019858709868602925082811090839003039050806135d457600084116135c957600080fd5b508290049050610c81565b8084116135e057600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b60008082116136a3576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816136ac57fe5b049392505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166323b872dd60e01b1790526125299085906140a3565b6001600160a01b03821661377e576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61378a60008383613964565b6002546137979082612b84565b6002556001600160a01b0382166000908152602081905260409020546137bd9082612b84565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600080613820858561321c565b5050905061384a613845613832610bfa565b6119386001600160801b03851687613545565b61408c565b95945050505050565b6000806000600860009054906101000a90046001600160a01b03166001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156138a657600080fd5b505afa1580156138ba573d6000803e3d6000fd5b505050506040513d60e08110156138d057600080fd5b505190506138f0816138e188613c95565b6138ea88613c95565b87614154565b9250925050935093915050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b1790526139649084906140a3565b505050565b6001600160a01b0382166139ae5760405162461bcd60e51b81526004018080602001828103825260218152602001806146ce6021913960400191505060405180910390fd5b6139ba82600083613964565b6139f7816040518060600160405280602281526020016145b1602291396001600160a01b0385166000908152602081905260409020549190612a23565b6001600160a01b038316600090815260208190526040902055600254613a1d90826141f0565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000613a6f612aba565b82604051602001808061190160f01b81525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050919050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115613b125760405162461bcd60e51b815260040180806020018281038252602281526020018061461b6022913960400191505060405180910390fd5b8360ff16601b1480613b2757508360ff16601c145b613b625760405162461bcd60e51b81526004018080602001828103825260228152602001806146636022913960400191505060405180910390fd5b600060018686868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015613bbe573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661384a576040805162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015290519081900360640190fd5b80546001019055565b4690565b6000838383613c40613c2f565b3060405160200180868152602001858152602001848152602001838152602001826001600160a01b03168152602001955050505050506040516020818303038152906040528051906020012090509392505050565b60008060008360020b12613cac578260020b613cb4565b8260020b6000035b9050620d89e8811115613cf2576040805162461bcd60e51b81526020600482015260016024820152601560fa1b604482015290519081900360640190fd5b600060018216613d1357700100000000000000000000000000000000613d25565b6ffffcb933bd6fad37aa2d162d1a5940015b70ffffffffffffffffffffffffffffffffff1690506002821615613d59576ffff97272373d413259a46990580e213a0260801c5b6004821615613d78576ffff2e50f5f656932ef12357cf3c7fdcc0260801c5b6008821615613d97576fffe5caca7e10e4e61c3624eaa0941cd00260801c5b6010821615613db6576fffcb9843d60f6159c9db58835c9266440260801c5b6020821615613dd5576fff973b41fa98c081472e6896dfb254c00260801c5b6040821615613df4576fff2ea16466c96a3843ec78b326b528610260801c5b6080821615613e13576ffe5dee046a99a2a811c461f1969c30530260801c5b610100821615613e33576ffcbe86c7900a88aedcffc83b479aa3a40260801c5b610200821615613e53576ff987a7253ac413176f2b074cf7815e540260801c5b610400821615613e73576ff3392b0822b70005940c7a398e4b70f30260801c5b610800821615613e93576fe7159475a2c29b7443b29c7fa6e889d90260801c5b611000821615613eb3576fd097f3bdfd2022b8845ad8f792aa58250260801c5b612000821615613ed3576fa9f746462d870fdf8a65dc1f90e061e50260801c5b614000821615613ef3576f70d869a156d2a1b890bb3df62baf32f70260801c5b618000821615613f13576f31be135f97d08fd981231505542fcfa60260801c5b62010000821615613f34576f09aa508b5b7a84e1c677de54f3e99bc90260801c5b62020000821615613f54576e5d6af8dedb81196699c329225ee6040260801c5b62040000821615613f73576d2216e584f5fa1ea926041bedfe980260801c5b62080000821615613f90576b048a170391f7dc42444e8fa20260801c5b60008460020b1315613fab578060001981613fa757fe5b0490505b640100000000810615613fbf576001613fc2565b60005b60ff16602082901c0192505050919050565b6000836001600160a01b0316856001600160a01b03161115613ff4579293925b846001600160a01b0316866001600160a01b03161161401f5761401885858561424d565b905061384a565b836001600160a01b0316866001600160a01b0316101561408157600061404687868661424d565b905060006140558789866142b0565b9050806001600160801b0316826001600160801b0316106140765780614078565b815b9250505061384a565b612cc58585846142b0565b60006001600160801b0382111561409f57fe5b5090565b60006140f8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166142f59092919063ffffffff16565b8051909150156139645780806020019051602081101561411757600080fd5b50516139645760405162461bcd60e51b815260040180806020018281038252602a815260200180614738602a913960400191505060405180910390fd5b600080836001600160a01b0316856001600160a01b03161115614175579293925b846001600160a01b0316866001600160a01b0316116141a057614199858585614304565b91506141e7565b836001600160a01b0316866001600160a01b031610156141d9576141c5868585614304565b91506141d285878561436d565b90506141e7565b6141e485858561436d565b90505b94509492505050565b600082821115614247576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000826001600160a01b0316846001600160a01b0316111561426d579192915b6000614290856001600160a01b0316856001600160a01b0316600160601b61359e565b905061384a6142ab84838888036001600160a01b031661359e565b6143b0565b6000826001600160a01b0316846001600160a01b031611156142d0579192915b6142ed6142ab83600160601b8787036001600160a01b031661359e565b949350505050565b60606142ed84846000856143c6565b6000826001600160a01b0316846001600160a01b03161115614324579192915b836001600160a01b031661435d606060ff16846001600160801b0316901b8686036001600160a01b0316866001600160a01b031661359e565b8161436457fe5b04949350505050565b6000826001600160a01b0316846001600160a01b0316111561438d579192915b6142ed826001600160801b03168585036001600160a01b0316600160601b61359e565b806001600160801b038116811461102657600080fd5b6060824710156144075760405162461bcd60e51b815260040180806020018281038252602681526020018061463d6026913960400191505060405180910390fd5b61441085614521565b614461576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b6020831061449f5780518252601f199092019160209182019101614480565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614501576040519150601f19603f3d011682016040523d82523d6000602084013e614506565b606091505b5091509150614516828286614527565b979650505050505050565b3b151590565b60608315614536575081610c81565b8251156145465782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315612a77578181015183820152602001612a5f56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545434453413a20696e76616c6964207369676e6174757265202773272076616c7565416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c45434453413a20696e76616c6964207369676e6174757265202776272076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa164736f6c6343000706000a
Deployed Bytecode Sourcemap
992:22317:38:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22235:106;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;2168:89:8;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4244:166;;;;;;;;;;;;;;;;-1:-1:-1;4244:166:8;;-1:-1:-1;;;;;4244:166:8;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;1208:20:38;;;:::i;:::-;;;;-1:-1:-1;;;;;1208:20:38;;;;;;;;;;;;;;1402:23;;;:::i;1176:26::-;;;:::i;3235:106:8:-;;;:::i;:::-;;;;;;;;;;;;;;;;4877:317;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;4877:317:8;;;;;;;;;;;;;;;;;:::i;1522:29:38:-;;;:::i;3086:89:8:-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2557:113:3;;;:::i;5589:215:8:-;;;;;;;;;;;;;;;;-1:-1:-1;5589:215:8;;-1:-1:-1;;;;;5589:215:8;;;;;;:::i;1596:27:38:-;;;:::i;1490:26::-;;;:::i;12720:834::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12720:834:38;;-1:-1:-1;12720:834:38;;-1:-1:-1;;;;12720:834:38:i;:::-;;;;-1:-1:-1;;;;;12720:834:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12720:834:38;;;1373:23;;;:::i;13590:416::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13590:416:38;;-1:-1:-1;13590:416:38;;-1:-1:-1;;;;13590:416:38:i;:::-;;1458:26;;;:::i;1629:25::-;;;:::i;3399:125:8:-;;;;;;;;;;;;;;;;-1:-1:-1;3399:125:8;-1:-1:-1;;;;;3399:125:8;;:::i;2315:118:3:-;;;;;;;;;;;;;;;;-1:-1:-1;2315:118:3;-1:-1:-1;;;;;2315:118:3;;:::i;22550:105:38:-;;;;;;;;;;;;;;;;-1:-1:-1;22550:105:38;-1:-1:-1;;;;;22550:105:38;;:::i;10114:2290::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10114:2290:38;;;;;;;;;;;-1:-1:-1;10114:2290:38;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;10114:2290:38;;;;;;;;;;;;;;;;;;;-1:-1:-1;10114:2290:38;;;;;;;;;;;;;;;;;;-1:-1:-1;10114:2290:38;;-1:-1:-1;10114:2290:38;;-1:-1:-1;;;;10114:2290:38:i;1557:33::-;;;:::i;1345:22::-;;;:::i;1432:20::-;;;:::i;3611:2108::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3611:2108:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3611:2108:38;;-1:-1:-1;3611:2108:38;;-1:-1:-1;;;;3611:2108:38:i;7172:498::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7172:498:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7172:498:38;;-1:-1:-1;7172:498:38;;-1:-1:-1;;;;7172:498:38:i;:::-;;;;;;;;;;;;;;;;;;;;;;;2370:93:8;;;:::i;20001:571:38:-;;;:::i;:::-;;;;-1:-1:-1;;;;;20001:571:38;;;;;;;;;;;;;;;;;;;;;;;;;6291:266:8;;;;;;;;;;;;;;;;-1:-1:-1;6291:266:8;;-1:-1:-1;;;;;6291:266:8;;;;;;:::i;8116:1549:38:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8116:1549:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8116:1549:38;;-1:-1:-1;8116:1549:38;;-1:-1:-1;;;;8116:1549:38:i;3727:172:8:-;;;;;;;;;;;;;;;;-1:-1:-1;3727:172:8;;-1:-1:-1;;;;;3727:172:8;;;;;;:::i;1720:40:38:-;;;:::i;22971:97::-;;;:::i;18466:360::-;;;:::i;22696:96::-;;;:::i;22823:104::-;;;;;;;;;;;;;;;;-1:-1:-1;22823:104:38;;;;:::i;1286:24::-;;;:::i;1234:20::-;;;:::i;19129:566::-;;;:::i;17895:387::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17895:387:38;;-1:-1:-1;17895:387:38;-1:-1:-1;17895:387:38;:::i;1460:794:3:-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;1460:794:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1460:794:3;;;;;;;;:::i;3957:149:8:-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;3957:149:8;;;;;;;;;;:::i;1260:20:38:-;;;:::i;23074:138::-;;;;;;;;;;;;;;;;-1:-1:-1;23074:138:38;-1:-1:-1;;;;;23074:138:38;;:::i;1317:22::-;;;:::i;22235:106::-;22322:4;;:12;;;-1:-1:-1;;;22322:12:38;;;;22279:10;;-1:-1:-1;;;;;22322:4:38;;-1:-1:-1;;22322:12:38;;;;;-1:-1:-1;;22322:12:38;;;;;;;:4;:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22322:12:38;;;;22235:106;-1:-1:-1;22235:106:38:o;2168:89:8:-;2245:5;2238:12;;;;;;;;;;;;;-1:-1:-1;;2238:12:8;;;;;;;;;;;;;;;;;;;;;;;;;;2213:13;;2238:12;;2245:5;;2238:12;;;2245:5;2238:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2168:89;;:::o;4244:166::-;4327:4;4343:39;4352:12;:10;:12::i;:::-;4366:7;4375:6;4343:8;:39::i;:::-;-1:-1:-1;4399:4:8;4244:166;;;;;:::o;1208:20:38:-;;;-1:-1:-1;;;;;1208:20:38;;:::o;1402:23::-;;;;;;;;;:::o;1176:26::-;;;-1:-1:-1;;;;;1176:26:38;;:::o;3235:106:8:-;3322:12;;3235:106;:::o;4877:317::-;4983:4;4999:36;5009:6;5017:9;5028:6;4999:9;:36::i;:::-;5045:121;5054:6;5062:12;:10;:12::i;:::-;5076:89;5114:6;5076:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5076:19:8;;;;;;-1:-1:-1;5076:19:8;;;;;;5096:12;:10;:12::i;:::-;-1:-1:-1;;;;;5076:33:8;;;;;;;;;;;;-1:-1:-1;5076:33:8;;;;:37;:89::i;:::-;5045:8;:121::i;:::-;-1:-1:-1;5183:4:8;4877:317;;;;;;:::o;1522:29:38:-;;;;:::o;3086:89:8:-;3159:9;;;;3086:89;:::o;2557:113:3:-;2617:7;2643:20;:18;:20::i;:::-;2636:27;;2557:113;:::o;5589:215:8:-;5677:4;5693:83;5702:12;:10;:12::i;:::-;5716:7;5725:50;5764:10;5725:11;:25;5737:12;:10;:12::i;:::-;-1:-1:-1;;;;;5725:25:8;;;;;;;;;;;;;;;;;-1:-1:-1;5725:25:8;;;:34;;;;;;;;;;;:38;:50::i;1596:27:38:-;;;-1:-1:-1;;;;;1596:27:38;;:::o;1490:26::-;;;;:::o;12720:834::-;23269:5;;12800:22;;;;;;;;-1:-1:-1;;;23269:5:38;;-1:-1:-1;;;;;23269:5:38;23255:10;:19;23247:42;;;;;-1:-1:-1;;;23247:42:38;;;;;;;;;;;;-1:-1:-1;;;23247:42:38;;;;;;;;;;;;;;;12977:10:::1;:8;:10::i;:::-;-1:-1:-1::0;;13050:9:38::1;::::0;13093:6:::1;::::0;:31:::1;::::0;;-1:-1:-1;;;13093:31:38;;13118:4:::1;13093:31;::::0;::::1;::::0;;;-1:-1:-1;;13018:159:38::1;::::0;-1:-1:-1;;;13050:9:38;::::1;;::::0;;::::1;::::0;-1:-1:-1;;;13071:9:38;;::::1;::::0;::::1;::::0;-1:-1:-1;;;;;13093:6:38;;::::1;::::0;-1:-1:-1;;13093:31:38;;;;;::::1;::::0;;;;;;;;:6;:31;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;13093:31:38;13136:6:::1;::::0;:31:::1;::::0;;-1:-1:-1;;;13136:31:38;;13161:4:::1;13136:31;::::0;::::1;::::0;;;-1:-1:-1;;;;;13136:6:38;;::::1;::::0;-1:-1:-1;;13136:31:38;;;;;13093::::1;::::0;13136;;;;;;;;:6;:31;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;13136:31:38;13018:20:::1;:159::i;:::-;13202:9;::::0;13250:8;;12998:179;;-1:-1:-1;13187:82:38::1;::::0;-1:-1:-1;;;13202:9:38;::::1;;::::0;;::::1;::::0;-1:-1:-1;;;13213:9:38;::::1;::::0;::::1;::::0;12998:179;;13243:4:::1;::::0;13250:8;-1:-1:-1;13260:8:38::1;;;;;13187:14;:82::i;:::-;13324:10;::::0;13369:6:::1;::::0;:31:::1;::::0;;-1:-1:-1;;;13369:31:38;;13394:4:::1;13369:31;::::0;::::1;::::0;;;13292:161:::1;::::0;13324:10:::1;::::0;;::::1;::::0;13346;;;::::1;::::0;::::1;::::0;-1:-1:-1;;;;;13369:6:38;;::::1;::::0;-1:-1:-1;;13369:31:38;;;;;::::1;::::0;;;;;;;;;:6;:31;::::1;;::::0;::::1;;;;::::0;::::1;13292:161;13478:10;::::0;13528:8;;::::1;::::0;13280:173;;-1:-1:-1;13463:84:38::1;::::0;13478:10:::1;::::0;;::::1;::::0;13490;;::::1;::::0;::::1;::::0;13280:173;;13521:4:::1;::::0;13528:5;13544:1:::1;13538:8;::::0;13463:84:::1;23299:1;12720:834:::0;;;;;:::o;1373:23::-;;;;;;:::o;13590:416::-;23269:5;;-1:-1:-1;;;23269:5:38;;-1:-1:-1;;;;;23269:5:38;23255:10;:19;23247:42;;;;;-1:-1:-1;;;23247:42:38;;;;;;;;;;;;-1:-1:-1;;;23247:42:38;;;;;;;;;;;;;;;13786:31:::1;13796:9;13807;13786;:31::i;:::-;;13827:17;13847:60;13868:9;13879;13890:7;13899;13847:20;:60::i;:::-;13827:80:::0;-1:-1:-1;13917:82:38::1;13932:9:::0;13943;13827:80;13973:4:::1;13980:5:::0;13986:1:::1;13980:8;;;::::0;13990:5;13996:1:::1;13990:8;::::0;13917:82:::1;23299:1;13590:416:::0;;;;;:::o;1458:26::-;;;;:::o;1629:25::-;;;-1:-1:-1;;;1629:25:38;;;;;:::o;3399:125:8:-;-1:-1:-1;;;;;3499:18:8;;3473:7;3499:18;;;;;;;;;;;3399:125;;;;:::o;2315:118:3:-;-1:-1:-1;;;;;2402:14:3;;2376:7;2402:14;;;:7;:14;;;;;:24;;:22;:24::i;22550:105:38:-;23269:5;;-1:-1:-1;;;23269:5:38;;-1:-1:-1;;;;;23269:5:38;23255:10;:19;23247:42;;;;;-1:-1:-1;;;23247:42:38;;;;;;;;;;;;-1:-1:-1;;;23247:42:38;;;;;;;;;;;;;;;22619:18:::1;:29:::0;;-1:-1:-1;;22619:29:38::1;-1:-1:-1::0;;;;;22619:29:38;;;::::1;::::0;;;::::1;::::0;;22550:105::o;10114:2290::-;1688:1:14;2277:7;;:19;;2269:63;;;;;-1:-1:-1;;;2269:63:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;1688:1;2407:7;:18;23269:5:38::1;::::0;-1:-1:-1;;;23269:5:38;::::1;-1:-1:-1::0;;;;;23269:5:38::1;23255:10;:19;23247:42;;;::::0;;-1:-1:-1;;;23247:42:38;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;23247:42:38;;;;;;;;;;;;;::::1;;10420:10:::2;10407:23;;:10;:23;;;:72;;;;-1:-1:-1::0;10463:11:38::2;::::0;-1:-1:-1;;;10463:11:38;::::2;;::::0;;::::2;10450:24:::0;::::2;::::0;;;::::2;::::0;::::2;;;;;:29;;::::0;10407:72:::2;:121;;;;-1:-1:-1::0;10512:11:38::2;::::0;-1:-1:-1;;;10512:11:38;::::2;;::::0;;::::2;10499:24:::0;::::2;::::0;;;::::2;::::0;::::2;;;;;:29;;::::0;10407:121:::2;10386:152;;;::::0;::::2;;10583:11;10569:25;;:11;:25;;;:75;;;;-1:-1:-1::0;10628:11:38::2;::::0;-1:-1:-1;;;10628:11:38;::::2;;::::0;;::::2;10614:25:::0;::::2;::::0;;;::::2;::::0;::::2;;;;;:30;;::::0;10569:75:::2;:125;;;;-1:-1:-1::0;10678:11:38::2;::::0;-1:-1:-1;;;10678:11:38;::::2;;::::0;;::::2;10664:25:::0;::::2;::::0;;;::::2;::::0;::::2;;;;;:30;;::::0;10569:125:::2;10548:156;;;::::0;::::2;;10748:10;10733:25;;:11;:25;;;;:64;;;;10787:10;10772:25;;:11;:25;;;;10733:64;10714:93;;;::::0;::::2;;-1:-1:-1::0;;;;;10825:27:38;::::2;10817:36;;;::::0;::::2;;10863:12;:28:::0;;-1:-1:-1;;10863:28:38::2;-1:-1:-1::0;;;;;10863:28:38;::::2;;::::0;;10926:10:::2;:8;:10::i;:::-;-1:-1:-1::0;;11097:9:38::2;::::0;11022:21:::2;::::0;;;;;11087:31:::2;::::0;-1:-1:-1;;;11097:9:38;::::2;;::::0;;::::2;::::0;-1:-1:-1;;;11108:9:38;::::2;::::0;::::2;11087;:31::i;:::-;11203:10;::::0;11021:97;;-1:-1:-1;;;;;;11021:97:38;;::::2;::::0;-1:-1:-1;11021:97:38::2;::::0;-1:-1:-1;11129:22:38::2;::::0;;;;;11193:33:::2;::::0;11203:10:::2;::::0;;::::2;::::0;11215;;::::2;::::0;::::2;11193:9;:33::i;:::-;11252:9;::::0;11310;;11128:98;;-1:-1:-1;;;;;;11128:98:38;;::::2;::::0;-1:-1:-1;11128:98:38;::::2;::::0;-1:-1:-1;11237:94:38::2;::::0;-1:-1:-1;;;11252:9:38;::::2;;::::0;;::::2;::::0;-1:-1:-1;;;11263:9:38;::::2;::::0;::::2;::::0;11274:13;;11297:4:::2;::::0;-1:-1:-1;;11310:6:38;-1:-1:-1;11321:9:38::2;;;;;11237:14;:94::i;:::-;-1:-1:-1::0;;11356:10:38::2;::::0;11341:97:::2;::::0;11356:10:::2;::::0;;::::2;::::0;11368;;::::2;::::0;::::2;::::0;11380:14;;11404:4:::2;::::0;11356:10;;11417:6;;:9:::2;;;;::::0;11428:6;11435:1:::2;11428:9;::::0;11341:97:::2;;;11454:241;11477:13;:11;:13::i;:::-;11504:6;::::0;:31:::2;::::0;;-1:-1:-1;;;11504:31:38;;11529:4:::2;11504:31;::::0;::::2;::::0;;;-1:-1:-1;;;;;11504:6:38;;::::2;::::0;-1:-1:-1;;11504:31:38;;;;;::::2;::::0;;;;;;;;;:6;:31;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;11504:31:38;11549:6:::2;::::0;:31:::2;::::0;;-1:-1:-1;;;11549:31:38;;11574:4:::2;11549:31;::::0;::::2;::::0;;;-1:-1:-1;;;;;11549:6:38;;::::2;::::0;-1:-1:-1;;11549:31:38;;;;;11504::::2;::::0;11549;;;;;;;;:6;:31;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;11549:31:38;11594:25:::2;:9:::0;11608:10;11594:13:::2;:25::i;:::-;11633;:9:::0;11647:10;11633:13:::2;:25::i;:::-;11672:13;:11;:13::i;:::-;11454:241;::::0;;::::2;::::0;;;::::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::2;11718:10;11706:9;;:22;;;;;;;;;;;;;;;;;;;;11750:10;11738:9;;:22;;;;;;;;;;;;;;;;;;;;11786:159;11818:9;;;;;;;;;;;11839;;;;;;;;;;;11861:6;;;;;;;;;-1:-1:-1::0;;;;;11861:6:38::2;-1:-1:-1::0;;;;;11861:16:38::2;;11886:4;11861:31;;;;;;;;;;;;;-1:-1:-1::0;;;;;11861:31:38::2;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;11786:159;11970:9;::::0;12022:8;;11770:175;;-1:-1:-1;11955:86:38::2;::::0;-1:-1:-1;;;11970:9:38;::::2;;::::0;;::::2;::::0;-1:-1:-1;;;11981:9:38;::::2;::::0;::::2;::::0;11770:175;;12015:4:::2;::::0;12022:8;-1:-1:-1;12032:8:38::2;::::0;11955:86:::2;12065:11;12052:10;;:24;;;;;;;;;;;;;;;;;;;;12099:11;12086:10;;:24;;;;;;;;;;;;;;;;;;;;12137:161;12169:10;;;;;;;;;;;12191;;;;;;;;;;;12214:6;;;;;;;;;-1:-1:-1::0;;;;;12214:6:38::2;-1:-1:-1::0;;;;;12214:16:38::2;;12239:4;12214:31;;;;;;;;;;;;;-1:-1:-1::0;;;;;12214:31:38::2;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;12137:161;12323:10;::::0;12378:8;;::::2;::::0;12120:178;;-1:-1:-1;12308:89:38::2;::::0;12323:10:::2;::::0;;::::2;::::0;12335;;::::2;::::0;::::2;::::0;12120:178;;12371:4:::2;::::0;12378:5;12394:1:::2;12388:8;::::0;12308:89:::2;-1:-1:-1::0;;1645:1:14;2580:7;:22;-1:-1:-1;;;;;;;;;;;10114:2290:38:o;1557:33::-;;;-1:-1:-1;;;;;1557:33:38;;:::o;1345:22::-;;;-1:-1:-1;;;1345:22:38;;;;;:::o;1432:20::-;;;-1:-1:-1;;;1432:20:38;;-1:-1:-1;;;;;1432:20:38;;:::o;3611:2108::-;3792:14;1688:1:14;2277:7;;:19;;2269:63;;;;;-1:-1:-1;;;2269:63:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;1688:1;2407:7;:18;3826:12:38;;;;:28:::1;;;3853:1;3842:8;:12;3826:28;3818:37;;;::::0;::::1;;3885:11;;3873:8;:23;;:50;;;;;3912:11;;3900:8;:23;;3873:50;3865:59;;;::::0;::::1;;-1:-1:-1::0;;;;;3942:16:38;::::1;::::0;;::::1;::::0;:39:::1;;-1:-1:-1::0;3976:4:38::1;-1:-1:-1::0;;;;;3962:19:38;::::1;;;3942:39;3934:54;;;::::0;;-1:-1:-1;;;3934:54:38;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;3934:54:38;;;;;;;;;;;;;::::1;;4020:18;::::0;-1:-1:-1;;;;;4020:18:38::1;4006:10;:32;3998:48;;;::::0;;-1:-1:-1;;;3998:48:38;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;3998:48:38;;;;;;;;;;;;;::::1;;4081:10;:8;:10::i;:::-;-1:-1:-1::0;;4136:4:38::1;::::0;:12:::1;::::0;;-1:-1:-1;;;4136:12:38;;;;4103:17:::1;::::0;-1:-1:-1;;;;;4136:4:38::1;::::0;-1:-1:-1;;4136:12:38::1;::::0;;::::1;::::0;-1:-1:-1;;4136:12:38;;;;;;;:4;:12;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;4136:12:38;;-1:-1:-1;4158:13:38::1;4174:83;4190:42;-1:-1:-1::0;;;;;4213:18:38;::::1;::::0;4190:22:::1;:42::i;:::-;1756:4;-1:-1:-1::0;;;4174:15:38::1;:83::i;:::-;4158:99;;4269:13;4284::::0;4301:17:::1;:15;:17::i;:::-;4268:50:::0;;-1:-1:-1;4268:50:38;-1:-1:-1;4338:48:38::1;4351:34;1756:4;4351:19;:8:::0;4364:5;4351:12:::1;:19::i;:::-;:23:::0;::::1;:34::i;:::-;4338:8:::0;;:12:::1;:48::i;:::-;4329:57:::0;-1:-1:-1;4401:12:38;;4397:95:::1;;4427:6;::::0;:54:::1;::::0;-1:-1:-1;;;;;4427:6:38::1;4451:4:::0;4465::::1;4472:8:::0;4427:23:::1;:54::i;:::-;4505:12:::0;;4501:95:::1;;4531:6;::::0;:54:::1;::::0;-1:-1:-1;;;;;4531:6:38::1;4555:4:::0;4569::::1;4576:8:::0;4531:23:::1;:54::i;:::-;4606:13;4622;:11;:13::i;:::-;4606:29:::0;-1:-1:-1;4649:10:38;;4645:831:::1;;4673:27;4703:31;1756:4;4703:16;:5:::0;4713;4703:9:::1;:16::i;:31::-;4673:61:::0;-1:-1:-1;4755:53:38::1;4777:30;4673:61:::0;4801:5;4777:23:::1;:30::i;:::-;4755:17;:6:::0;4766:5;4755:10:::1;:17::i;:53::-;4824:13;::::0;4746:62;;-1:-1:-1;;;;4824:13:38;::::1;;;4820:646;;;4909:9;::::0;4960:6:::1;::::0;:31:::1;::::0;;-1:-1:-1;;;4960:31:38;;4985:4:::1;4960:31;::::0;::::1;::::0;;;-1:-1:-1;;4873:179:38::1;::::0;-1:-1:-1;;;4909:9:38;::::1;;::::0;;::::1;::::0;-1:-1:-1;;;4934:9:38;;::::1;::::0;::::1;::::0;-1:-1:-1;;;;;4960:6:38;;::::1;::::0;-1:-1:-1;;4960:31:38;;;;;::::1;::::0;;;;;;;;:6;:31;::::1;;::::0;::::1;;;;::::0;::::1;4873:179;5081:9;::::0;5129:8;;4853:199;;-1:-1:-1;5066:82:38::1;::::0;-1:-1:-1;;;5081:9:38;::::1;;::::0;;::::1;::::0;-1:-1:-1;;;5092:9:38;::::1;::::0;::::1;::::0;4853:199;;5122:4:::1;::::0;5129:8;-1:-1:-1;5139:8:38::1;::::0;5066:82:::1;5210:10;::::0;5263:6:::1;::::0;:31:::1;::::0;;-1:-1:-1;;;5263:31:38;;5288:4:::1;5263:31;::::0;::::1;::::0;;;5174:181:::1;::::0;5210:10:::1;::::0;;::::1;::::0;5236;;;::::1;::::0;::::1;::::0;-1:-1:-1;;;;;5263:6:38;;::::1;::::0;-1:-1:-1;;5263:31:38;;;;;::::1;::::0;;;;;;;;;:6;:31;::::1;;::::0;::::1;;;;::::0;::::1;5174:181;5384:10;::::0;5434:8;;::::1;::::0;5162:193;;-1:-1:-1;5369:84:38::1;::::0;5384:10:::1;::::0;;::::1;::::0;5396;;::::1;::::0;::::1;::::0;5162:193;;5427:4:::1;::::0;5434:5;5450:1:::1;5444:8;::::0;5369:84:::1;4820:646;;4645:831;;5485:17;5491:2;5495:6;5485:5;:17::i;:::-;5517:45;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;-1:-1:-1;;;;;5517:45:38;;::::1;::::0;;;::::1;::::0;::::1;::::0;;;;;;;::::1;5658:14;::::0;:19;;:46:::1;;;5690:14;;5681:5;:23;;5658:46;5650:62;;;::::0;;-1:-1:-1;;;5650:62:38;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;5650:62:38;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;1645:1:14;2580:7;:22;-1:-1:-1;3611:2108:38;;;-1:-1:-1;;;;;;;3611:2108:38:o;7172:498::-;23269:5;;7340:15;;;;-1:-1:-1;;;23269:5:38;;-1:-1:-1;;;;;23269:5:38;23255:10;:19;23247:42;;;;;-1:-1:-1;;;23247:42:38;;;;;;;;;;;;-1:-1:-1;;;23247:42:38;;;;;;;;;;;;;;;7384:31:::1;7394:9;7405;7384;:31::i;:::-;-1:-1:-1::0;7446:217:38::1;7472:9:::0;7493;7514:49:::1;7472:9:::0;7493;-1:-1:-1;;;;;7514:49:38;::::1;:19;:49::i;:::-;7617:12:::0;;7583:4:::1;::::0;7600:5:::1;::::0;7617:9;7651:1:::1;7641:12;::::0;7446:217:::1;7425:238:::0;;;;-1:-1:-1;7172:498:38;-1:-1:-1;;;;;7172:498:38:o;2370:93:8:-;2449:7;2442:14;;;;;;;;;;;;;-1:-1:-1;;2442:14:8;;;;;;;;;;;;;;;;;;;;;;;;;;2417:13;;2442:14;;2449:7;;2442:14;;;2449:7;2442:14;;;;;;;;;;;;;;;;;;;;;;;;20001:571:38;20282:10;;20087:17;;;;;;;;;;;;20259:67;;20282:10;;;;;20306;;;;;20259:9;:67::i;:::-;20378:10;;20187:139;;-1:-1:-1;20187:139:38;;-1:-1:-1;20187:139:38;-1:-1:-1;20357:63:38;;20378:10;;;;;20390;;;;;20187:139;20357:20;:63::i;:::-;20336:84;;-1:-1:-1;20336:84:38;-1:-1:-1;20440:33:38;20336:84;-1:-1:-1;;;;;20452:20:38;;20440:11;:33::i;:::-;20430:43;-1:-1:-1;20493:33:38;:7;-1:-1:-1;;;;;20505:20:38;;20493:11;:33::i;:::-;20483:43;;20548:17;20536:29;;20001:571;;;;;;:::o;6291:266:8:-;6384:4;6400:129;6409:12;:10;:12::i;:::-;6423:7;6432:96;6471:15;6432:96;;;;;;;;;;;;;;;;;:11;:25;6444:12;:10;:12::i;:::-;-1:-1:-1;;;;;6432:25:8;;;;;;;;;;;;;;;;;-1:-1:-1;6432:25:8;;;:34;;;;;;;;;;;;:38;:96::i;8116:1549:38:-;8275:15;8292;1688:1:14;2277:7;;:19;;2269:63;;;;;-1:-1:-1;;;2269:63:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;1688:1;2407:7;:18;8327:10:38;8319:29:::1;;;::::0;;-1:-1:-1;;;8319:29:38;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;8366:16:38;::::1;8358:31;;;::::0;;-1:-1:-1;;;8358:31:38;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;8358:31:38;;;;;;;;;;;;;::::1;;8424:10;:8;:10::i;:::-;-1:-1:-1::0;;8555:9:38::1;::::0;8495:13:::1;::::0;;;8527:222:::1;::::0;-1:-1:-1;;;8555:9:38;::::1;;::::0;;::::1;::::0;-1:-1:-1;;;8578:9:38;::::1;::::0;::::1;8601:49;8555:9:::0;8578;8643:6;8601:19:::1;:49::i;:::-;8699:13:::0;;8664:2;;8680:5:::1;::::0;8699:10;8737:1:::1;8726:13;::::0;8527:222:::1;8822:10;::::0;8494:255;;-1:-1:-1;8494:255:38;-1:-1:-1;8760:14:38::1;::::0;;;8794:226:::1;::::0;8822:10:::1;::::0;;::::1;::::0;8846;;::::1;::::0;::::1;8870:51;8822:10:::0;8846;8914:6;8870:19:::1;:51::i;:::-;8935:2:::0;8951:5:::1;8970:10:::0;8981:1:::1;8970:13;::::0;8794:226:::1;8759:261;;;;9086:21;9110:62;9158:13;:11;:13::i;:::-;9110:43;9146:6;9110;;;;;;;;;-1:-1:-1::0;;;;;9110:6:38::1;-1:-1:-1::0;;;;;9110:16:38::1;;9135:4;9110:31;;;;;;;;;;;;;-1:-1:-1::0;;;;;9110:31:38::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;9110:31:38;;:35:::1;:43::i;:62::-;9086:86;;9182:21;9206:62;9254:13;:11;:13::i;:::-;9206:43;9242:6;9206;;;;;;;;;-1:-1:-1::0;;;;;9206:6:38::1;-1:-1:-1::0;;;;;9206:16:38::1;;9231:4;9206:31;;;;;;;;;;;;;-1:-1:-1::0;;;;;9206:31:38::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;:62;9182:86:::0;-1:-1:-1;9282:17:38;;9278:61:::1;;9301:6;::::0;:38:::1;::::0;-1:-1:-1;;;;;9301:6:38::1;9321:2:::0;9325:13;9301:19:::1;:38::i;:::-;9353:17:::0;;9349:61:::1;;9372:6;::::0;:38:::1;::::0;-1:-1:-1;;;;;9372:6:38::1;9392:2:::0;9396:13;9372:19:::1;:38::i;:::-;9431:36;9453:13:::0;9431:17:::1;:5:::0;9441:6;9431:9:::1;:17::i;:::-;:21:::0;::::1;:36::i;:::-;9421:46:::0;-1:-1:-1;9487:36:38::1;9509:13:::0;9487:17:::1;:5:::0;9497:6;9487:9:::1;:17::i;:36::-;9477:46:::0;-1:-1:-1;9551:10:38::1;-1:-1:-1::0;;;;;9543:18:38;::::1;;9534:35;;;::::0;;-1:-1:-1;;;9534:35:38;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;9534:35:38;;;;;;;;;;;;;::::1;;9579:19;9585:4;9591:6;9579:5;:19::i;:::-;9614:44;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;-1:-1:-1;;;;;9614:44:38;;::::1;::::0;;;::::1;::::0;::::1;::::0;;;;;;;::::1;2436:1:14;;;;;;1645::::0;2580:7;:22;;;;8116:1549:38;;;;;;;:::o;3727:172:8:-;3813:4;3829:42;3839:12;:10;:12::i;:::-;3853:9;3864:6;3829:9;:42::i;1720:40:38:-;1756:4;1720:40;:::o;22971:97::-;23269:5;;-1:-1:-1;;;23269:5:38;;-1:-1:-1;;;;;23269:5:38;23255:10;:19;23247:42;;;;;-1:-1:-1;;;23247:42:38;;;;;;;;;;;;-1:-1:-1;;;23247:42:38;;;;;;;;;;;;;;;23048:13:::1;::::0;;-1:-1:-1;;;23048:13:38;;::::1;-1:-1:-1::0;23048:13:38::1;23047:14;23031:30;-1:-1:-1::0;;;;23031:30:38;;::::1;;::::0;;22971:97::o;18466:360::-;18514:14;18530;18559:13;18574;18591:17;:15;:17::i;:::-;18556:52;;;;;18621:14;18637;18655:18;:16;:18::i;:::-;18692:6;;:31;;;-1:-1:-1;;;18692:31:38;;18717:4;18692:31;;;;;;18618:55;;-1:-1:-1;18618:55:38;;-1:-1:-1;18692:54:38;;-1:-1:-1;18618:55:38;;18692:42;;18728:5;;-1:-1:-1;;;;;18692:6:38;;-1:-1:-1;;18692:31:38;;;;;;;;;;;;;;;:6;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18692:31:38;;:35;:42::i;:54::-;18765:6;;:31;;;-1:-1:-1;;;18765:31:38;;18790:4;18765:31;;;;;;18683:63;;-1:-1:-1;18765:54:38;;18812:6;;18765:42;;18801:5;;-1:-1:-1;;;;;18765:6:38;;;;-1:-1:-1;;18765:31:38;;;;;;;;;;;;;;;:6;:31;;;;;;;;;;:54;18756:63;;18466:360;;;;;;:::o;22696:96::-;23269:5;;-1:-1:-1;;;23269:5:38;;-1:-1:-1;;;;;23269:5:38;23255:10;:19;23247:42;;;;;-1:-1:-1;;;23247:42:38;;;;;;;;;;;;-1:-1:-1;;;23247:42:38;;;;;;;;;;;;;;;22754:18:::1;:31:::0;;-1:-1:-1;;22754:31:38::1;::::0;;22696:96::o;22823:104::-;23269:5;;-1:-1:-1;;;23269:5:38;;-1:-1:-1;;;;;23269:5:38;23255:10;:19;23247:42;;;;;-1:-1:-1;;;23247:42:38;;;;;;;;;;;;-1:-1:-1;;;23247:42:38;;;;;;;;;;;;;;;22882:3:::1;:12:::0;;-1:-1:-1;;;;22882:12:38::1;-1:-1:-1::0;;;22882:12:38::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;;22909:11:::1;::::0;;22916:3;;;::::1;::::0;;::::1;22909:11:::0;;;;::::1;::::0;::::1;::::0;;;;;;::::1;22823:104:::0;:::o;1286:24::-;;;-1:-1:-1;;;1286:24:38;;;;;:::o;1234:20::-;;;-1:-1:-1;;;;;1234:20:38;;:::o;19129:566::-;19214:17;19245:15;19274;19315:25;19342:19;19363;19386:65;19409:9;;;;;;;;;;;19432;;;;;;;;;;;19386;:65::i;:::-;19503:9;;19314:137;;-1:-1:-1;19314:137:38;;-1:-1:-1;19314:137:38;-1:-1:-1;19482:61:38;;-1:-1:-1;;;19503:9:38;;;;;;;-1:-1:-1;;;19514:9:38;;;;19314:137;19482:20;:61::i;17895:387::-;18069:4;;-1:-1:-1;;;;;18069:4:38;18047:10;:27;18039:36;;;;;;18093:10;;;-1:-1:-1;;;18093:10:38;;;;:18;;-1:-1:-1;18093:18:38;18085:27;;;;;;18122:10;:18;;;;;;18155:11;;18151:57;;18168:6;;:40;;-1:-1:-1;;;;;18168:6:38;18188:10;18200:7;18168:19;:40::i;:::-;18222:11;;18218:57;;18235:6;;:40;;-1:-1:-1;;;;;18235:6:38;18255:10;18267:7;18235:19;:40::i;:::-;17895:387;;;;:::o;1460:794:3:-;1687:8;1668:15;:27;;1660:69;;;;;-1:-1:-1;;;1660:69:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1917:14:3;;1740:18;1917:14;;;:7;:14;;;;;1812:16;;1917:14;;1869:7;;1894:5;;1917:24;;:22;:24::i;:::-;1784:197;;;;;;;;;;;-1:-1:-1;;;;;1784:197:3;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1784:197:3;;;;;;;;;;;;;;;;;;;;;;;;;;;1761:230;;;;;;-1:-1:-1;;2017:28:3;1761:230;2017:16;:28::i;:::-;2002:43;;2056:14;2073:28;2087:4;2093:1;2096;2099;2073:13;:28::i;:::-;2056:45;-1:-1:-1;;;;;;2119:15:3;;;;;;;2111:58;;;;;-1:-1:-1;;;2111:58:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2180:14:3;;;;;;:7;:14;;;;;:26;;:24;:26::i;:::-;2216:31;2225:5;2232:7;2241:5;2216:8;:31::i;:::-;1460:794;;;;;;;;;;:::o;3957:149:8:-;-1:-1:-1;;;;;4072:18:8;;;4046:7;4072:18;;;-1:-1:-1;4072:18:8;;;;;;;;:27;;;;;;;;;;;;;3957:149::o;1260:20:38:-;;;-1:-1:-1;;;1260:20:38;;;;;:::o;23074:138::-;23269:5;;-1:-1:-1;;;23269:5:38;;-1:-1:-1;;;;;23269:5:38;23255:10;:19;23247:42;;;;;-1:-1:-1;;;23247:42:38;;;;;;;;;;;;-1:-1:-1;;;23247:42:38;;;;;;;;;;;;;;;-1:-1:-1;;;;;23156:22:38;::::1;23148:31;;;::::0;::::1;;23189:5;:16:::0;;-1:-1:-1;;;;;23189:16:38;;;::::1;-1:-1:-1::0;;;23189:16:38::1;::::0;;;::::1;::::0;;;::::1;::::0;;23074:138::o;1317:22::-;;;-1:-1:-1;;;1317:22:38;;;;;:::o;598:104:12:-;685:10;598:104;:::o;9355:340:8:-;-1:-1:-1;;;;;9456:19:8;;9448:68;;;;-1:-1:-1;;;9448:68:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9534:21:8;;9526:68;;;;-1:-1:-1;;;9526:68:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9605:18:8;;;;;;;-1:-1:-1;9605:18:8;;;;;;;;:27;;;;;;;;;;;;;:36;;;9656:32;;;;;;;;;;;;;;;;;9355:340;;;:::o;7031:530::-;-1:-1:-1;;;;;7136:20:8;;7128:70;;;;-1:-1:-1;;;7128:70:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7216:23:8;;7208:71;;;;-1:-1:-1;;;7208:71:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7290:47;7311:6;7319:9;7330:6;7290:20;:47::i;:::-;7368:71;7390:6;7368:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7368:17:8;;:9;:17;;;;;;;;;;;;;:21;:71::i;:::-;-1:-1:-1;;;;;7348:17:8;;;:9;:17;;;;;;;;;;;:91;;;;7472:20;;;;;;;:32;;7497:6;7472:24;:32::i;:::-;-1:-1:-1;;;;;7449:20:8;;;:9;:20;;;;;;;;;;;;:55;;;;7519:35;;;;;;;7449:20;;7519:35;;;;;;;;;;;;;7031:530;;;:::o;5432:163:6:-;5518:7;5553:12;5545:6;;;;5537:29;;;;-1:-1:-1;;;5537:29:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5583:5:6;;;5432:163::o;2961:283:2:-;3022:7;3062:16;3045:13;:11;:13::i;:::-;:33;3041:197;;;-1:-1:-1;3101:24:2;3094:31;;3041:197;3163:64;3185:10;3197:12;3211:15;3163:21;:64::i;:::-;3156:71;;;;2690:175:6;2748:7;2779:5;;;2802:6;;;;2794:46;;;;;-1:-1:-1;;;2794:46:6;;;;;;;;;;;;;;;;;;;;;;;;;;;6568:205:38;6686:9;;6605:21;;;;6676:31;;-1:-1:-1;;;6686:9:38;;;;;;;-1:-1:-1;;;6697:9:38;;;;6676;:31::i;:::-;6742:10;;6660:47;;-1:-1:-1;6732:33:38;;6742:10;;;;;6754;;;;;6732:9;:33::i;:::-;6715:50;;6568:205;;:::o;21666:508::-;21881:4;;:12;;;-1:-1:-1;;;21881:12:38;;;;21825:7;;;;-1:-1:-1;;;;;21881:4:38;;;;:10;;:12;;;;;;;;;;;;;;;:4;:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21881:12:38;;-1:-1:-1;21922:245:38;21881:12;22009:38;22037:9;22009:27;:38::i;:::-;22065;22093:9;22065:27;:38::i;:::-;22121:7;22146;21922:39;:245::i;:::-;21903:264;21666:508;-1:-1:-1;;;;;;21666:508:38:o;14465:569::-;-1:-1:-1;;;;;14674:13:38;;;14670:358;;14716:4;14703:10;;:17;;;;;;;;;;;;;;;;;;14735:15;14752;14771:4;;;;;;;;;-1:-1:-1;;;;;14771:4:38;-1:-1:-1;;;;;14771:9:38;;14806:4;14829:9;14856;14883;14921:5;14910:17;;;;;;-1:-1:-1;;;;;14910:17:38;;;;;;;;;;;;;;;;;;;;14771:170;;;;;;;;;;;;;-1:-1:-1;;;;;14771:170:38;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14771:170:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14771:170:38;;;;;;;;;-1:-1:-1;14771:170:38;-1:-1:-1;14963:21:38;;;;;;:46;;;14999:10;14988:7;:21;;14963:46;14955:62;;;;;-1:-1:-1;;;14955:62:38;;;;;;;;;;;;-1:-1:-1;;;14955:62:38;;;;;;;;;;;;;;;14670:358;;14465:569;;;;;;:::o;5725:688::-;5795:17;5875:31;5885:9;5896;5875;:31::i;:::-;-1:-1:-1;5858:48:38;;-1:-1:-1;;;;;;;5917:13:38;;;5914:487;;5942:4;;:34;;;-1:-1:-1;;;5942:34:38;;;;;;;;;;;;;;;;;-1:-1:-1;5942:34:38;;;;;;;;-1:-1:-1;;;;;5942:4:38;;;;-1:-1:-1;;5942:34:38;;;;;;;;;;;;;;;:4;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;6019:4:38;;5942:34;6019:87;;-1:-1:-1;;;6019:87:38;;6040:4;6019:87;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6019:87:38;;;;;;;;;;;;-1:-1:-1;;;;;;;;;6019:4:38;;;;:12;;:87;;;;;5942:34;6019:87;;;;;-1:-1:-1;6019:4:38;:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6019:87:38;;;;;;;6130:3;;6019:87;6121:27;;-1:-1:-1;;;6130:3:38;;;;;6121:27;;-1:-1:-1;;;;;5986:120:38;;;6121:27;;;;;;5986:120;;;;6121:27;;;;;;;;5986:120;;-1:-1:-1;5986:120:38;;-1:-1:-1;6121:27:38;;;;;;;;;;;;;6172:3;;6179:1;;6162:14;;:5;;-1:-1:-1;;;6172:3:38;;;;6162:9;:14::i;:::-;:18;:57;;;;-1:-1:-1;6184:6:38;;:31;;;-1:-1:-1;;;6184:31:38;;6209:4;6184:31;;;;;;-1:-1:-1;;;;;;;6184:6:38;;-1:-1:-1;;6184:31:38;;;;;;;;;;;;;;:6;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6184:31:38;:35;6162:57;6158:112;;;6241:12;;6265:3;;6221:49;;-1:-1:-1;;;;;6241:12:38;;6255:14;;:5;;-1:-1:-1;;;6265:3:38;;;;6255:9;:14::i;:::-;6221:6;;-1:-1:-1;;;;;6221:6:38;;;:19;:49::i;:::-;6294:3;;6301:1;;6284:14;;:5;;-1:-1:-1;;;6294:3:38;;;;6284:9;:14::i;:::-;:18;:57;;;;-1:-1:-1;6306:6:38;;:31;;;-1:-1:-1;;;6306:31:38;;6331:4;6306:31;;;;;;-1:-1:-1;;;;;;;6306:6:38;;-1:-1:-1;;6306:31:38;;;;;;;;;;;;;;:6;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6306:31:38;:35;6284:57;6280:112;;;6363:12;;6387:3;;6343:49;;-1:-1:-1;;;;;6363:12:38;;6377:14;;:5;;-1:-1:-1;;;6387:3:38;;;;6377:9;:14::i;:::-;6343:6;;-1:-1:-1;;;;;6343:6:38;;;:19;:49::i;:::-;5914:487;;5725:688;;;;:::o;1106:112:13:-;1197:14;;1106:112::o;17438:395:38:-;17691:53;;;17716:4;17691:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17681:64;;;;;;;17799:4;;-1:-1:-1;;;17799:27:38;;;;;;;;;;;-1:-1:-1;;;;;;17681:64:38;;-1:-1:-1;;;;;17799:4:38;;;;-1:-1:-1;;17799:27:38;;;;;-1:-1:-1;;17799:27:38;;;;;;;;:4;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17799:27:38;;;;;;;;;;;;;;;-1:-1:-1;17799:27:38;-1:-1:-1;17438:395:38;-1:-1:-1;;;;17438:395:38:o;15663:863::-;15889:15;;-1:-1:-1;;;;;15937:13:38;;;15933:587;;16030:4;;:42;;;-1:-1:-1;;;16030:42:38;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16030:42:38;;;;;;;;-1:-1:-1;;;;;;;;;16030:4:38;;;;-1:-1:-1;;16030:42:38;;;;;;;;;;;-1:-1:-1;16030:4:38;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16030:42:38;;;;;;;;;-1:-1:-1;16030:42:38;-1:-1:-1;16094:19:38;;;;;;:42;;;16126:10;16117:5;:19;;16094:42;16086:58;;;;;-1:-1:-1;;;16086:58:38;;;;;;;;;;;;-1:-1:-1;;;16086:58:38;;;;;;;;;;;;;;;16194:16;16213:10;:52;;16246:19;16259:5;16246:12;:19::i;:::-;16213:52;;;-1:-1:-1;;;;;16213:52:38;16194:71;;16279:16;16298:10;:52;;16331:19;16344:5;16331:12;:19::i;:::-;16298:52;;;-1:-1:-1;;;;;16298:52:38;16279:71;-1:-1:-1;;;;;;16368:12:38;;;;;:28;;-1:-1:-1;;;;;;16384:12:38;;;;16368:28;16364:146;;;16437:4;;;;;;;;;-1:-1:-1;;;;;16437:4:38;-1:-1:-1;;;;;16437:12:38;;16450:2;16454:9;16465;16476:8;16486;16437:58;;;;;;;;;;;;;-1:-1:-1;;;;;16437:58:38;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16437:58:38;;;;;;-1:-1:-1;;;;;16437:58:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16437:58:38;;;;;;;-1:-1:-1;;;;;16416:79:38;;;;-1:-1:-1;16416:79:38;;-1:-1:-1;16364:146:38;15933:587;;;;;15663:863;;;;;;;;;;:::o;3538:215:6:-;3596:7;3619:6;3615:20;;-1:-1:-1;3634:1:6;3627:8;;3615:20;3657:5;;;3661:1;3657;:5;:1;3680:5;;;;;:10;3672:56;;;;-1:-1:-1;;;3672:56:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742:3776:28;854:14;;;-1:-1:-1;;1361:1:28;1358;1351:20;1393:9;;;;-1:-1:-1;1444:13:28;;;1428:14;;;;1424:34;;-1:-1:-1;1540:10:28;1536:179;;1588:1;1574:11;:15;1566:24;;;;;;-1:-1:-1;1641:23:28;;;;-1:-1:-1;1691:13:28;;1536:179;1842:5;1828:11;:19;1820:28;;;;;;2125:17;2201:11;2198:1;2195;2188:25;2553:12;2568;;;:26;;2688:22;;;;;3491:1;3472;:15;;3471:21;;3718:17;;;3714:21;;3707:28;3776:17;;;3772:21;;3765:28;3835:17;;;3831:21;;3824:28;3894:17;;;3890:21;;3883:28;3953:17;;;3949:21;;3942:28;4013:17;;;4009:21;;;4002:28;3060:12;;;;3056:23;;;3081:1;3052:31;2330:20;;;2319:32;;;3111:12;;;;2373:21;;;;2816:16;;;;3102:21;;;;4477:11;;;;;-1:-1:-1;;742:3776:28;;;;;:::o;4217:150:6:-;4275:7;4306:1;4302;:5;4294:44;;;;;-1:-1:-1;;;4294:44:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;4359:1;4355;:5;;;;;;;4217:150;-1:-1:-1;;;4217:150:6:o;885:203:10:-;1012:68;;;-1:-1:-1;;;;;1012:68:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1012:68:10;;;985:96;;1005:5;;985:19;:96::i;7832:370:8:-;-1:-1:-1;;;;;7915:21:8;;7907:65;;;;;-1:-1:-1;;;7907:65:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;7983:49;8012:1;8016:7;8025:6;7983:20;:49::i;:::-;8058:12;;:24;;8075:6;8058:16;:24::i;:::-;8043:12;:39;-1:-1:-1;;;;;8113:18:8;;:9;:18;;;;;;;;;;;:30;;8136:6;8113:22;:30::i;:::-;-1:-1:-1;;;;;8092:18:8;;:9;:18;;;;;;;;;;;:51;;;;8158:37;;;;;;;8092:18;;:9;;8158:37;;;;;;;;;;7832:370;;:::o;16810:293:38:-;16942:7;16962:16;16986:31;16996:9;17007;16986;:31::i;:::-;16961:56;;;;17034:62;17047:48;17081:13;:11;:13::i;:::-;17047:29;-1:-1:-1;;;;;17047:17:38;;17069:6;17047:21;:29::i;:48::-;17034:12;:62::i;:::-;17027:69;16810:293;-1:-1:-1;;;;;16810:293:38:o;20863:471::-;21064:4;;:12;;;-1:-1:-1;;;21064:12:38;;;;20999:7;;;;;;-1:-1:-1;;;;;21064:4:38;;;;:10;;:12;;;;;;;;;;;;;;;:4;:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21064:12:38;;-1:-1:-1;21105:222:38;21064:12;21192:38;21220:9;21192:27;:38::i;:::-;21248;21276:9;21248:27;:38::i;:::-;21304:9;21105:39;:222::i;:::-;21086:241;;;;;20863:471;;;;;;:::o;704:175:10:-;813:58;;;-1:-1:-1;;;;;813:58:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;813:58:10;;;786:86;;806:5;;786:19;:86::i;:::-;704:175;;;:::o;8522:410:8:-;-1:-1:-1;;;;;8605:21:8;;8597:67;;;;-1:-1:-1;;;8597:67:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8675:49;8696:7;8713:1;8717:6;8675:20;:49::i;:::-;8756:68;8779:6;8756:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8756:18:8;;:9;:18;;;;;;;;;;;;;:22;:68::i;:::-;-1:-1:-1;;;;;8735:18:8;;:9;:18;;;;;;;;;;:89;8849:12;;:24;;8866:6;8849:16;:24::i;:::-;8834:12;:39;8888:37;;;;;;;;8914:1;;-1:-1:-1;;;;;8888:37:8;;;;;;;;;;;;8522:410;;:::o;4202:183:2:-;4279:7;4344:20;:18;:20::i;:::-;4366:10;4315:62;;;;;;-1:-1:-1;;;4315:62:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4305:73;;;;;;4298:80;;4202:183;;;:::o;1960:1414:1:-;2045:7;2960:66;2946:80;;;2938:127;;;;-1:-1:-1;;;2938:127:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3083:1;:7;;3088:2;3083:7;:18;;;;3094:1;:7;;3099:2;3094:7;3083:18;3075:65;;;;-1:-1:-1;;;3075:65:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3235:14;3252:24;3262:4;3268:1;3271;3274;3252:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3252:24:1;;-1:-1:-1;;3252:24:1;;;-1:-1:-1;;;;;;;3294:20:1;;3286:57;;;;;-1:-1:-1;;;3286:57:1;;;;;;;;;;;;;;;;;;;;;;;;;;;1224:178:13;1376:19;;1394:1;1376:19;;;1224:178::o;4391:320:2:-;4686:9;;4661:44::o;3250:327::-;3352:7;3429:8;3455:4;3477:7;3502:13;:11;:13::i;:::-;3401:159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3541:4;3401:159;;;;;;;;;;;;;;;;;;;;;;;;3378:192;;;;;;3250:327;-1:-1:-1;;;;3250:327:2:o;1355:2580:30:-;1418:20;1450:15;1475:1;1468:4;:8;;;:57;;1519:4;1512:12;;1468:57;;;1495:4;1488:12;;1487:13;;1468:57;1450:75;-1:-1:-1;637:9:30;1543:28;;;1535:42;;;;;-1:-1:-1;;;1535:42:30;;;;;;;;;;;;-1:-1:-1;;;1535:42:30;;;;;;;;;;;;;;;1588:13;1614:3;1604:13;;:93;;1662:35;1604:93;;;1625:34;1604:93;1588:109;;;-1:-1:-1;1721:3:30;1711:13;;:18;1707:83;;1748:34;1740:42;1787:3;1739:51;1707:83;1814:3;1804:13;;:18;1800:83;;1841:34;1833:42;1880:3;1832:51;1800:83;1907:3;1897:13;;:18;1893:83;;1934:34;1926:42;1973:3;1925:51;1893:83;2000:4;1990:14;;:19;1986:84;;2028:34;2020:42;2067:3;2019:51;1986:84;2094:4;2084:14;;:19;2080:84;;2122:34;2114:42;2161:3;2113:51;2080:84;2188:4;2178:14;;:19;2174:84;;2216:34;2208:42;2255:3;2207:51;2174:84;2282:4;2272:14;;:19;2268:84;;2310:34;2302:42;2349:3;2301:51;2268:84;2376:5;2366:15;;:20;2362:85;;2405:34;2397:42;2444:3;2396:51;2362:85;2471:5;2461:15;;:20;2457:85;;2500:34;2492:42;2539:3;2491:51;2457:85;2566:5;2556:15;;:20;2552:85;;2595:34;2587:42;2634:3;2586:51;2552:85;2661:5;2651:15;;:20;2647:85;;2690:34;2682:42;2729:3;2681:51;2647:85;2756:6;2746:16;;:21;2742:86;;2786:34;2778:42;2825:3;2777:51;2742:86;2852:6;2842:16;;:21;2838:86;;2882:34;2874:42;2921:3;2873:51;2838:86;2948:6;2938:16;;:21;2934:86;;2978:34;2970:42;3017:3;2969:51;2934:86;3044:6;3034:16;;:21;3030:86;;3074:34;3066:42;3113:3;3065:51;3030:86;3140:7;3130:17;;:22;3126:86;;3171:33;3163:41;3209:3;3162:50;3126:86;3236:7;3226:17;;:22;3222:85;;3267:32;3259:40;3304:3;3258:49;3222:85;3331:7;3321:17;;:22;3317:83;;3362:30;3354:38;3397:3;3353:47;3317:83;3424:7;3414:17;;:22;3410:78;;3455:25;3447:33;3485:3;3446:42;3410:78;3510:1;3503:4;:8;;;3499:47;;;3541:5;-1:-1:-1;;3541:5:30;3521:25;;;;;3513:33;;3499:47;3905:7;3896:5;:17;:22;:30;;3925:1;3896:30;;;3921:1;3896:30;3879:48;;3889:2;3880:5;:11;;3879:48;3856:72;;1355:2580;;;;;:::o;2982:901:32:-;3185:17;-1:-1:-1;;;;;3218:29:32;;;;;;;3214:98;;;3283:13;;3298;3214:98;-1:-1:-1;;;;;3327:29:32;;;;;;;3323:554;;3384:61;3407:13;3422;3437:7;3384:22;:61::i;:::-;3372:73;;3323:554;;;-1:-1:-1;;;;;3466:28:32;;;;;;;3462:415;;;3510:18;3531:60;3554:12;3568:13;3583:7;3531:22;:60::i;:::-;3510:81;;3605:18;3626:60;3649:13;3664:12;3678:7;3626:22;:60::i;:::-;3605:81;-1:-1:-1;;;;;;3713:23:32;;;;;;;:49;;3752:10;3713:49;;;3739:10;3713:49;3701:61;;3462:415;;;;;3805:61;3828:13;3843;3858:7;3805:22;:61::i;22347:139:38:-;22403:7;-1:-1:-1;;;;;22429:22:38;;;22422:30;;;;-1:-1:-1;22477:1:38;22347:139::o;2967:751:10:-;3412:69;;;;;;;;;;;;;;;;;;3386:23;;3412:69;;-1:-1:-1;;;;;3412:27:10;;;3440:4;;3412:27;:69::i;:::-;3495:17;;3386:95;;-1:-1:-1;3495:21:10;3491:221;;3635:10;3624:30;;;;;;;;;;;;;;;-1:-1:-1;3624:30:10;3616:85;;;;-1:-1:-1;;;3616:85:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6013:799:32;6193:15;;-1:-1:-1;;;;;6241:29:32;;;;;;;6237:98;;;6306:13;;6321;6237:98;-1:-1:-1;;;;;6350:29:32;;;;;;;6346:460;;6405:63;6428:13;6443;6458:9;6405:22;:63::i;:::-;6395:73;;6346:460;;;-1:-1:-1;;;;;6489:28:32;;;;;;;6485:321;;;6543:62;6566:12;6580:13;6595:9;6543:22;:62::i;:::-;6533:72;;6629:62;6652:13;6667:12;6681:9;6629:22;:62::i;:::-;6619:72;;6485:321;;;6732:63;6755:13;6770;6785:9;6732:22;:63::i;:::-;6722:73;;6485:321;6013:799;;;;;;;:::o;3136:155:6:-;3194:7;3226:1;3221;:6;;3213:49;;;;;-1:-1:-1;;;3213:49:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3279:5:6;;;3136:155::o;1085:475:32:-;1233:17;-1:-1:-1;;;;;1266:29:32;;;;;;;1262:98;;;1331:13;;1346;1262:98;1370:20;1393:63;-1:-1:-1;;;;;1393:63:32;;;;;;-1:-1:-1;;;1393:15:32;:63::i;:::-;1370:86;-1:-1:-1;1473:80:32;1483:69;1499:7;1370:86;-1:-1:-1;;;;;1522:29:32;;;1483:69;:15;:69::i;:::-;1473:9;:80::i;1999:383::-;2147:17;-1:-1:-1;;;;;2180:29:32;;;;;;;2176:98;;;2245:13;;2260;2176:98;2291:84;2301:73;2317:7;-1:-1:-1;;;;;;;;2344:29:32;;;2301:73;:15;:73::i;2291:84::-;2284:91;1999:383;-1:-1:-1;;;;1999:383:32:o;3581:193:11:-;3684:12;3715:52;3737:6;3745:4;3751:1;3754:12;3715:21;:52::i;4241:498:32:-;4391:15;-1:-1:-1;;;;;4422:29:32;;;;;;;4418:98;;;4487:13;;4502;4418:98;-1:-1:-1;;;;;4546:186:32;;;;:170;;4579:45;309:2:27;4579:45:32;;;;;4642:29;;;4546:170;;;;;:15;:170::i;:::-;:186;;;;;;;4241:498;-1:-1:-1;;;;4241:498:32:o;5097:375::-;5247:15;-1:-1:-1;;;;;5278:29:32;;;;;;;5274:98;;;5343:13;;5358;5274:98;5390:75;-1:-1:-1;;;;;5390:75:32;;-1:-1:-1;;;;;5417:29:32;;;5390:75;-1:-1:-1;;;5390:15:32;:75::i;507:110::-;608:1;-1:-1:-1;;;;;588:21:32;;;;580:30;;;;;4608:523:11;4735:12;4792:5;4767:21;:30;;4759:81;;;;-1:-1:-1;;;4759:81:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4858:18;4869:6;4858:10;:18::i;:::-;4850:60;;;;;-1:-1:-1;;;4850:60:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;4981:12;4995:23;5022:6;-1:-1:-1;;;;;5022:11:11;5042:5;5050:4;5022:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5022:33:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4980:75;;;;5072:52;5090:7;5099:10;5111:12;5072:17;:52::i;:::-;5065:59;4608:523;-1:-1:-1;;;;;;;4608:523:11:o;726:413::-;1086:20;1124:8;;;726:413::o;7091:725::-;7206:12;7234:7;7230:580;;;-1:-1:-1;7264:10:11;7257:17;;7230:580;7375:17;;:21;7371:429;;7633:10;7627:17;7693:15;7680:10;7676:2;7672:19;7665:44;7582:145;7765:20;;-1:-1:-1;;;7765:20:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7765:20:11;;;;;;;;;;;;;;;
Swarm Source
none
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.